https://cacontology.projectvic.org/multi-jurisdiction#LegalCoordinationShape
Validation shape for legal coordination instances.
@prefix cacontology-multi: <https://cacontology.projectvic.org/multi-jurisdiction#> .
@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-multi:LegalCoordinationShape a sh:NodeShape ;
rdfs:label "Legal Coordination Shape"@en ;
rdfs:comment "Validation shape for legal coordination instances."@en ;
sh:property [ sh:datatype xsd:string ;
sh:in ( "venue_determination" "charge_coordination" "plea_negotiation" "sentencing_coordination" "asset_forfeiture" "extradition" ) ;
sh:maxCount 1 ;
sh:message "Legal coordination must specify coordination purpose from the allowed list."@en ;
sh:minCount 1 ;
sh:path cacontology-multi:coordinationPurpose ],
[ sh:datatype xsd:boolean ;
sh:maxCount 1 ;
sh:message "Legal coordination must specify if prosecutor is involved."@en ;
sh:minCount 1 ;
sh:path cacontology-multi:prosecutorInvolvement ],
[ sh:datatype xsd:string ;
sh:in ( "none" "venue_conflicts" "double_jeopardy" "statute_limitations" "jurisdictional_overlap" "sovereignty_issues" ) ;
sh:maxCount 1 ;
sh:message "Jurisdictional issues must be from the allowed list."@en ;
sh:minCount 0 ;
sh:path cacontology-multi:jurisdictionalIssues ],
[ sh:datatype xsd:string ;
sh:in ( "negotiation" "mediation" "arbitration" "court_determination" "administrative_ruling" "policy_guidance" ) ;
sh:maxCount 1 ;
sh:message "Resolution mechanism must be from the allowed list."@en ;
sh:minCount 0 ;
sh:path cacontology-multi:resolutionMechanism ] ;
sh:targetClass cacontology-multi:LegalCoordination .