https://cacontology.projectvic.org/us/ncmec#InvestigationTriggerShape
Validation shape for investigation trigger instances. - Referral jurisdiction must be from the allowed list. - Urgency level must be from the allowed list. - Investigation trigger must specify start time. - Trigger criteria must be from the allowed list. - Investigation trigger must be triggered by exactly one NCMEC tip.
@prefix cacontology-us-ncmec1: <https://cacontology.projectvic.org/us/ncmec#> .
@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 uco-core: <https://ontology.unifiedcyberontology.org/uco/core/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
cacontology-us-ncmec1:InvestigationTriggerShape a sh:NodeShape ;
rdfs:label "Investigation Trigger Shape"@en ;
rdfs:comment "Validation shape for investigation trigger instances."@en ;
sh:property [ rdfs:comment "Investigation trigger must specify start time."@en ;
sh:datatype xsd:dateTime ;
sh:maxCount 1 ;
sh:minCount 1 ;
sh:path uco-core:startTime ],
[ rdfs:comment "Trigger criteria must be from the allowed list."@en ;
sh:datatype xsd:string ;
sh:in ( "content_volume" "suspect_profile" "victim_age" "repeat_offender" "imminent_danger" ) ;
sh:maxCount 5 ;
sh:minCount 0 ;
sh:path cacontology-us-ncmec1:triggerCriteria ],
[ rdfs:comment "Urgency level must be from the allowed list."@en ;
sh:datatype xsd:string ;
sh:in ( "immediate" "urgent" "routine" ) ;
sh:maxCount 1 ;
sh:minCount 0 ;
sh:path cacontology-us-ncmec1:urgencyLevel ],
[ rdfs:comment "Referral jurisdiction must be from the allowed list."@en ;
sh:datatype xsd:string ;
sh:in ( "federal" "state" "local" "international" ) ;
sh:maxCount 1 ;
sh:minCount 0 ;
sh:path cacontology-us-ncmec1:referralJurisdiction ],
[ rdfs:comment "Investigation trigger must be triggered by exactly one NCMEC tip."@en ;
sh:class cacontology-us-ncmec1:NCMECCybertipReport ;
sh:maxCount 1 ;
sh:minCount 1 ;
sh:path cacontology-us-ncmec1:triggeredBy ] ;
sh:targetClass cacontology-us-ncmec1:InvestigationTrigger .