https://cacontology.projectvic.org/us/ncmec#InvestigationTriggerShape
Validation shape for investigation trigger instances. - Investigation trigger must specify start time. - Referral jurisdiction must be from the allowed list. - Trigger criteria must be from the allowed list. - Urgency level must be from the allowed list. - Investigation trigger must be triggered by exactly one NCMEC tip.
Instances of cacontology-us-ncmec:InvestigationTrigger can have the following properties:
PROPERTY |
MIN COUNT |
MAX COUNT |
TYPE |
|
|---|---|---|---|---|
| cacontology-us-ncmec:InvestigationTrigger | ||||
| cacontology-us-ncmec:referralJurisdiction | 0 | 1 |
xsd:string
|
|
| cacontology-us-ncmec:triggerCriteria | 0 | 5 |
xsd:string
|
|
| cacontology-us-ncmec:triggeredBy | 1 | 1 |
cacontology-us-ncmec:NCMECCybertipReport
|
|
| cacontology-us-ncmec:urgencyLevel | 0 | 1 |
xsd:string
|
|
| 1 | 1 |
xsd:dateTime
|
||
@prefix cacontology-us-ncmec: <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-ncmec: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-ncmec: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-ncmec: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-ncmec:referralJurisdiction ],
[ rdfs:comment "Investigation trigger must be triggered by exactly one NCMEC tip."@en ;
sh:class cacontology-us-ncmec:NCMECCybertipReport ;
sh:maxCount 1 ;
sh:minCount 1 ;
sh:path cacontology-us-ncmec:triggeredBy ] ;
sh:targetClass cacontology-us-ncmec:InvestigationTrigger .