-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvocab.json
81 lines (81 loc) · 1.89 KB
/
vocab.json
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
75
76
77
78
79
80
81
{
"@context": {
"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#",
"agent": "https://w3id.org/agent#",
"description": {
"@id": "dc:description",
"@type": "xsd:string"
},
"title": {
"@id": "dc:title",
"@type": "xsd:string"
},
"comment": {
"@id": "rdfs:comment",
"@type": "xsd:string"
},
"label": {
"@id": "rdfs:label",
"@type": "xsd:string"
},
"term_status": {
"@id": "terms:term_status",
"@type": "xsd:string"
},
"type": {
"@id": "rdf:type",
"@type": "@id"
},
"domain": {
"@id": "rdfs:domain",
"@type": "@id"
},
"range": {
"@id": "rdfs:range",
"@type": "@id"
},
"isDefinedBy": {
"@id": "rdfs:isDefinedBy",
"@type": "@id"
},
"Property": "rdfs:Property",
"Class": "rdfs:Class"
},
"@graph": [
{
"@id": "agent:",
"@type": "owl:Ontology",
"description": "This vocabulary defines the concept of an Agent - an entity that has agency and can act independently.",
"title": "Agent vocabulary"
},
{
"@id": "agent:Agent",
"@type": "rdfs:Class",
"comment": "An entity that has agency - the capacity to act independently and make free choices.",
"label": "Agent",
"term_status": "stable"
},
{
"@id": "agent:agent",
"@type": [
"rdfs:Property"
],
"comment": "Links a Thing to an Agent that has agency over it.",
"domain": {
"@id": "owl:Thing"
},
"isDefinedBy": {
"@id": "agent:"
},
"label": "agent",
"range": {
"@id": "agent:Agent"
},
"term_status": "stable"
}
]
}