Skip to content

Commit

Permalink
Merge pull request #911 from w3c/dcat-issue119
Browse files Browse the repository at this point in the history
Relax range of dcat:themeTaxonomy
  • Loading branch information
davebrowning committed May 5, 2019
2 parents 1118e2d + cb5b9f2 commit 7e1ad0d
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 7 deletions.
14 changes: 13 additions & 1 deletion dcat/index.html
Expand Up @@ -741,7 +741,15 @@ <h4>Property: themes</h4>
<tbody>
<tr><td class="prop">Definition:</td><td>A knowledge organization system (KOS) used to classify catalog's datasets and services.</td></tr>
<tr><td class="prop">Domain:</td><td><a href="#Class:Catalog"><code>dcat:Catalog</code></a></td></tr>
<tr><td class="prop">Range:</td><td><a href="http://www.w3.org/2004/02/skos/core#ConceptScheme"><code>skos:ConceptScheme</code></a></td></tr>
<tr><td class="prop">Range:</td><td><a href="http://www.w3.org/2000/01/rdf-schema#Resource"><code>rdfs:Resource</code></a></td></tr>
<tr>
<td class="prop">
Usage note:
</td>
<td>
It is recommended that the taxonomy is organized in a <a href="http://www.w3.org/2004/02/skos/core#ConceptScheme"><code>skos:ConceptScheme</code></a>, <a href="http://www.w3.org/2004/02/skos/core#Collection"><code>skos:Collection</code></a>, <a href="http://www.w3.org/2002/07/owl#Ontology"><code>owl:Ontology</code></a> or similar, which allows each member to be denoted by an IRI and published as linked-data.
</td>
</tr>
</tbody>
</table>
</section>
Expand Down Expand Up @@ -3931,6 +3939,10 @@ <h3>Changes since the W3C Recommendation of 16 January 2014</h3>
<p>The document has undergone the following changes since the W3C Recommendation of 16 January 2014 [[?VOCAB-DCAT-20140116]]:</p>

<ul>
<li>
The global range of the property <a href="#Property:catalog_themes"><code>dcat:themeTaxonomy</code></a> relaxed to allow linking to a taxonomy that is not formalized as a skos:ConceptScheme. See <a href="https://github.com/w3c/dxwg/issues/119">Issue #119</a>
</li>

<li>
A new property <a href="#Property:dataset_spatialresolution"><code>dcat:spatialResolutionInMeters</code></a> added to support description of the spatial resolution of datasets and distributions. See <a href="https://github.com/w3c/dxwg/issues/84">Issue #84</a>
</li>
Expand Down
19 changes: 13 additions & 6 deletions dcat/rdf/dcat.ttl
Expand Up @@ -14,7 +14,7 @@
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix schema: <http://schema.org/> .
@prefix sdo: <http://schema.org/> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix v: <http://www.w3.org/2006/vcard/ns#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
Expand All @@ -26,29 +26,33 @@
rdfs:seeAlso <https://orcid.org/0000-0002-3884-3420> ;
foaf:name "Simon J D Cox" ;
foaf:workInfoHomepage <http://people.csiro.au/Simon-Cox> ;
sdo:affiliation [
foaf:homepage <https://csiro.au> ;
foaf:name "Commonwealth Scientific and Industrial Research Organisation" ;
] ;
] ;
dct:contributor [
schema:affiliation <http://www.w3.org/data#W3C> ;
sdo:affiliation <http://www.w3.org/data#W3C> ;
rdfs:seeAlso <http://philarcher.org/foaf.rdf#me> ;
foaf:homepage <http://www.w3.org/People/all#phila> ;
foaf:name "Phil Archer" ;
] ;
dct:contributor [
schema:affiliation [
sdo:affiliation [
foaf:homepage <http://ec.europa.eu/dgs/informatics/> ;
foaf:name "European Commission, DG DIGIT" ;
] ;
foaf:name "Vassilios Peristeras" ;
] ;
dct:contributor [
schema:affiliation [
sdo:affiliation [
foaf:homepage <http://okfn.org> ;
foaf:name "Open Knowledge Foundation" ;
] ;
foaf:name "Rufus Pollock" ;
] ;
dct:contributor [
schema:affiliation [
sdo:affiliation [
foaf:homepage <http://www.refinitiv.com> ;
foaf:name "Refinitiv" ;
] ;
Expand Down Expand Up @@ -984,7 +988,10 @@ dcat:themeTaxonomy
rdfs:label "Ταξινομία θεματικών κατηγοριών."@el ;
rdfs:label "قائمة التصنيفات"@ar ;
rdfs:label "テーマ"@ja ;
rdfs:range skos:ConceptScheme ;
# rdfs:range skos:ConceptScheme ;
rdfs:range rdfs:Resource ;
sdo:rangeIncludes skos:ConceptScheme , skos:Collection , owl:Ontology ;
skos:scopeNote "It is recommended that the taxonomy is organized in a skos:ConceptScheme, skos:Collection, owl:Ontology or similar, which allows each member to be denoted by an IRI and published as linked-data."@en ;
.
dct:accessRights
skos:scopeNote "Information about licenses and rights MAY be provided for the Resource. See also guidance at § 10. License and rights statements."@en ;
Expand Down

0 comments on commit 7e1ad0d

Please sign in to comment.