Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/gh-pages' into roba-profile
Browse files Browse the repository at this point in the history
  • Loading branch information
rob-metalinkage committed Mar 20, 2018
2 parents b961ff8 + 819dc25 commit 4afaeb4
Show file tree
Hide file tree
Showing 7 changed files with 256 additions and 71 deletions.
Binary file added dcat/images/DataService.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added dcat/images/WebService.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
214 changes: 149 additions & 65 deletions dcat/index.html

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion dcat/rdf/dcat.ttl
Expand Up @@ -358,7 +358,6 @@ dcat:contactPoint
rdfs:comment "Συνδέει ένα σύνολο δεδομένων με ένα σχετικό σημείο επικοινωνίας, μέσω VCard."@el ;
rdfs:comment "تربط قائمة البيانات بعنوان اتصال موصف باستخدام VCard"@ar ;
rdfs:comment "データセットを、VCardを用いて提供されている適切な連絡先情報にリンクします。"@ja ;
# rdfs:domain dcat:Dataset ;
rdfs:isDefinedBy <http://www.w3.org/TR/vocab-dcat/> ;
rdfs:label "contact point"@en ;
rdfs:label "point de contact"@fr ;
Expand Down
29 changes: 29 additions & 0 deletions dcat/rdf/dcat10.ttl
@@ -0,0 +1,29 @@
# baseURI: http://www.w3.org/ns/dcat10
# imports: http://www.w3.org/ns/dcat
# prefix: dcat10

@prefix dcat: <http://www.w3.org/ns/dcat#> .
@prefix dcat10: <http://www.w3.org/ns/dcat10#> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix dctype: <http://purl.org/dc/dcmitype/> .
@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 xsd: <http://www.w3.org/2001/XMLSchema#> .

dcat:Dataset
rdfs:subClassOf dctype:Dataset ;
.
dcat:contactPoint
rdfs:domain dcat:Dataset ;
.
<http://www.w3.org/ns/dcat10>
rdf:type owl:Ontology ;
dct:contributor <http://orcid.org/0000-0002-3884-3420> ;
dct:created "2018-03-06" ;
dct:creator <https://www.w3.org/2017/dxwg> ;
rdfs:comment """This RDF graph defines a profile of DCAT corresponding to the 2014 version of DCAT - as described in https://www.w3.org/TR/2014/REC-vocab-dcat-20140116/
It includes axioms removed from DCAT in the 2018-19 revision.""" ;
rdfs:label "DCAT v1.0 profile of DCAT vocabulary" ;
owl:imports <http://www.w3.org/ns/dcat> ;
.
81 changes: 77 additions & 4 deletions dcat/rdf/schema.ttl
Expand Up @@ -4,9 +4,10 @@
# imports: https://raw.githubusercontent.com/schemaorg/schemaorg/master/data/releases/3.3/ext-meta.ttl
# prefix: dcat-schema

@prefix dc: <http://purl.org/dc/elements/1.1/>
@prefix dcat: <http://www.w3.org/ns/dcat#> .
@prefix dcat-schema: <http://www.w3.org/ns/dcat/schema#> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
Expand All @@ -15,6 +16,48 @@
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

dc:title
owl:equivalentProperty schema:name ;
.
dct:title
owl:equivalentProperty schema:name ;
.
dc:description
owl:equivalentProperty schema:description ;
.
dct:description
owl:equivalentProperty schema:description ;
.
dct:format
owl:equivalentProperty schema:encodingFormat ;
.
dct:identifier
owl:equivalentProperty schema:identifier ;
.
dct:issued
owl:equivalentProperty schema:datePublished ;
.
dct:language
owl:equivalentProperty schema:inLanguage ;
.
dct:license
owl:equivalentProperty schema:license ;
.
dct:modified
owl:equivalentProperty schema:dateModified ;
.
dct:publisher
owl:equivalentProperty schema:publisher ;
.
dct:spatial
owl:equivalentProperty schema:spatial ;
owl:equivalentProperty schema:spatialCoverage ;
.
dct:temporal
owl:equivalentProperty schema:datasetTimeInterval ;
owl:equivalentProperty schema:temporal ;
owl:equivalentProperty schema:temporalCoverage ;
.
schema:DataDownload
rdfs:subClassOf dcat:Distribution ;
.
Expand All @@ -27,18 +70,26 @@ dcat:Catalog
dcat:Dataset
owl:equivalentClass schema:Dataset ;
.
dcat:Distribution
rdfs:subClassOf schema:DataDownload ;
.
dcat:accessURL
schema:domainIncludes dcat:Distribution ;
schema:rangeIncludes rdfs:Resource ;
rdfs:subPropertyOf schema:contentUrl ;
.
dcat:byteSize
schema:domainIncludes dcat:Distribution ;
schema:rangeIncludes rdfs:Literal ;
rdfs:subPropertyOf schema:contentSize ;
.
dcat:bytes
schema:domainIncludes dcat:Distribution ;
schema:rangeIncludes xsd:integer ;
.
dcat:contactPoint
owl:equivalentProperty schema:contactPoint ;
.
dcat:dataDictionary
schema:domainIncludes dcat:Dataset ;
.
Expand All @@ -48,29 +99,36 @@ dcat:dataQuality
dcat:dataset
schema:domainIncludes dcat:Catalog ;
schema:rangeIncludes dcat:Dataset ;
owl:equivalentProperty schema:dataset ;
.
dcat:distribution
schema:domainIncludes dcat:Dataset ;
schema:rangeIncludes dcat:Distribution ;
owl:equivalentProperty schema:distribution ;
.
dcat:downloadURL
schema:domainIncludes dcat:Distribution ;
schema:rangeIncludes rdfs:Resource ;
rdfs:subPropertyOf schema:contentUrl ;
.
dcat:granularity
schema:domainIncludes dcat:Dataset ;
.
dcat:keyword
schema:domainIncludes dcat:Dataset ;
schema:rangeIncludes rdfs:Literal ;
rdfs:comment "Mapped as a sub-property of schema:keywords - dcat:keyword is singular, schema:keywords is plural" ;
rdfs:subPropertyOf schema:keywords ;
.
dcat:landingPage
schema:domainIncludes dcat:Dataset ;
schema:rangeIncludes foaf:Document ;
rdfs:subPropertyOf schema:url ;
.
dcat:mediaType
schema:domainIncludes dcat:Distribution ;
schema:rangeIncludes dcterms:MediaTypeOrExtent ;
schema:rangeIncludes dct:MediaTypeOrExtent ;
owl:equivalentProperty schema:encodingFormat ;
.
dcat:record
schema:domainIncludes dcat:Catalog ;
Expand All @@ -82,20 +140,35 @@ dcat:size
dcat:theme
schema:domainIncludes dcat:Dataset ;
schema:rangeIncludes skos:Concept ;
owl:equivalentProperty schema:about ;
.
dcat:themeTaxonomy
schema:domainIncludes dcat:Catalog ;
schema:rangeIncludes skos:ConceptScheme ;
.
<http://www.w3.org/ns/dcat/schema>
rdf:type owl:Ontology ;
dcterms:created "2018-02-19"^^xsd:date ;
dcterms:creator <http://registry.it.csiro.au/sandbox/csiro/person/Simon-Cox> ;
dct:created "2018-02-19"^^xsd:date ;
dct:creator <http://registry.it.csiro.au/sandbox/csiro/person/Simon-Cox> ;
dct:contributor <https://orcid.org/0000-0003-3499-8262>;
rdfs:comment "<p>Based in part on Project Open Data mappings described in <a href=\"https://project-open-data.cio.gov/metadata-resources/\">https://project-open-data.cio.gov/metadata-resources/</a></p>"^^rdf:HTML ;
rdfs:comment "<p>Based in part on SDWWG ISO 19115 - DCAT - Schema.org mapping described in <a href=\"https://www.w3.org/2015/spatial/wiki/ISO_19115_-_DCAT_-_Schema.org_mapping\">https://www.w3.org/2015/spatial/wiki/ISO_19115_-_DCAT_-_Schema.org_mapping</a></p>"^^rdf:HTML ;
rdfs:comment "NOTE: this alignment is provisional and incomplete, and is added to the repository here to (a) support further development of the DCAT-SDO alignment (b) demonstrate the strategy of modularizing alignments and dependencies into separate RDF files." ;
rdfs:comment "RDF graph containing alignment axioms between DCAT and schema.org" ;
rdfs:label "DCAT-SDO alignment" ;
rdfs:seeAlso <https://github.com/w3c/dxwg/issues/110> ;
rdfs:seeAlso <https://project-open-data.cio.gov/metadata-resources/> ;
rdfs:seeAlso <https://www.w3.org/2015/spatial/wiki/ISO_19115_-_DCAT_-_Schema.org_mapping> ;
owl:imports <http://www.w3.org/ns/dcat> ;
owl:imports <https://raw.githubusercontent.com/schemaorg/schemaorg/master/data/releases/3.3/all-layers.ttl> ;
owl:imports <https://raw.githubusercontent.com/schemaorg/schemaorg/master/data/releases/3.3/ext-meta.ttl> ;
.
foaf:Organization
owl:equivalentClass schema:Organization ;
.
foaf:homepage
owl:equivalentProperty schema:url ;
.
foaf:mbox
owl:equivalentProperty schema:email ;
.
2 changes: 1 addition & 1 deletion ucr/index.html
Expand Up @@ -3127,6 +3127,7 @@ <h3>Distribution schema [RDIS]</h3>
<a href="#ID6"></a>
<a href="#ID33"></a>
<a href="#ID17"></a>
<a href="#ID18"></a>
<a href="#ID22"></a>
</p>
</section>
Expand Down Expand Up @@ -3252,7 +3253,6 @@ <h3>Dataset publications [RDSP]</h3>
<p class="relatedRequirements">
<a href="#RPFL"></a>
<a href="#RDSAT"></a>
<a href="#RDSP"></a>
</p>
<p class="relatedUseCases">
<a href="#ID9"></a>
Expand Down

0 comments on commit 4afaeb4

Please sign in to comment.