1+
2+ @prefix exampleMS: <https://data.exampleMS.gov/id/data/> .
3+ @prefix adms: <http://www.w3.org/ns/adms#> .
4+ @prefix dcat: <http://www.w3.org/ns/dcat#> .
5+ @prefix dcatap: <http://data.europa.eu/r5r/> .
6+ @prefix dct: <http://purl.org/dc/terms/> .
7+ @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
8+ @prefix foaf: <http://xmlns.com/foaf/0.1/> .
9+ @prefix skos: <http://www.w3.org/2004/02/skos/core#> .
10+ @prefix vcard: <http://www.w3.org/2006/vcard/ns#> .
11+ @prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
12+ @prefix eli: <http://data.europa.eu/eli/ontology#> .
13+ @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
14+
15+ exampleMS:1T2p3o4B a dcat:Dataset;
16+ dct:title " Naam van de dataset" @nl ;
17+ dct:title " Title of the dataset" @en ;
18+ dct:accessRights <http://publications.europa.eu/resource/authority/access-right/PUBLIC> ;
19+ dcatap:applicableLegislation <http://data.europa.eu/eli/reg_impl/2023/138/oj> ;
20+ dct:conformsTo <http://data.europa.eu/eli/reg/2010/1089> ;
21+ dcat:contactPoint [
22+ a <https://json-ld.org/playground/Organization> , vcard:Kind ;
23+ vcard:fn " Mijn Organisatie" @nl ;
24+ vcard:fn " My Organization" @en ;
25+ vcard:hasEmail <mailto:opendata@mijnorganisatie.nl> ;
26+ vcard:hasURL " http://mijnorganisatie.org/" ;
27+ vcard:organization-name " Mijn Organisatie" @nl ;
28+ vcard:organization-name " My Organization" @en
29+ ] ;
30+ dct:creator [
31+ dct:type <http://purl.org/adms/publishertype/LocalAuthority> ;
32+ a foaf:Agent ;
33+ foaf:name " Mijn Organisatie" @nl ;
34+ foaf:name " My Organization" @en
35+ ] ;
36+ dct:description " beschrijving van de dataset" @nl ;
37+ dct:description " description of the dataset in english" @en ;
38+ dct:identifier " https://data.exampleMS.gov/id/dataset/1T2p3o4B" ;
39+ dcat:keyword " trefwoord 1" @nl ;
40+ dcat:keyword " trefwoord 2" @nl ;
41+ dcat:keyword " keyword 1" @en ;
42+ dcat:keyword " keyword 2" @en ;
43+ dct:language <http://publications.europa.eu/resource/authority/language/NLD> ;
44+ dct:publisher [
45+ dct:type <http://purl.org/adms/publishertype/LocalAuthority> ;
46+ a foaf:Agent ;
47+ foaf:name " Mijn Organisatie" @nl ;
48+ foaf:name " My Organization" @en
49+ ] ;
50+ dct:spatial <https://www.geonames.org/2750405> ;
51+ dct:spatial [a dct:Location ;
52+ dcat:bbox " POLYGON ((3.053 47.975,7.24 47.975,7.24 53.504,3.053 53.504,3.053 47.975))" ^^rdf:wktLiteral ;
53+ ] ;
54+ dct:temporal [ a dct:PeriodOfTime ;
55+ dcat:startDate " 2016-03-28" ^^xsd:date ;
56+ dcat:endDate " 2018-08-25" ^^xsd:date ;
57+ ] ;
58+ dcat:theme <http://publications.europa.eu/resource/authority/data-theme/EDUC> ;
59+ dcat:distribution exampleMS:1T2p3o4B-dist-SHP
60+ .
61+
62+ exampleMS:1T2p3o4B-dist-SHP a dcat:Distribution ;
63+ dcat:accessURL <https://orgea.exampleMS.gov/files/1T2p3o4B.shp> ;
64+ dcatap:applicableLegislation <http://data.europa.eu/eli/reg_impl/2023/138/oj> ;
65+ dcat:downloadURL <https://orgea.exampleMS.gov/files/1T2p3o4B.shp> ;
66+ dct:language <http://publications.europa.eu/resource/authority/language/NLD> ;
67+ dct:license <http://creativecommons.org/publicdomain/zero/1.0/deed.nl> ;
68+ dct:conformsTo <http://inspire.ec.europa.eu/schemas/hy/4.0/HydroBase.xsd> ;
69+ dcat:mediaType <https://www.iana.org/assignments/media-types/application/vnd.shp>
70+ .
71+
72+ <https://orgea.exampleMS.gov/files/1T2p3o4B.shp> a rdfs:Resource .
73+
74+ <http://creativecommons.org/publicdomain/zero/1.0/deed.nl> a dct:LicenseDocument .
75+
76+ <http://publications.europa.eu/resource/authority/access-right/PUBLIC> a dct:RightsStatement .
77+
78+ <http://publications.europa.eu/resource/authority/language/NLD> a dct:LinguisticSystem .
79+
80+
81+ <http://data.europa.eu/eli/reg_impl/2023/138/oj> a eli:LegalResource .
82+
83+
84+ <http://data.europa.eu/eli/reg/2010/1089> a dct:Standard .
85+
86+
87+ <https://www.geonames.org/2750405> a dct:Location .
88+
89+
90+ <http://purl.org/adms/publishertype/LocalAuthority> a skos:Concept ;
91+ skos:prefLabel" Local Authority" @en .
92+
93+ <http://publications.europa.eu/resource/authority/data-theme/EDUC> a skos:Concept ;
94+ skos:prefLabel " EDUC" @en .
95+
96+ <https://www.iana.org/assignments/media-types/application/vnd.shp> a dct:MediaType .
97+
98+ <http://inspire.ec.europa.eu/schemas/hy/4.0/HydroBase.xsd> a dct:Standard .
0 commit comments