forked from valueflows/valueflo.ws
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontext.jsonld
More file actions
67 lines (67 loc) · 1.9 KB
/
context.jsonld
File metadata and controls
67 lines (67 loc) · 1.9 KB
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
{
"@context": [
{
"foaf": "http://xmlns.com/foaf/0.1/",
"vcard": "http://www.w3.org/2006/vcard/ns#",
"org": "http://www.w3.org/ns/org#",
"schema": "http://schema.org/",
"as": "http://www.w3.org/ns/activitystreams#",
"rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#",
"rdfs": "http://www.w3.org/2000/01/rdf-schema#",
"owl": "http://www.w3.org/2002/07/owl#",
"rdfs:label": { "@container": "@language" },
"rdfs:comment": { "@container": "@language" },
},
{
"openvocab":
{
"@id": "openvocab.is#",
"@type": "owl:Ontology",
"owl:versionInfo": "0.1"
"rdfs:label": "Collaborative Economic Networks"@en;
},
"Agent": "foaf:Agent",
"Person": "foaf:Person",
"Organization": "foaf:Organization",
"Group": "foaf:Group",
"Network":
{
"@id": "openvocab.is#Network",
"@type": "rdfs:Class",
"rdfs:comment": {
"@language": "en",
"@value": "A Network is a ...."
},
"rdfs:subClassOf": {
"@id": "foaf:Group"
}
},
"name": "foaf:name",
"image": "foaf:image",
"Relationship": "as:Relationship",
"relationship": "as:relationship",
"subject": "as:subject",
"object": "as:object",
"context":
{
"@id": "openvocab.is#context",
"@type": "rdf:Property",
"rdfs:comment": {
"@language": "en",
"@value": "Identifies an Organization or Group (or subclasses of these) which is the context for this relationship...."
},
"rdfs:range": [ "foaf:Group", "foaf:Organization" ],
"rdfs:domain": "relationship"
},
"startDate":
{
"@id": "openvocab.is#startDate",
"@type": "http://www.w3.org/2001/XMLSchema#dateTime"
},
"endDate":
{
"@id": "openvocab.is#endDate",
"@type": "http://www.w3.org/2001/XMLSchema#dateTime"
}
]
}