diff options
Diffstat (limited to '56.md')
| -rw-r--r-- | 56.md | 13 |
1 files changed, 9 insertions, 4 deletions
| @@ -26,6 +26,7 @@ A `report type` string MUST be included as the 3rd entry to the `e` or `p` tag | |||
| 26 | being reported, which consists of the following report types: | 26 | being reported, which consists of the following report types: |
| 27 | 27 | ||
| 28 | - `nudity` - depictions of nudity, porn, etc. | 28 | - `nudity` - depictions of nudity, porn, etc. |
| 29 | - `malware` - virus, trojan horse, worm, robot, spyware, adware, back door, ransomware, rootkit, kidnapper, etc. | ||
| 29 | - `profanity` - profanity, hateful speech, etc. | 30 | - `profanity` - profanity, hateful speech, etc. |
| 30 | - `illegal` - something which may be illegal in some jurisdiction | 31 | - `illegal` - something which may be illegal in some jurisdiction |
| 31 | - `spam` - spam | 32 | - `spam` - spam |
| @@ -40,7 +41,7 @@ further qualification and querying. | |||
| 40 | Example events | 41 | Example events |
| 41 | -------------- | 42 | -------------- |
| 42 | 43 | ||
| 43 | ```json | 44 | ```jsonc |
| 44 | { | 45 | { |
| 45 | "kind": 1984, | 46 | "kind": 1984, |
| 46 | "tags": [ | 47 | "tags": [ |
| @@ -49,9 +50,11 @@ Example events | |||
| 49 | ["l", "NS-nud", "social.nos.ontology"] | 50 | ["l", "NS-nud", "social.nos.ontology"] |
| 50 | ], | 51 | ], |
| 51 | "content": "", | 52 | "content": "", |
| 52 | ... | 53 | // other fields... |
| 53 | } | 54 | } |
| 55 | ``` | ||
| 54 | 56 | ||
| 57 | ```jsonc | ||
| 55 | { | 58 | { |
| 56 | "kind": 1984, | 59 | "kind": 1984, |
| 57 | "tags": [ | 60 | "tags": [ |
| @@ -59,16 +62,18 @@ Example events | |||
| 59 | ["p", <pubkey>] | 62 | ["p", <pubkey>] |
| 60 | ], | 63 | ], |
| 61 | "content": "He's insulting the king!", | 64 | "content": "He's insulting the king!", |
| 62 | ... | 65 | // other fields... |
| 63 | } | 66 | } |
| 67 | ``` | ||
| 64 | 68 | ||
| 69 | ```jsonc | ||
| 65 | { | 70 | { |
| 66 | "kind": 1984, | 71 | "kind": 1984, |
| 67 | "tags": [ | 72 | "tags": [ |
| 68 | ["p", <impersonator pubkey>, "impersonation"] | 73 | ["p", <impersonator pubkey>, "impersonation"] |
| 69 | ], | 74 | ], |
| 70 | "content": "Profile is impersonating nostr:<victim bech32 pubkey>", | 75 | "content": "Profile is impersonating nostr:<victim bech32 pubkey>", |
| 71 | ... | 76 | // other fields... |
| 72 | } | 77 | } |
| 73 | ``` | 78 | ``` |
| 74 | 79 | ||