-
Notifications
You must be signed in to change notification settings - Fork 64
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Errors when asking for table output in CLI #145
Comments
Hi @RiX012 Just out of curiosity, are you able to show the contents of your |
@RiX012 |
Thanks for fixing so fast. Works perfect now! No problem sharing: @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix def: <http://example.org/def/> .
@prefix nen2660: <https://w3id.org/nen2660/def#> .
def: a owl:Ontology .
nen2660:hasPart
a owl:ObjectProperty ;
.
nen2660:RealObject
a sh:NodeShape, owl:Class ;
sh:property [
sh:path nen2660:hasPart ;
sh:class nen2660:RealObject
] ;
.
def:Car
rdf:type sh:NodeShape , owl:Class ;
rdfs:subClassOf nen2660:RealObject ;
sh:property [ sh:path nen2660:hasPart ;
sh:qualifiedMinCount 1 ;
sh:qualifiedMaxCount 1 ;
sh:qualifiedValueShape [ sh:class def:Wheel ] ;
] ;
.
def:Wheel
rdf:type sh:NodeShape , owl:Class .
def:Door
rdf:type sh:NodeShape , owl:Class . |
All goes well until i ask for
table
output. Error message:I am not a coder, just trying to use the validator. What is wrong here?
The text was updated successfully, but these errors were encountered: