diff --git a/dcat/examples/dataset-004.ttl b/dcat/examples/dataset-004.ttl new file mode 100644 index 000000000..90f1c972e --- /dev/null +++ b/dcat/examples/dataset-004.ttl @@ -0,0 +1,48 @@ +# baseURI: http://example.org/dataset-004 +# imports: http://www.w3.org/ns/dcat + +@prefix : . +@prefix dcat: . +@prefix dct: . +@prefix owl: . +@prefix rdf: . +@prefix rdfs: . +@prefix xsd: . + + + rdf:type owl:Ontology ; + owl:imports ; +. +:dataset-004 + rdf:type dcat:Dataset ; + dcat:distribution :dataset-004-csv ; + dcat:distribution :dataset-004-png ; +. +:dataset-004-csv + rdf:type dcat:Distribution ; + dcat:accessService :table-service-005 ; + dcat:accessURL ; + dcat:mediaType ; +. +:dataset-004-png + rdf:type dcat:Distribution ; + dcat:accessService :figure-service-006 ; + dcat:accessURL ; + dcat:mediaType ; +. +:figure-service-006 + rdf:type dcat:DataDistributionService ; + dct:conformsTo ; + dct:type ; + dcat:endpointDescription ; + dcat:endpointURL ; + dcat:servesDataset :dataset-004 ; +. +:table-service-005 + rdf:type dcat:DataDistributionService ; + dct:conformsTo ; + dct:type ; + dcat:endpointDescription ; + dcat:endpointURL ; + dcat:servesDataset :dataset-004 ; +.