Re: [dxwg] Using dcat:next and dcat:version in Dataseries (#1409)

Hello Riccardo
Thanks for your feedback.
Your proposal is crystal clear.

Many thanks 

> Le 25 févr. 2022 à 21:32, Andrea Perego ***@***.***> a écrit :
> 
> 
> @sde01 , apologies for the late reply.
> 
> The case you outline can be addressed by combining dataset series and dataset versions:
> 
> flowchart BT
> C0(ex:budget-2019-rev0)--dcat:isVersionOf-->B1
> C1(ex:budget-2019-rev1)--dcat:isVersionOf-->B1
> B0(ex:budget-2018)--dcat:inSeries-->A
> B1(ex:budget-2019)--dcat:inSeries-->A
> B2(ex:budget-2020)--dcat:inSeries-->A
> A(ex:budget)
> The link between versions is specified via property dcat:previousVersion:
> 
> flowchart RL
> C1(ex:budget-2019-rev1)--dcat:previousVersion-->C0(ex:budget-2019-rev0)
> So, Example 38 could be revised as follows:
> 
> ex:budget a dcat:DatasetSeries ;
>   dcterms:title "Budget ***@***.*** ;
>   .
>   
> ex:budget-2018 a dcat:Dataset ;
>   dcterms:title "Budget data for year ***@***.*** ;
>   dcat:inSeries ex:budget ;
>   dcterms:issued "2019-01-01"^^xsd:date ;
>   dcat:next ex:budget-2019 ;
>   .
>   
> ex:budget-2019 a dcat:Dataset ;
>   dcterms:title "Budget data for year ***@***.*** ;
>   dcat:inSeries ex:budget ;
>   dcat:currentVersion ex:budget-2019-rev1 ;
>   dcterms:issued "2020-01-01"^^xsd:date ;
>   dcat:prev ex:budget-2018 ;
>   dcat:next ex:budget-2020 ;
>   .
> 
> ex:budget-2019-rev0 a dcat:Dataset ;
>   dcterms:title "Budget data for year ***@***.*** ;
>   dcat:version "rev0" ;
>   dcat:isVersionOf ex:budget-2019 ;
>   dcterms:issued "2020-01-01"^^xsd:date ;
>   .
> 
> ex:budget-2019-rev1 a dcat:Dataset ;
>   dcterms:title "Budget data for year ***@***.*** ;
>   dcat:version "rev1" ;
>   dcat:isVersionOf ex:budget-2019 ;
>   dcat:previousVersion ex:budget-2019-rev0 ;
>   dcterms:issued "2020-05-10"^^xsd:date ;
>   .
>   
> ex:budget-2020 a dcat:Dataset ;
>   dcterms:title "Budget data for year ***@***.*** ;
>   dcat:inSeries ex:budget ;
>   dcterms:issued "2021-01-01"^^xsd:date ;
>   dcat:prev ex:budget-2019 ;
>   .
> —
> Reply to this email directly, view it on GitHub, or unsubscribe.
> Triage notifications on the go with GitHub Mobile for iOS or Android. 
> You are receiving this because you were mentioned.


-- 
GitHub Notification of comment by sde01
Please view or discuss this issue at https://github.com/w3c/dxwg/issues/1409#issuecomment-1060298742 using your GitHub account


-- 
Sent via github-notify-ml as configured in https://github.com/w3c/github-notify-ml-config

Received on Monday, 7 March 2022 08:11:31 UTC