data-shapes-test-suite.tests.core.property.lessThanOrEquals-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 5 ;
ex:property2 4 ;
.
ex:InvalidResource2
ex:property1 4 ;
ex:property1 6 ;
ex:property2 5 ;
.
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 ;
sh:targetNode ex:ValidResource3 ;
.
ex:TestShape-property1
sh:path ex:property1 ;
sh:lessThanOrEquals ex:property2 ;
.
ex:ValidResource1
ex:property1 4 ;
ex:property2 6 ;
.
ex:ValidResource2
ex:property1 3.1 ;
ex:property1 3.2 ;
.
ex:ValidResource3
ex:property1 5 ;
ex:property2 5 ;
.
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:lessThanOrEquals 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:LessThanOrEqualsConstraintComponent ;
sh:sourceShape ex:TestShape-property1 ;
sh:value 5 ;
] ;
sh:result [
rdf:type sh:ValidationResult ;
sh:focusNode ex:InvalidResource2 ;
sh:resultPath ex:property1 ;
sh:resultSeverity sh:Violation ;
sh:sourceConstraintComponent sh:LessThanOrEqualsConstraintComponent ;
sh:sourceShape ex:TestShape-property1 ;
sh:value 6 ;
] ;
] ;
mf:status sht:approved ;
.