Skip to content

Commit

Permalink
turning dct:relation into dct:hasPart in examples
Browse files Browse the repository at this point in the history
  • Loading branch information
riccardoAlbertoni committed Jul 3, 2020
1 parent c58b793 commit 5a0bd03
Showing 1 changed file with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions dcat/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4084,10 +4084,10 @@ <h3>Loosely structured catalog</h3>
</aside>

<p>
In many legacy catalogs and repositories (e.g. CKAN), ‘datasets’ are ‘just a bag of files’. There is no distinction made between part/whole, distribution (representation), and other kinds of relationship (e.g. documentation, schema, supporting documents) from the dataset to each of the files.
In many legacy catalogs and repositories (e.g. CKAN), ‘datasets’ are ‘just a bag of files’. There is no distinction made between distribution (representation), and other kinds of relationship (e.g. documentation, schema, supporting documents) from the dataset to each of the files.
</p>
<p>
If the nature of the relationships between a dataset and component resources in a catalog, repository, or elsewhere are not known, <code>dct:relation</code> can be used:
If the nature of the relationships between a dataset and component resources in a catalog, repository, or elsewhere are not known, <code>dct:hasPart</code> can be used:
</p>

<aside id="ex-dataset-as-bag-of-files" class="example">
Expand All @@ -4096,14 +4096,14 @@ <h3>Loosely structured catalog</h3>
dct:description "A set of RDF graphs representing the International [Chrono]stratigraphic Chart, ..."@en ;
dct:identifier "https://doi.org/10.25919/5b4d2b83cbf2d"^^xsd:anyURI ;
dct:creator &lt;https://orcid.org/0000-0002-3884-3420&gt;;
dct:relation &lt;https://vocabs.ands.org.au/viewById/196&gt; ;
dct:relation :ChronostratChart2017-02.pdf ;
dct:relation :ChronostratChart2017-02.jpg ;
dct:relation :timescale.zip ;
dct:relation :isc2017.jsonld ;
dct:relation :isc2017.nt ;
dct:relation :isc2017.rdf ;
dct:relation :isc2017.ttl ;
dct:hasPart &lt;https://vocabs.ands.org.au/viewById/196&gt; ;
dct:hasPart :ChronostratChart2017-02.pdf ;
dct:hasPart :ChronostratChart2017-02.jpg ;
dct:hasPart :timescale.zip ;
dct:hasPart :isc2017.jsonld ;
dct:hasPart :isc2017.nt ;
dct:hasPart :isc2017.rdf ;
dct:hasPart :isc2017.ttl ;
.
</pre>
</aside>
Expand All @@ -4118,10 +4118,10 @@ <h3>Loosely structured catalog</h3>
rdf:type dcat:Dataset ;
dct:description "A set of RDF graphs representing the International [Chrono]stratigraphic Chart, ..."@en ;
dct:identifier "https://doi.org/10.25919/5b4d2b83cbf2d"^^xsd:anyURI ;
dct:relation &lt;https://vocabs.ands.org.au/viewById/196&gt; ;
dct:relation :ChronostratChart2017-02.pdf ;
dct:relation :ChronostratChart2017-02.jpg ;
dct:relation :timescale.zip ;
dct:hasPart &lt;https://vocabs.ands.org.au/viewById/196&gt; ;
dct:hasPart :ChronostratChart2017-02.pdf ;
dct:hasPart :ChronostratChart2017-02.jpg ;
dct:hasPart :timescale.zip ;
dcat:distribution :d33937-jsonld ;
dcat:distribution :d33937-nt ;
dcat:distribution :d33937-rdf ;
Expand Down Expand Up @@ -4169,9 +4169,9 @@ <h3>Loosely structured catalog</h3>
dct:issued "2018-07-07"^^xsd:date ;
dct:license &lt;https://creativecommons.org/licenses/by/4.0/&gt; ;
dct:publisher &lt;http://www.csiro.au&gt; ;
dct:relation &lt;http://stratigraphy.org/ICSchart/ChronostratChart2017-02.jpg&gt; ;
dct:relation &lt;http://stratigraphy.org/ICSchart/ChronostratChart2017-02.pdf&gt; ;
dct:relation [
dct:hasPart &lt;http://stratigraphy.org/ICSchart/ChronostratChart2017-02.jpg&gt; ;
dct:hasPart &lt;http://stratigraphy.org/ICSchart/ChronostratChart2017-02.pdf&gt; ;
dct:hasPart [
rdf:type dcat:Dataset ;
dct:conformsTo &lt;https://www.w3.org/TR/owl2-overview/&gt; ;
dct:title "The ontology used for the data"@en ;
Expand Down

0 comments on commit 5a0bd03

Please sign in to comment.