https://cacontology.projectvic.org/case-management#AccommodationMotionShape
Validation shape for accommodation motion instances.
Instances of cacontology-case:AccommodationMotion can have the following properties:
PROPERTY |
MIN COUNT |
MAX COUNT |
TYPE |
|
|---|---|---|---|---|
| cacontology-case:AccommodationMotion | ||||
| cacontology-case:preparedForWitness | 1 | 1 |
uco-identity:Person
|
|
| cacontology-case:supportsAccommodationPlan | 1 | 1 |
cacontology-case:CourtroomAccommodationPlan
|
|
| cacontology-case:CaseDocumentation | ||||
| cacontology-case:documentStatus | 1 | 1 |
xsd:string
|
|
| cacontology-case:documentType | 1 | 1 |
xsd:string
|
|
@prefix cacontology-case: <https://cacontology.projectvic.org/case-management#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
@prefix uco-identity: <https://ontology.unifiedcyberontology.org/uco/identity/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
cacontology-case:AccommodationMotionShape a sh:NodeShape ;
rdfs:label "Accommodation Motion Shape"@en ;
rdfs:comment "Validation shape for accommodation motion instances."@en ;
sh:property [ sh:class cacontology-case:CourtroomAccommodationPlan ;
sh:maxCount 1 ;
sh:message "Accommodation motion must identify the courtroom accommodation plan it supports."@en ;
sh:minCount 1 ;
sh:path cacontology-case:supportsAccommodationPlan ],
[ sh:class uco-identity:Person ;
sh:maxCount 1 ;
sh:message "Accommodation motion must identify the witness it was prepared for."@en ;
sh:minCount 1 ;
sh:path cacontology-case:preparedForWitness ] ;
sh:targetClass cacontology-case:AccommodationMotion .