https://cacontology.projectvic.org/legal-outcomes#ChargingInstrumentShape
Validates charging instruments (complaints, indictments, informations).
Instances of cacontology-legal-outcomes:ChargingInstrument can have the following properties:
PROPERTY |
MIN COUNT |
MAX COUNT |
TYPE |
|
|---|---|---|---|---|
| cacontology-legal-outcomes:ChargingInstrument | ||||
| cacontology-legal-outcomes:chargingInstrumentCounts | 1 |
xsd:integer
|
||
| cacontology-legal-outcomes:filedDate | 1 |
xsd:date
|
||
| cacontology-legal-outcomes:supersededBy | 1 | |||
@prefix cacontology-legal-outcomes: <https://cacontology.projectvic.org/legal-outcomes#> .
@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-legal-outcomes:ChargingInstrumentShape a sh:NodeShape ;
rdfs:label "Charging Instrument Shape"@en ;
rdfs:comment "Validates charging instruments (complaints, indictments, informations)."@en ;
sh:property [ sh:datatype xsd:integer ;
sh:maxCount 1 ;
sh:message "Charging instrument counts must be a positive integer when specified."@en ;
sh:minInclusive 1 ;
sh:path cacontology-legal-outcomes:chargingInstrumentCounts ],
[ sh:datatype xsd:date ;
sh:maxCount 1 ;
sh:message "Filed date must be an xsd:date when specified."@en ;
sh:path cacontology-legal-outcomes:filedDate ],
[ sh:maxCount 1 ;
sh:message "A charging instrument may be superseded by at most one later instrument."@en ;
sh:nodeKind sh:IRI ;
sh:path cacontology-legal-outcomes:supersededBy ] ;
sh:targetClass cacontology-legal-outcomes:ChargingInstrument .