https://cacontology.projectvic.org/us/ncmec#NCMECReportAnnotationShape
Validation shape for NCMEC report annotation instances. - Annotation name should be 3-100 characters when specified. - Annotation description should be 10-500 characters when specified.
@prefix cacontology-us-ncmec1: <https://cacontology.projectvic.org/us/ncmec#> .
@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:NCMECReportAnnotationShape a sh:NodeShape ;
rdfs:label "NCMEC Report Annotation Shape"@en ;
rdfs:comment "Validation shape for NCMEC report annotation instances."@en ;
sh:property [ rdfs:comment "Annotation name should be 3-100 characters when specified."@en ;
sh:datatype xsd:string ;
sh:maxCount 1 ;
sh:maxLength 100 ;
sh:minCount 0 ;
sh:minLength 3 ;
sh:path uco-core:name ],
[ rdfs:comment "Annotation description should be 10-500 characters when specified."@en ;
sh:datatype xsd:string ;
sh:maxCount 1 ;
sh:maxLength 500 ;
sh:minCount 0 ;
sh:minLength 10 ;
sh:path uco-core:description ] ;
sh:targetClass cacontology-us-ncmec1:NCMECReportAnnotation .