Ontology Version: 3.0.0

cacontology-us-ncmec:DataQualityShape leaf node


URI

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

Label

Data Quality Shape

Description

Validates data quality for NCMEC entities. - Creation time should be specified when available. - Modification time should be specified when available.

Shape Properties

Instances of cacontology-us-ncmec:TipProcessing can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

cacontology-us-ncmec:TipProcessing
cacontology-us-ncmec:processedTip 1 1 cacontology-us-ncmec:NCMECCybertipReport
cacontology-us-ncmec:processingTime 0 1 xsd:decimal
0 1 xsd:dateTime
1 1 xsd:dateTime

Implementation

@prefix cacontology-us-ncmec: <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-ncmec:DataQualityShape a sh:NodeShape ;
    rdfs:label "Data Quality Shape"@en ;
    rdfs:comment "Validates data quality for NCMEC entities."@en ;
    sh:property [ rdfs:comment "Creation time should be specified when available."@en ;
            sh:datatype xsd:dateTime ;
            sh:maxCount 1 ;
            sh:minCount 0 ;
            sh:path uco-core:createdTime ],
        [ rdfs:comment "Modification time should be specified when available."@en ;
            sh:datatype xsd:dateTime ;
            sh:maxCount 1 ;
            sh:minCount 0 ;
            sh:path uco-core:modifiedTime ] ;
    sh:targetClass cacontology-us-ncmec:CyberTipAnalysis,
        cacontology-us-ncmec:InvestigationTrigger,
        cacontology-us-ncmec:NCMECCybertipReport,
        cacontology-us-ncmec:PlatformCooperation,
        cacontology-us-ncmec:TipProcessing .