Hi
A bit confused, and need some help here. Followed @jbarrasa youtube video.
I am trying to write a SHACL script to make sure all nodes have 1 class A and 1 class B via predicate isClassifiedBy.
Data Example:
Product -> isClassifiedBy -> ClassA...
I found this in w3c SHACL example. That is exactly what i am looking for.
ex:HandShape
a sh:NodeShape ;
sh:targetClass ex:Hand ;
sh:property [
sh:path ex:digit ;
sh:maxCount 5 ;
] ;
sh:property [
sh:path ex:digit ;
sh:qualifiedValueS...