-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontext.jsonld
45 lines (45 loc) · 2.2 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
{
"@context": {
"@language": "en",
"xsd": "http://www.w3.org/2001/XMLSchema#",
"dcat": "http://www.w3.org/ns/dcat#",
"dct": "http://purl.org/dc/terms/",
"locn": "http://www.w3.org/ns/locn#",
"foaf": "http://xmlns.com/foaf/0.1/",
"schema": "http://schema.org/",
"label": "http://www.w3.org/2000/01/rdf-schema#label",
"Catalog": "dcat:Catalog",
"datasets": {"@id": "dcat:dataset", "@container": "@set"},
"Dataset": "dcat:Dataset",
"Location": "dct:Location",
"geometry": { "@id": "locn:geometry", "@type": "gsp:wktLiteral" },
"gsp": "http://www.opengis.net/ont/geosparql#",
"PeriodOfTime": "dct:PeriodOfTime",
"startDate": { "@id": "schema:startDate", "@type": "xsd:dateTime" },
"endDate": { "@id": "schema:endDate", "@type": "xsd:dateTime" },
"title": { "@id": "dct:title", "@container": "@language" },
"description": { "@id": "dct:description", "@container": "@language" },
"theme": {"@id": "dcat:theme", "@type": "@id" },
"issued": { "@id": "dct:issued", "@type": "http://www.w3.org/2001/XMLSchema#dateTime" },
"modified": { "@id": "dct:modified", "@type": "http://www.w3.org/2001/XMLSchema#dateTime" },
"landingPage": {"@id": "dcat:landingPage", "@type": "@id" },
"homepage": {"@id": "foaf:homepage", "@type": "@id" },
"spatial": "dct:spatial",
"temporal": "dct:temporal",
"keywords": {"@id": "dcat:keyword", "@container": "@set"},
"ssn": "http://purl.oclc.org/NET/ssnx/ssn#",
"observedProperties": { "@id": "ssn:observedProperty", "@type": "@id", "@container": "@set" },
"publisher": "dct:publisher",
"Organization": "foaf:Organization",
"Group": "foaf:Group",
"name": {"@id": "foaf:name", "@language": null},
"Distribution": "dcat:Distribution",
"distributions": {"@id": "dcat:distribution", "@container": "@set"},
"accessURL": { "@id": "dcat:accessURL", "@type": "@id" },
"downloadURL": { "@id": "dcat:downloadURL", "@type": "@id" },
"mediaType": {"@id": "dcat:mediaType", "@language": null},
"format": {"@id": "dct:format", "@language": null},
"isPartOf": { "@id": "dct:isPartOf", "@type": "@id"},
"parts": { "@id": "dct:hasPart", "@type": "@id", "@container": "@set" }
}
}