upleb.uk

Public git repos — served from a NIP-34 GRASP relay at git.upleb.uk

summaryrefslogtreecommitdiff
path: root/56.md
diff options
context:
space:
mode:
authorfiatjaf_ <fiatjaf@gmail.com>2023-06-20 15:42:47 -0300
committerGitHub <noreply@github.com>2023-06-20 15:42:47 -0300
commit3893fa7f7ce695a2d1cf75c556a2b4b2d0086619 (patch)
tree50aad1568afca993e0942dee3e4bb0ebadd37f44 /56.md
parent9ffd3638d77f278c7946ffe8f53bf0fb3d2933b2 (diff)
parentece0dda45be1053f673216edb9d6cd8a92035757 (diff)
Merge pull request #532 from staab/nip-32-labeling
Diffstat (limited to '56.md')
-rw-r--r--56.md15
1 files changed, 10 insertions, 5 deletions
diff --git a/56.md b/56.md
index 55ee1a2..42174fb 100644
--- a/56.md
+++ b/56.md
@@ -32,6 +32,9 @@ being reported, which consists of the following report types:
32 32
33Some report tags only make sense for profile reports, such as `impersonation` 33Some report tags only make sense for profile reports, such as `impersonation`
34 34
35`l` and `L` tags MAY be also be used as defined in [NIP-32](32.md) to support
36further qualification and querying.
37
35Example events 38Example events
36-------------- 39--------------
37 40
@@ -39,7 +42,9 @@ Example events
39{ 42{
40 "kind": 1984, 43 "kind": 1984,
41 "tags": [ 44 "tags": [
42 [ "p", <pubkey>, "nudity"] 45 ["p", <pubkey>, "nudity"]
46 ["L", "social.nos.ontology"],
47 ["l", "NS-nud", "social.nos.ontology"],
43 ], 48 ],
44 "content": "", 49 "content": "",
45 ... 50 ...
@@ -48,8 +53,8 @@ Example events
48{ 53{
49 "kind": 1984, 54 "kind": 1984,
50 "tags": [ 55 "tags": [
51 [ "e", <eventId>, "illegal"], 56 ["e", <eventId>, "illegal"],
52 [ "p", <pubkey>] 57 ["p", <pubkey>]
53 ], 58 ],
54 "content": "He's insulting the king!", 59 "content": "He's insulting the king!",
55 ... 60 ...
@@ -58,8 +63,8 @@ Example events
58{ 63{
59 "kind": 1984, 64 "kind": 1984,
60 "tags": [ 65 "tags": [
61 [ "p", <impersonator pubkey>, "impersonation"], 66 ["p", <impersonator pubkey>, "impersonation"],
62 [ "p", <victim pubkey>] 67 ["p", <victim pubkey>]
63 ], 68 ],
64 "content": "Profile is imitating #[1]", 69 "content": "Profile is imitating #[1]",
65 ... 70 ...