https://cacontology.projectvic.org/usa-legislative/shapes#LegislativeStageShape
Validates U.S. legislative stage instances as gUFO Phases.
Instances of cacontology-usa-leg:LegislativeStage can have the following properties:
@prefix cacontology-usa-leg: <https://cacontology.projectvic.org/usa-legislative#> .
@prefix cacontology-usa-leg-shapes: <https://cacontology.projectvic.org/usa-legislative/shapes#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
cacontology-usa-leg-shapes:LegislativeStageShape a sh:NodeShape ;
rdfs:label "Legislative Stage Shape"@en ;
rdfs:comment "Validates U.S. legislative stage instances as gUFO Phases."@en ;
sh:property [ sh:datatype xsd:integer ;
sh:maxCount 1 ;
sh:maxInclusive 10 ;
sh:message "Legislative stage should have a stage order (1-10)"@en ;
sh:minCount 1 ;
sh:minInclusive 1 ;
sh:path cacontology-usa-leg:stageOrder ;
sh:severity sh:Warning ],
[ sh:datatype rdf:langString ;
sh:message "Legislative stage must have a label"@en ;
sh:minCount 1 ;
sh:path rdfs:label ;
sh:severity sh:Violation ],
[ sh:datatype xsd:boolean ;
sh:maxCount 1 ;
sh:message "Legislative stage may indicate if it is a final stage"@en ;
sh:path cacontology-usa-leg:isFinal ;
sh:severity sh:Info ] ;
sh:targetClass cacontology-usa-leg:LegislativeStage .