diff --git a/dcat/index.html b/dcat/index.html index af8f398a4..3c1ad5de4 100644 --- a/dcat/index.html +++ b/dcat/index.html @@ -2222,6 +2222,7 @@

Class: Dataset

The following properties are specific to this class: distribution, frequency, + in series spatial/geographic coverage, spatial resolution, temporal coverage, @@ -2323,7 +2324,31 @@

Property: frequency

Examples showing how dcterms:accrualPeriodicity and dcat:temporalResolution may be combined are given in .

+ +
+

Property: in series

+ + + + + + + + + + + + + + + + + +
RDF Property:dcat:inSeries
Definition:A dataset series of which the dataset is part.
Range:dcat:DatasetSeries
Sub-property of:dcterms:isPartOf
Inverse property of:dcat:hasSeriesMember
Usage note: Normally, child datasets in dataset series are represented as dcat:Dataset. The use of dcat:Distribution for typing child datasets is however recognized as a possible alternative, whenever it addresses more effectively the requirements of a given application scenario.
+

Property: spatial/geographical coverage

@@ -2468,7 +2493,7 @@

Class: Dataset Series

The following property is specific to this class: - hasPart. + dcat:hasSeriesMember.

The following properties of the super-classes dcat:Resource and dcat:Dataset are also available for use: @@ -2513,19 +2538,28 @@

Class: Dataset Series

-
-

Property: has part

+
+

Property: has series member

+ - + - + + + + + + @@ -4398,32 +4432,36 @@

Dataset series

How to specify dataset series

-

DCAT makes dataset series first class citizens of data catalogs by minting a new class dcat:DatasetSeries, defined as subclass of dcat:Dataset. The dataset series and the child datasets are linked by using the [[DCTERMS]] property dcterms:hasPart and/or its inverse dcterms:isPartOf. Note that a dataset series can also be the child of another dataset series.

+

DCAT makes dataset series first class citizens of data catalogs by minting a new class dcat:DatasetSeries, defined as subclass of dcat:Dataset. The dataset series and the child datasets are linked by using the [[DCTERMS]] property dcat:hasSeriesMember and/or its inverse dcat:inSeries. Note that a dataset series can also be the child of another dataset series.

@@ -4437,20 +4475,20 @@

How to specify dataset series

ex:budget a dcat:DatasetSeries ; dcterms:title "Budget data"@en ; - dcterms:hasPart ex:budget-2018 , + dcat:hasSeriesMember ex:budget-2018 , ex:budget-2019 , ex:budget-2020 ; . ex:budget-2018 a dcat:Dataset ; dcterms:title "Budget data for year 2018"@en ; - dcterms:isPartOf ex:budget ; + dcat:inSeries ex:budget ; dcterms:issued "2019-01-01"^^xsd:date ; adms:next ex:budget-2019 ; . ex:budget-2019 a dcat:Dataset ; dcterms:title "Budget data for year 2019"@en ; - dcterms:isPartOf ex:budget ; + dcat:inSeries ex:budget ; dcterms:issued "2020-01-01"^^xsd:date ; adms:prev ex:budget-2018 ; adms:next ex:budget-2020 ; @@ -4458,7 +4496,7 @@

How to specify dataset series

ex:budget-2020 a dcat:Dataset ; dcterms:title "Budget data for year 2020"@en ; - dcterms:isPartOf ex:budget ; + dcat:inSeries ex:budget ; dcterms:issued "2021-01-01"^^xsd:date ; adms:prev ex:budget-2019 ; . @@ -4513,7 +4551,7 @@

Dataset series metadata

 ex:budget a dcat:DatasetSeries ;
   dcterms:title "Budget data"@en ;
-  dcterms:hasPart ex:budget-2018-be , ex:budget-2019-be , ex:budget-2020-be ,
+  dcat:hasSeriesMember ex:budget-2018-be , ex:budget-2019-be , ex:budget-2020-be ,
     ex:budget-2018-fr , ex:budget-2019-fr , ex:budget-2020-fr , 
     ex:budget-2018-it , ex:budget-2019-it , ex:budget-2020-it ,
     ... ;
@@ -4533,7 +4571,7 @@ 

Dataset series metadata

ex:budget-2018-be a dcat:Dataset ; dcterms:title "Belgium budget data for year 2018"@en ; - dcterms:isPartOf ex:budget ; + dcat:inSeries ex:budget ; dcterms:issued "2019-01-01"^^xsd:date ; adms:next ex:budget-2019-be ; dcterms:accrualPeriodicity <http://purl.org/cld/freq/annual> ; @@ -4549,7 +4587,7 @@

Dataset series metadata

ex:budget-2018-fr a dcat:Dataset ; dcterms:title "France budget data for year 2018"@en ; - dcterms:isPartOf ex:budget ; + dcat:inSeries ex:budget ; dcterms:issued "2019-01-01"^^xsd:date ; adms:next ex:budget-2019-fr ; dcterms:accrualPeriodicity <http://purl.org/cld/freq/annual> ; @@ -4565,7 +4603,7 @@

Dataset series metadata

ex:budget-2018-it a dcat:Dataset ; dcterms:title "Italy budget data for year 2018"@en ; - dcterms:isPartOf ex:budget ; + dcat:inSeries ex:budget ; dcterms:issued "2019-01-01"^^xsd:date ; adms:next ex:budget-2019-it ; dcterms:accrualPeriodicity <http://purl.org/cld/freq/annual> ; @@ -4595,7 +4633,7 @@

Dataset series in existing DCAT implementations

  1. The dataset series is typed as a dcat:Dataset, whereas its child datasets are typed as dcat:Distribution's.
  2. -
  3. Both the dataset series and its child datasets are typed as a dcat:Dataset's, and the two are usually linked by using the [[DCTERMS]] properties dcterms:hasPart / dcterms:isPartOf.
  4. +
  5. Both the dataset series and its child datasets are typed as a dcat:Dataset's, and the two are usually linked by using the [[DCTERMS]] properties dcat:hasSeriesMember / dcat:inSeries.

In both cases, the dataset series is sometimes soft-typed by using the [[DCTERMS]] property dcterms:type (e.g., this is the approach used in [[GeoDCAT-AP]], and adopted in [[DCAT-AP-IT]] and [[GeoDCAT-AP-IT]]).

@@ -5893,8 +5931,9 @@

Changes since the first public working draft of 17 December 2020

The other sections include only editorial changes.

  • has been updated to include the definition of the properties illustrated in .
  • +
  • has been revised making dataset series first class citizens of data catalogs and introducing new properties for linking dataset series and datasets (see issues 1272 and 1307). In particular, the class dcat:DatasetSeries and property dcat:hasSeriesMember have been minted (see ), the property dcat:inSeries has been added to .

    +
  • -
    @@ -5907,7 +5946,7 @@

    Changes since the W3C Recommendation of 4 February 2020

  • Section was extended with draft guidelines to deal with version delta (Issue #89), version release date (Issue #91), version identifier (Issue #92), version compatibility (Issue #1258) and resource status (Issue #1238).
  • -
  • A new class dcat:DatasetSeries was added (Issue #1272). Section drafts guidelines on dataset series (Issue #868) and to show related examples (Issue #806). +
  • A new section was added to draft guidelines on dataset series (Issue #868) and to show related examples (Issue #806).
  • RDF Property:dcterms:hasPart
    RDF Property:dcat:hasSeriesMember
    Definition:A child dataset that is part of the dataset series.
    Sub-property of:dcterms:hasPart
    Inverse property of:dcat:inSeries
    Usage note: Normally, child datasets in dataset series are represented as dcat:Dataset. The use of dcat:Distribution for typing child datasets is however recognized as a possible alternative, whenever it addresses more effectively the requirements of a given application scenario.