Ontology Version: 2.2.0

cacontology-us-ncmec1:TipProcessingShape leaf node


URI

https://cacontology.projectvic.org/us/ncmec#TipProcessingShape

Label

Tip Processing Shape

Description

Validation shape for tip processing instances. - Tip processing must specify start time. - Tip processing must process exactly one NCMEC tip. - Tip processing may specify end time. - Processing time must be between 0.1 and 720 hours (30 days).

Implementation

@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:TipProcessingShape a sh:NodeShape ;
    rdfs:label "Tip Processing Shape"@en ;
    rdfs:comment "Validation shape for tip processing instances."@en ;
    sh:property [ rdfs:comment "Tip processing must specify start time."@en ;
            sh:datatype xsd:dateTime ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:path uco-core:startTime ],
        [ rdfs:comment "Tip processing may specify end time."@en ;
            sh:datatype xsd:dateTime ;
            sh:maxCount 1 ;
            sh:minCount 0 ;
            sh:path uco-core:endTime ],
        [ rdfs:comment "Processing time must be between 0.1 and 720 hours (30 days)."@en ;
            sh:datatype xsd:decimal ;
            sh:maxCount 1 ;
            sh:maxInclusive 720.0 ;
            sh:minCount 0 ;
            sh:minInclusive 0.1 ;
            sh:path cacontology-us-ncmec1:processingTime ],
        [ rdfs:comment "Tip processing must process exactly one NCMEC tip."@en ;
            sh:class cacontology-us-ncmec1:NCMECCybertipReport ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:path cacontology-us-ncmec1:processedTip ] ;
    sh:targetClass cacontology-us-ncmec1:TipProcessing .