https://cacontology.projectvic.org/us/ncmec#NCMECIncidentTypeShape
Validation shape for NCMEC incident type instances. - Incident code must be from the allowed NCMEC list. - Incident type must have a name (5-100 characters).
Instances of cacontology-us-ncmec:NCMECIncidentType can have the following properties:
PROPERTY |
MIN COUNT |
MAX COUNT |
TYPE |
|
|---|---|---|---|---|
| cacontology-us-ncmec:NCMECIncidentType | ||||
| cacontology-us-ncmec:incidentCode | 1 | 1 |
xsd:string
|
|
| 1 | 1 |
xsd:string
|
||
@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:NCMECIncidentTypeShape a sh:NodeShape ;
rdfs:label "NCMEC Incident Type Shape"@en ;
rdfs:comment "Validation shape for NCMEC incident type instances."@en ;
sh:property [ rdfs:comment "Incident type must have a name (5-100 characters)."@en ;
sh:datatype xsd:string ;
sh:maxCount 1 ;
sh:maxLength 100 ;
sh:minCount 1 ;
sh:minLength 5 ;
sh:path uco-core:name ],
[ rdfs:comment "Incident code must be from the allowed NCMEC list."@en ;
sh:datatype xsd:string ;
sh:in ( "CST" "OE" "CSAM" "CP" "MISC" ) ;
sh:maxCount 1 ;
sh:minCount 1 ;
sh:path cacontology-us-ncmec:incidentCode ] ;
sh:targetClass cacontology-us-ncmec:NCMECIncidentType .