-
Notifications
You must be signed in to change notification settings - Fork 2
/
context.jsonld
74 lines (74 loc) · 1.74 KB
/
context.jsonld
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"@context": {
"@version": 1.1,
"dc": "http://purl.org/dc/elements/1.1/",
"rdfs": "http://www.w3.org/2000/01/rdf-schema#",
"owl": "http://www.w3.org/2002/07/owl#",
"xsd": "http://www.w3.org/2001/XMLSchema#",
"terms": "http://www.w3.org/2003/06/sw-vocab-status/ns#",
"nostr": "https://w3id.org/nostr#",
"Event": "nostr:Event",
"Relay": "nostr:Relay",
"Person": "nostr:Person",
"pubkey": {
"@id": "nostr:pubkey",
"@type": "xsd:string"
},
"created_at": {
"@id": "nostr:created_at",
"@type": "xsd:integer"
},
"kind": {
"@id": "nostr:kind",
"@type": "xsd:integer"
},
"content": {
"@id": "nostr:content",
"@type": "xsd:string"
},
"tags": {
"@id": "nostr:tags",
"@container": "@list"
},
"sig": {
"@id": "nostr:sig",
"@type": "xsd:string"
},
"name": {
"@id": "nostr:name",
"@type": "xsd:string"
},
"about": {
"@id": "nostr:about",
"@type": "xsd:string"
},
"picture": {
"@id": "nostr:picture",
"@type": "xsd:anyURI"
},
"display_name": {
"@id": "nostr:display_name",
"@type": "xsd:string"
},
"website": {
"@id": "nostr:website",
"@type": "xsd:anyURI"
},
"banner": {
"@id": "nostr:banner",
"@type": "xsd:anyURI"
},
"Ontology": "owl:Ontology",
"Class": "rdfs:Class",
"ObjectProperty": "owl:ObjectProperty",
"Property": "rdf:Property",
"comment": "rdfs:comment",
"domain": "rdfs:domain",
"isDefinedBy": "rdfs:isDefinedBy",
"label": "rdfs:label",
"range": "rdfs:range",
"term_status": "terms:term_status",
"title": "dc:title",
"description": "dc:description"
}
}