- From: Nicholas Car via GitHub <sysbot+gh@w3.org>
- Date: Mon, 30 Sep 2019 06:43:17 +0000
- To: public-dxwg-wg@w3.org
Something like this @kcoyle:
```
<https://www.w3.org/TR/vocab-dcat-2/>
a dct:Standard ;
dct:title "Data Catalog Vocabulary (DCAT) - Version 2" ;
prof:hasResource [ # SHACL validator
prof:hasRole <http://www.w3.org/ns/dx/prof/role/Validation> ;
prof:hasArtifact <a-SHACL-file-somewhere> ;
dct:conformsTo <https://www.w3.org/TR/shacl/> ;
dct:format <https://w3id.org/mediatypes/text/turtle> ;
] ;
prof:hasResource [ # ShEx validator
prof:hasRole <http://www.w3.org/ns/dx/prof/role/Validation> ;
prof:hasArtifact <a-ShEx-file-somewhere> ;
dct:conformsTo <http://shex.io/shex-semantics/index.html> ;
dct:format <https://w3id.org/mediatypes/text/shex> ;
] ;
prof:hasResource [
prof:hasRole <http://www.w3.org/ns/dx/prof/role/Guidance> ;
prof:hasArtifact <https://www.w3.org/TR/vocab-dcat-2/> ; # yes, the Standard's URI is also its Guidance artifact
dct:format <https://w3id.org/mediatypes/text/html> ;
dct:conformsTo <https://www.w3.org/TR/> ; # Andrea knows a better link to indicate conformance to W3C Recs
] ;
prof:hasResource [ # converter from DCAT rev to DCAT 2014
dct:description "This SHACL file converts DCAT 2014 content to DCAT rev content" ;
# we (PROF) are still discussing mapping from & to annotations
prof:hasRole <http://www.w3.org/ns/dx/prof/role/Mapping> ;
prof:hasArtifact <yet-another-SHACL-file-somewhere> ;
dct:conformsTo <https://www.w3.org/TR/shacl/> ;
dct:format <https://w3id.org/mediatypes/text/turtle> ;
] ;
.
<https://www.w3.org/TR/2014/REC-vocab-dcat-20140116/>
a prof:Profile ;
dct:title "Data Catalog Vocabulary (DCAT)" ;
prof:isProfileOf <https://www.w3.org/TR/vocab-dcat-2/> .
prof:hasResource [
prof:hasRole <http://www.w3.org/ns/dx/prof/role/Validation> ;
prof:hasArtifact <a-different-SHACL-file-somewhere> ;
dct:format <https://w3id.org/mediatypes/text/turtle> ;
dct:conformsTo <https://www.w3.org/TR/shacl/> ;
] ;
```
--
GitHub Notification of comment by nicholascar
Please view or discuss this issue at https://github.com/w3c/dxwg/issues/144#issuecomment-536424717 using your GitHub account
Received on Monday, 30 September 2019 06:43:18 UTC