https://cacontology.projectvic.org/taskforce#IcacTaskForceShape
Validation shape for ICAC task force instances.
Instances of cacontology-taskforce:ICACtaskForce can have the following properties:
PROPERTY |
MIN COUNT |
MAX COUNT |
TYPE |
|---|
@prefix cacontology-taskforce: <https://cacontology.projectvic.org/taskforce#> .
@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-taskforce:IcacTaskForceShape a sh:NodeShape ;
rdfs:label "CAC Task Force Shape"@en ;
rdfs:comment "Validation shape for ICAC task force instances."@en ;
sh:property [ sh:datatype xsd:string ;
sh:in ( "northeast" "southeast" "midwest" "southwest" "west" "northwest" "central" "national" ) ;
sh:maxCount 1 ;
sh:message "ICAC task force must specify ICAC region from the allowed list."@en ;
sh:minCount 1 ;
sh:path cacontology-taskforce:icacRegion ],
[ sh:datatype xsd:string ;
sh:maxCount 1 ;
sh:maxLength 50 ;
sh:message "ICAC task force must specify grant number (5-50 characters)."@en ;
sh:minCount 1 ;
sh:minLength 5 ;
sh:path cacontology-taskforce:grantNumber ],
[ sh:datatype xsd:string ;
sh:in ( "compliant" "non_compliant" "conditional" "under_review" "probationary" "suspended" ) ;
sh:maxCount 1 ;
sh:message "ICAC task force must specify compliance status from the allowed list."@en ;
sh:minCount 1 ;
sh:path cacontology-taskforce:complianceStatus ] ;
sh:targetClass cacontology-taskforce:IcacTaskForce .