extract-cbd-shape
Version:
Extract an entity based on CBD and a SHACL shape
18 lines (17 loc) • 537 B
text/turtle
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/>.
@prefix ex: <http://example.org/> .
ex:Shape a sh:NodeShape ;
sh:property [
sh:path ex:subject ;
sh:minCount 1 ;
sh:node [
sh:property [
sh:path rdfs:label ;
sh:minCount 1
]
]
] .