python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
SHACL validate existing domain and range definitions?
I want to validate the existing rdfs:domain and rdfs:range statements of an existing ontology and knowledge base with SHACL.
However it seems like it is extremely verbose to do that with SHACL.
Existi...
Konrad Höffner
Votes: 0
Answers: 1
SHACL closed shape with superclass inheritance
For example in Java, I can close off a class by declaring it as final.
It will still inherit from its superclass, however:
public abstract class Super {
final boolean test = true;
}
public final ...
Konrad Höffner
Votes: 0
Answers: 1
How to apply SHACL to subclasses instead of instances?
If I have a class, for example "Animal", then I can use SHACL to validate its instances:
:Elefant a :Animal;
:family :Elephantidae;
:order :Proboscidea.
:AnimalShape a sh:NodeShape...
Konrad Höffner
Votes: 0
Answers: 0
How to validate literal values with no datatype definition in SHACL?
I assumed that not having any datatype is implicitly the same as having xsd:string as datatype, however SHACL gives me a validation error. Is my assumption wrong or is that just not covered by SHACL? ...
Konrad Höffner
Votes: 0
Answers: 1