Skip to content

Commit

Permalink
Merge branch 'gh-pages' into dcat-sdo-annexe
Browse files Browse the repository at this point in the history
  • Loading branch information
Simon Cox committed Mar 12, 2019
2 parents 9d48311 + 17c9169 commit 85c09f8
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 0 deletions.
28 changes: 28 additions & 0 deletions dcat/index.html
Expand Up @@ -1562,8 +1562,36 @@ <h4>Property: frequency</h4>
<tbody>
<tr><td class="prop">Definition:</td><td>The frequency at which dataset is published.</td></tr>
<tr><td class="prop">Range:</td><td><a href="http://purl.org/dc/terms/Frequency"><code>dct:Frequency</code></a> (A rate at which something recurs)</td></tr>
<tr><td class="prop">Usage note:</td><td>
The value of <code>dct:accrualPeriodicity</code> gives the rate at which the dataset-as-a-whole is updated. This may be complemented by <a href="#Property:dataset_temporalresolution"><code>dcat:temporalResolution</code></a> to give the time between collected data points in a time series.
</td></tr>
</tbody>
</table>

<div class="example">
<p>
For example, a 15-minute time-series that is published daily could be described
</p>
<pre id="ex-frequency" class="example nohighlight turtle" aria-busy="false" aria-live="polite">
&lt;ds913&gt;
a dcat:Dataset ;
dct:accrualPeriodicity &lt;http://purl.org/cld/freq/daily&gt; ;
dcat:temporalResolution "PT15M"^^xsd:duration ;
.
</pre>

<p>
A dataset composed of items added hourly and published immediately could be described
</p>
<pre id="ex-frequency" class="example nohighlight turtle" aria-busy="false" aria-live="polite">
&lt;ds782&gt;
a dcat:Dataset ;
dct:accrualPeriodicity &lt;http://purl.org/cld/freq/continuous&gt; ;
dcat:temporalResolution "PT1H"^^xsd:duration ;
.
</pre>
</div>

</section>

<section id="Property:dataset_spatial">
Expand Down
4 changes: 4 additions & 0 deletions dcat/rdf/dcat.ttl
Expand Up @@ -911,6 +911,10 @@ dcat:themeTaxonomy
rdfs:label "テーマ"@ja ;
rdfs:range skos:ConceptScheme ;
.
dct:accrualPeriodicity
skos:definition "The frequency at which dataset is published." ;
skos:scopeNote "The value of dct:accrualPeriodicity gives the rate at which the dataset-as-a-whole is updated. This may be complemented by dcat:temporalResolution to give the time between collected data points in a time series." ;
.
prov:qualifiedAttribution
skos:definition "Link to an Agent having some form of responsibility for the resource" ;
skos:scopeNote """Used to link to an Agent where the nature of the relationship is known but does not match one of the standard Dublin Core properties (dct:creator, dct:publisher).
Expand Down

0 comments on commit 85c09f8

Please sign in to comment.