Skip to content

Commit

Permalink
Merge branch 'gh-pages' into dcat-update-ack-section
Browse files Browse the repository at this point in the history
  • Loading branch information
riccardoAlbertoni committed Mar 20, 2022
2 parents b1f5d6e + 46f8f8f commit 3fe60c4
Show file tree
Hide file tree
Showing 25 changed files with 855 additions and 30 deletions.
574 changes: 574 additions & 0 deletions charter/charter-2022.html

Large diffs are not rendered by default.

Binary file removed dcat/UML/DCAT-Relationships.png
Binary file not shown.
Binary file removed dcat/UML/DCAT-summary-all-attributes.png
Binary file not shown.
3 changes: 0 additions & 3 deletions dcat/UML/DCAT-summary-all-attributes.svg

This file was deleted.

1 change: 0 additions & 1 deletion dcat/UML/dcat-all-attributes.drawio

This file was deleted.

3 changes: 0 additions & 3 deletions dcat/UML/dcat-relationships.svg

This file was deleted.

64 changes: 64 additions & 0 deletions dcat/examples/vocab-dcat-3/series-membership.jsonld
@@ -0,0 +1,64 @@
{
"@graph": [
{
"@id": "http://example.org/dcat/budget",
"@type": "http://www.w3.org/ns/dcat#DatasetSeries",
"http://purl.org/dc/terms/title": {
"@language": "en",
"@value": "Budget data"
}
},
{
"@id": "http://example.org/dcat/EUCatalogue",
"@type": "http://www.w3.org/ns/dcat#Catalog",
"http://purl.org/dc/terms/title": {
"@language": "en",
"@value": "European Data Catalogue"
},
"http://www.w3.org/ns/dcat#dataset": [
{
"@id": "http://example.org/dcat/budget"
},
{
"@id": "http://example.org/dcat/employment"
},
{
"@id": "http://example.org/dcat/finance"
}
]
},
{
"@id": "http://example.org/dcat/budget-2018",
"@type": "http://www.w3.org/ns/dcat#Dataset",
"http://purl.org/dc/terms/title": {
"@language": "en",
"@value": "Budget data for year 2018"
},
"http://www.w3.org/ns/dcat#inSeries": {
"@id": "http://example.org/dcat/budget"
}
},
{
"@id": "http://example.org/dcat/budget-2020",
"@type": "http://www.w3.org/ns/dcat#Dataset",
"http://purl.org/dc/terms/title": {
"@language": "en",
"@value": "Budget data for year 2020"
},
"http://www.w3.org/ns/dcat#inSeries": {
"@id": "http://example.org/dcat/budget"
}
},
{
"@id": "http://example.org/dcat/budget-2019",
"@type": "http://www.w3.org/ns/dcat#Dataset",
"http://purl.org/dc/terms/title": {
"@language": "en",
"@value": "Budget data for year 2019"
},
"http://www.w3.org/ns/dcat#inSeries": {
"@id": "http://example.org/dcat/budget"
}
}
]
}
34 changes: 34 additions & 0 deletions dcat/examples/vocab-dcat-3/series-membership.rdf
@@ -0,0 +1,34 @@
<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF
xmlns:dcat="http://www.w3.org/ns/dcat#"
xmlns:dcterms="http://purl.org/dc/terms/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
>
<rdf:Description rdf:about="http://example.org/dcat/EUCatalogue">
<rdf:type rdf:resource="http://www.w3.org/ns/dcat#Catalog"/>
<dcterms:title xml:lang="en">European Data Catalogue</dcterms:title>
<dcat:dataset rdf:resource="http://example.org/dcat/budget"/>
<dcat:dataset rdf:resource="http://example.org/dcat/employment"/>
<dcat:dataset rdf:resource="http://example.org/dcat/finance"/>
</rdf:Description>
<rdf:Description rdf:about="http://example.org/dcat/budget-2018">
<rdf:type rdf:resource="http://www.w3.org/ns/dcat#Dataset"/>
<dcterms:title xml:lang="en">Budget data for year 2018</dcterms:title>
<dcat:inSeries rdf:resource="http://example.org/dcat/budget"/>
</rdf:Description>
<rdf:Description rdf:about="http://example.org/dcat/budget">
<rdf:type rdf:resource="http://www.w3.org/ns/dcat#DatasetSeries"/>
<dcterms:title xml:lang="en">Budget data</dcterms:title>
</rdf:Description>
<rdf:Description rdf:about="http://example.org/dcat/budget-2019">
<rdf:type rdf:resource="http://www.w3.org/ns/dcat#Dataset"/>
<dcterms:title xml:lang="en">Budget data for year 2019</dcterms:title>
<dcat:inSeries rdf:resource="http://example.org/dcat/budget"/>
</rdf:Description>
<rdf:Description rdf:about="http://example.org/dcat/budget-2020">
<rdf:type rdf:resource="http://www.w3.org/ns/dcat#Dataset"/>
<dcterms:title xml:lang="en">Budget data for year 2020</dcterms:title>
<dcat:inSeries rdf:resource="http://example.org/dcat/budget"/>
</rdf:Description>
</rdf:RDF>

29 changes: 29 additions & 0 deletions dcat/examples/vocab-dcat-3/series-membership.ttl
@@ -0,0 +1,29 @@
@prefix ex: <http://example.org/dcat/> .
@prefix dcat: <http://www.w3.org/ns/dcat#> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .


ex:EUCatalogue a dcat:Catalog ;
dcterms:title "European Data Catalogue"@en ;
dcat:dataset ex:budget , ex:employment , ex:finance ;
.

ex:budget a dcat:DatasetSeries ;
dcterms:title "Budget data"@en ;
.

ex:budget-2018 a dcat:Dataset ;
dcterms:title "Budget data for year 2018"@en ;
dcat:inSeries ex:budget ;
.

ex:budget-2019 a dcat:Dataset ;
dcterms:title "Budget data for year 2019"@en ;
dcat:inSeries ex:budget ;
.

ex:budget-2020 a dcat:Dataset ;
dcterms:title "Budget data for year 2020"@en ;
dcat:inSeries ex:budget ;
.
69 changes: 69 additions & 0 deletions dcat/examples/vocab-dcat-3/series-releases.jsonld
@@ -0,0 +1,69 @@
{
"@graph": [
{
"@id": "http://example.org/dcat/budget",
"@type": "http://www.w3.org/ns/dcat#DatasetSeries",
"http://purl.org/dc/terms/title": {
"@language": "en",
"@value": "Budget data"
}
},
{
"@id": "http://example.org/dcat/budget-2020",
"@type": "http://www.w3.org/ns/dcat#Dataset",
"http://purl.org/dc/terms/issued": {
"@type": "http://www.w3.org/2001/XMLSchema#date",
"@value": "2021-01-01"
},
"http://purl.org/dc/terms/title": {
"@language": "en",
"@value": "Budget data for year 2020"
},
"http://www.w3.org/ns/dcat#inSeries": {
"@id": "http://example.org/dcat/budget"
},
"http://www.w3.org/ns/dcat#prev": {
"@id": "http://example.org/dcat/budget-2019"
}
},
{
"@id": "http://example.org/dcat/budget-2019",
"@type": "http://www.w3.org/ns/dcat#Dataset",
"http://purl.org/dc/terms/issued": {
"@type": "http://www.w3.org/2001/XMLSchema#date",
"@value": "2020-01-01"
},
"http://purl.org/dc/terms/title": {
"@language": "en",
"@value": "Budget data for year 2019"
},
"http://www.w3.org/ns/dcat#inSeries": {
"@id": "http://example.org/dcat/budget"
},
"http://www.w3.org/ns/dcat#next": {
"@id": "http://example.org/dcat/budget-2020"
},
"http://www.w3.org/ns/dcat#prev": {
"@id": "http://example.org/dcat/budget-2018"
}
},
{
"@id": "http://example.org/dcat/budget-2018",
"@type": "http://www.w3.org/ns/dcat#Dataset",
"http://purl.org/dc/terms/issued": {
"@type": "http://www.w3.org/2001/XMLSchema#date",
"@value": "2019-01-01"
},
"http://purl.org/dc/terms/title": {
"@language": "en",
"@value": "Budget data for year 2018"
},
"http://www.w3.org/ns/dcat#inSeries": {
"@id": "http://example.org/dcat/budget"
},
"http://www.w3.org/ns/dcat#next": {
"@id": "http://example.org/dcat/budget-2019"
}
}
]
}
34 changes: 34 additions & 0 deletions dcat/examples/vocab-dcat-3/series-releases.rdf
@@ -0,0 +1,34 @@
<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF
xmlns:dcat="http://www.w3.org/ns/dcat#"
xmlns:dcterms="http://purl.org/dc/terms/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
>
<rdf:Description rdf:about="http://example.org/dcat/budget-2018">
<rdf:type rdf:resource="http://www.w3.org/ns/dcat#Dataset"/>
<dcterms:title xml:lang="en">Budget data for year 2018</dcterms:title>
<dcat:inSeries rdf:resource="http://example.org/dcat/budget"/>
<dcterms:issued rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2019-01-01</dcterms:issued>
<dcat:next rdf:resource="http://example.org/dcat/budget-2019"/>
</rdf:Description>
<rdf:Description rdf:about="http://example.org/dcat/budget">
<rdf:type rdf:resource="http://www.w3.org/ns/dcat#DatasetSeries"/>
<dcterms:title xml:lang="en">Budget data</dcterms:title>
</rdf:Description>
<rdf:Description rdf:about="http://example.org/dcat/budget-2020">
<rdf:type rdf:resource="http://www.w3.org/ns/dcat#Dataset"/>
<dcterms:title xml:lang="en">Budget data for year 2020</dcterms:title>
<dcat:inSeries rdf:resource="http://example.org/dcat/budget"/>
<dcterms:issued rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2021-01-01</dcterms:issued>
<dcat:prev rdf:resource="http://example.org/dcat/budget-2019"/>
</rdf:Description>
<rdf:Description rdf:about="http://example.org/dcat/budget-2019">
<rdf:type rdf:resource="http://www.w3.org/ns/dcat#Dataset"/>
<dcterms:title xml:lang="en">Budget data for year 2019</dcterms:title>
<dcat:inSeries rdf:resource="http://example.org/dcat/budget"/>
<dcterms:issued rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2020-01-01</dcterms:issued>
<dcat:prev rdf:resource="http://example.org/dcat/budget-2018"/>
<dcat:next rdf:resource="http://example.org/dcat/budget-2020"/>
</rdf:Description>
</rdf:RDF>

0 comments on commit 3fe60c4

Please sign in to comment.