- From: Andrea Perego via GitHub <sysbot+gh@w3.org>
- Date: Fri, 15 Feb 2019 22:36:01 +0000
- To: public-dxwg-wg@w3.org
@davebrowning , I see your point, but what has changed is the version of software/API used, and this can already be specified via `dct:conformsTo`.
E.g., the following is a service conformant with CSW 2.0.2:
````turtle
a:Service a dcat:DataService ;
dct:conformsTo <http://www.opengis.net/def/serviceType/ogc/csw/2.0.2> .
````
If the service is switched to the latest version of the CSW specification, its description would be:
````turtle
a:Service a dcat:DataService ;
dct:conformsTo <http://www.opengis.net/def/serviceType/ogc/csw/3.0> .
````
The version here does not concern the service, but the reference specifications:
````turtle
<http://www.opengis.net/def/serviceType/ogc/csw> a dct:Standard ;
dct:hasVersion <http://www.opengis.net/def/serviceType/ogc/csw/2.0.2> ,
<http://www.opengis.net/def/serviceType/ogc/csw/3.0>
<http://www.opengis.net/def/serviceType/ogc/csw/2.0.2> a dct:Standard ;
dct:isVersionOf <http://www.opengis.net/def/serviceType/ogc/csw> .
<http://www.opengis.net/def/serviceType/ogc/csw/3.0> a dct:Standard ;
dct:isVersionOf <http://www.opengis.net/def/serviceType/ogc/csw> .
````
--
GitHub Notification of comment by andrea-perego
Please view or discuss this issue at https://github.com/w3c/dxwg/issues/93#issuecomment-464230063 using your GitHub account
Received on Friday, 15 February 2019 22:36:03 UTC