Skip to content

Commit

Permalink
Merge branch 'gh-pages' into dcat-issue432-simon
Browse files Browse the repository at this point in the history
  • Loading branch information
davebrowning committed Mar 27, 2019
2 parents 630cfcd + 786fc48 commit 3e389eb
Show file tree
Hide file tree
Showing 5 changed files with 303 additions and 413 deletions.
Binary file modified dcat/UML/schema.org-dataset.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 0 additions & 1 deletion dcat/config.js
Expand Up @@ -31,7 +31,6 @@ var respecConfig = {
},{
name: "Andrea Perego",
company: "European Commission, Joint Research Centre (JRC)",
url: "https://joinup.ec.europa.eu/user/14209",
companyURL: "https://ec.europa.eu/jrc/"
},{
name: "Peter Winstanley",
Expand Down
51 changes: 51 additions & 0 deletions dcat/examples/dataset-004-sdo.ttl
@@ -0,0 +1,51 @@
# baseURI: http://example.org/dataset-004/s/
# imports: http://schema.org/
# imports: http://www.w3.org/ns/dcat

@prefix dap: <https://data.csiro.au/dataset/> .
@prefix dcat: <http://www.w3.org/ns/dcat#> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix dctype: <http://purl.org/dc/dcmitype/> .
@prefix mime: <https://www.iana.org/assignments/media-types/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sdo: <http://schema.org/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

<http://example.org/dataset-004/s/>
rdf:type owl:Ontology ;
dct:conformsTo sdo: ;
sdo:comment "This graph provides a schema.org-conformant representation of a catalog entry together with some related resource descriptions" ;
owl:imports sdo: ;
owl:imports <http://www.w3.org/ns/dcat> ;
.
:dataset-004
a sdo:Dataset ;
sdo:distribution :dataset-004-csv ;
sdo:distribution :dataset-004-png ;
.
:dataset-004-csv
a sdo:DataDownload ;
dcat:accessService :table-service-005 ;
sdo:url <http://example.org/api/table-005> ;
sdo:encodingFormat <https://www.iana.org/assignments/media-types/text/csv> ;
.
:dataset-004-png
a sdo:DataDownload ;
dcat:accessService :figure-service-006 ;
sdo:url <http://example.org/api/figure-006> ;
sdo:encodingFormat <https://www.iana.org/assignments/media-types/image/png> ;
.
:figure-service-006
a sdo:EntryPoint ;
dct:conformsTo <http://example.org/apidef/figure/v1.0> ;
sdo:additionalType <https://inspire.ec.europa.eu/metadata-codelist/SpatialDataServiceType/view> ;
sdo:url <http://example.org/api/figure-006> ;
.
:table-service-005
a sdo:EntryPoint ;
dct:conformsTo <http://example.org/apidef/table/v2.2> ;
sdo:additionalType <https://inspire.ec.europa.eu/metadata-codelist/SpatialDataServiceType/download> ;
sdo:url <http://example.org/api/table-005> ;
.

0 comments on commit 3e389eb

Please sign in to comment.