@prefix sh: <http://www.w3.org/ns/shacl#> .
@prefix schema: <https://schema.org/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

<https://packrift-catalog-knowledge-graph.vercel.app/shape/ProductNodeShape>
  a sh:NodeShape ;
  sh:targetClass schema:Product ;
  sh:property [ sh:path schema:name ; sh:minCount 1 ; sh:datatype xsd:string ] ;
  sh:property [ sh:path schema:sku ; sh:minCount 1 ; sh:datatype xsd:string ] ;
  sh:property [ sh:path schema:url ; sh:minCount 1 ] .
