https://cacontology.projectvic.org/platforms#EmergencyDisclosureRequestShape
Validation shape for emergency disclosure request instances (EDR).
Instances of cacontology-platforms:EmergencyDisclosureRequest can have the following properties:
PROPERTY |
MIN COUNT |
MAX COUNT |
TYPE |
|---|
@prefix cacontology-platforms: <https://cacontology.projectvic.org/platforms#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
@prefix uco-core: <https://ontology.unifiedcyberontology.org/uco/core/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
cacontology-platforms:EmergencyDisclosureRequestShape a sh:NodeShape ;
rdfs:label "Emergency Disclosure Request Shape"@en ;
rdfs:comment "Validation shape for emergency disclosure request instances (EDR)."@en ;
sh:property [ sh:datatype xsd:dateTime ;
sh:maxCount 1 ;
sh:message "Emergency disclosure request must specify start time."@en ;
sh:minCount 1 ;
sh:path uco-core:startTime ],
[ sh:datatype xsd:string ;
sh:maxCount 1 ;
sh:maxLength 2000 ;
sh:message "Emergency disclosure request must include a grounded description (10-2000 chars)."@en ;
sh:minCount 1 ;
sh:minLength 10 ;
sh:path uco-core:description ] ;
sh:targetClass cacontology-platforms:EmergencyDisclosureRequest .