data-shapes-test-suite.tests.core.property.disjoint-001.ttl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rdf4j-shacl-testsuite Show documentation
Show all versions of rdf4j-shacl-testsuite Show documentation
Test suite for the SHACL Shapes Constraint Language
The newest version!
@prefix dash: .
@prefix ex: .
@prefix mf: .
@prefix owl: .
@prefix rdf: .
@prefix rdfs: .
@prefix sh: .
@prefix sht: .
@prefix xsd: .
ex:InvalidResource1
ex:property1 "A" ;
ex:property2 "A" ;
.
ex:InvalidResource2
ex:property1 "A" ;
ex:property1 "B" ;
ex:property2 "A" ;
.
ex:TestShape
rdf:type sh:NodeShape ;
sh:property ex:TestShape-property1 ;
sh:targetNode ex:InvalidResource1 ;
sh:targetNode ex:InvalidResource2 ;
sh:targetNode ex:ValidResource1 ;
sh:targetNode ex:ValidResource2 ;
.
ex:TestShape-property1
sh:path ex:property1 ;
sh:disjoint ex:property2 ;
.
ex:ValidResource1
ex:property1 "A" ;
ex:property2 "B" ;
.
ex:ValidResource2
ex:property1 "A" ;
ex:property1 "B" ;
ex:property2 "C" ;
ex:property2 "D" ;
.
ex:property1
rdf:type rdf:Property ;
.
ex:property2
rdf:type rdf:Property ;
.
<>
rdf:type mf:Manifest ;
mf:entries (
) ;
.
rdf:type sht:Validate ;
rdfs:label "Test of sh:disjoint at property shape 001" ;
mf:action [
sht:dataGraph <> ;
sht:shapesGraph <> ;
] ;
mf:result [
rdf:type sh:ValidationReport ;
sh:conforms "false"^^xsd:boolean ;
sh:result [
rdf:type sh:ValidationResult ;
sh:focusNode ex:InvalidResource1 ;
sh:resultPath ex:property1 ;
sh:resultSeverity sh:Violation ;
sh:sourceConstraintComponent sh:DisjointConstraintComponent ;
sh:sourceShape ex:TestShape-property1 ;
sh:value "A" ;
] ;
sh:result [
rdf:type sh:ValidationResult ;
sh:focusNode ex:InvalidResource2 ;
sh:resultPath ex:property1 ;
sh:resultSeverity sh:Violation ;
sh:sourceConstraintComponent sh:DisjointConstraintComponent ;
sh:sourceShape ex:TestShape-property1 ;
sh:value "A" ;
] ;
] ;
mf:status sht:approved ;
.