Skip to content

Commit 6a57e17

Browse files
Merge pull request #5 from NielsHoffmann/master
improve dcat-ap 3 profile
2 parents f1c2cca + 5e35440 commit 6a57e17

101 files changed

Lines changed: 4289 additions & 1165 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

_sources/dcat-ap/bblock.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11
{
2-
"name": "Proxy placeholder for DCAT-AP profile",
3-
"abstract": "Proxy for the DCAT-AP (european profile of DCAT)",
4-
"status": "stable",
2+
"name": "DCAT-AP 3.0 profile",
3+
"abstract": "DCAT-AP 3.0 (european profile of DCAT)",
4+
"status": "under-development",
55
"dateTimeAddition": "2023-09-18T00:00:00Z",
66
"itemClass": "model",
77
"register": "ogc-incubator",
8-
"version": "0.1",
9-
"dateOfLastChange": "2023-09-18",
8+
"version": "0.2",
9+
"dateOfLastChange": "2025-04-23",
1010
"link": "https://github.com/opengeospatial/bblock-template",
1111
"dependsOn": [
1212
"ogc.geo.geodcat.dcat"
1313
],
1414
"sources": [
1515
{
16-
"title": "DCAT-AP Specification",
16+
"title": "DCAT-AP 3.0 Specification",
1717
"link": "https://semiceu.github.io/DCAT-AP/releases/3.0.0/"
1818
},
1919
{
20-
"title": "DCAT-AP JSON-LD context",
20+
"title": "DCAT-AP 3.0 JSON-LD context",
2121
"link": "https://semiceu.github.io/DCAT-AP/releases/3.0.0/context/dcat-ap.jsonld"
2222
}
2323
],

_sources/dcat-ap/description.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
## DCAT-AP
1+
## DCAT-AP 3.0
22

3-
This building block provides a framework to test compatibility of the DCAT-AP with GeoDCAT, and to make this relationship transparent to any implementation of GeoDCAT-AP using OGC standards.
3+
This building block provides a framework to test compatibility of GeoDCAT with DCAT-AP 3.0, and to make this relationship transparent to any implementation of GeoDCAT-AP using OGC standards.

_sources/dcat-ap/examples.yaml

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,18 @@
1-
- title: GeoDCAT-AP example
1+
# - title: GeoDCAT-AP example
2+
# content: |-
3+
# This example from the GeoDCAT-AP profile
4+
5+
# snippets:
6+
# - language: ttl
7+
# ref: ../geodcat-ap/examples/geodcat-ap-regression.ttl
8+
9+
- title: DCAT-AP 3.0 example
210
content: |-
3-
This example from the GeoDCAT-AP profile
11+
This is an example conforming to DCAT-AP 3.0
12+
13+
It shows a Dataset with multilingual properties as well as a Distribution.
14+
The specific DCAT-AP related property is dcatap:applicableLegislation and there are a number of required properties defined via shacl.
415
516
snippets:
617
- language: ttl
7-
ref: ../geodcat-ap/examples/geodcat-ap-regression.ttl
8-
18+
ref: ./examples/dataset-example.ttl
Lines changed: 98 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,98 @@
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

Comments
 (0)