factsmission / dcat-ap-ch-shacl

SHACL shapes for the ECH-0200 standard
Other
1 stars 5 forks source link

dcat:themeTaxonomy on the CatalogShape not mandatory on DCAT-AP-CH #13

Closed sabinem closed 3 years ago

sabinem commented 3 years ago

In the DCAT-AP-CH it is dcat:themeTaxanomy is not mandatory for the dcat:Catalog class, so the sh:minCount 1 ; should be removed in my opinion.

In your shape ech-0200.shacl.ttl it looks like this:

:CatalogShape
  rdf:type sh:NodeShape ;
  sh:name "Catalog"@en ;
  sh:targetClass dcat:Catalog ;
  ...
  sh:property [
      sh:path dcat:themeTaxonomy ;
      sh:class skos:Concept-Scheme ;
      sh:minCount 1 ;
      sh:severity sh:Warning ;
    ] ;

WDYT?