Skip to content

Commit d45ad70

Browse files
committed
add JSONLD context to site
1 parent bc9ca6a commit d45ad70

1 file changed

Lines changed: 66 additions & 0 deletions

File tree

Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
{
2+
"@context": {
3+
"rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#",
4+
"rdfs": "http://www.w3.org/2000/01/rdf-schema#",
5+
"owl": "http://www.w3.org/2002/07/owl#",
6+
"dc": "http://purl.org/dc/elements/1.1/",
7+
"prov": "http://www.w3.org/ns/prov#",
8+
"sioc": "http://rdfs.org/sioc/ns#",
9+
"dgc": "https://discoursegraphs.com/schema/dg_core#",
10+
"dgb": "https://discoursegraphs.com/schema/dg_base#",
11+
"predicate": "rdf:predicate",
12+
"subClassOf": "rdfs:subClassOf",
13+
"label": "rdfs:label",
14+
"subClassOf": "rdfs:subClassOf",
15+
"inverseOf": "owl:inverseOf",
16+
"onProperty": "owl:onProperty",
17+
"sameAs": "owl:sameAs",
18+
"hasValue": "owl:hasValue",
19+
"title": "dc:title",
20+
"format": "dc:format",
21+
"description": "dc:description",
22+
"modified": {
23+
"@id": "dc:modified",
24+
"@type": "http://www.w3.org/2001/XMLSchema#dateTime"
25+
},
26+
"created": {
27+
"@id": "dc:date",
28+
"@type": "http://www.w3.org/2001/XMLSchema#dateTime"
29+
},
30+
"creator": "dc:creator",
31+
"Container": "sioc:Container",
32+
"content": "sioc:content",
33+
"container_of": "sioc:container_of",
34+
"has_container": { "@id": "sioc:has_container", "@type": "@id" },
35+
"RelationDef": "dgb:RelationDef",
36+
"RelationInstance": "dgb:RelationInstance",
37+
"RelationSchema": "dgb:RelationSchema",
38+
"NodeSchema": "dgb:NodeSchema",
39+
"source": { "@id": "dgb:source", "@type": "@id" },
40+
"destination": { "@id": "dgb:destination", "@type": "@id" },
41+
"textRefersToNode": "dgb:textRefersToNode",
42+
43+
"Question": "dgc:Question",
44+
"Claim": "dgc:Claim",
45+
"Evidence": "dgc:Evidence",
46+
"SourceDocument": "dgc:SourceDocument",
47+
"ClaimOrEvidence": "dgc:ClaimOrEvidence",
48+
"observationStatement": {
49+
"@id": "dgc:observationStatement",
50+
"@type": "@id"
51+
},
52+
"observationOriginActivity": {
53+
"@id": "dgc:observationOriginActivity",
54+
"@type": "@id"
55+
},
56+
"observationBase": { "@id": "dgc:observationBase", "@type": "@id" },
57+
"sourceDocument": { "@id": "dgc:sourceDocument", "@type": "@id" },
58+
"describesActivity": { "@id": "dgc:describesActivity", "@type": "@id" },
59+
"opposes": { "@id": "dgc:opposes", "@type": "@id" },
60+
"opposedBy": { "@id": "dgc:opposedBy", "@type": "@id" },
61+
"supports": { "@id": "dgc:supports", "@type": "@id" },
62+
"supportedBy": { "@id": "dgc:supportedBy", "@type": "@id" },
63+
"addresses": { "@id": "dgc:addresses", "@type": "@id" },
64+
"addressedBy": { "@id": "dgc:addressedBy", "@type": "@id" }
65+
}
66+
}

0 commit comments

Comments
 (0)