Ontology Version: 2.2.0

cacontology-us-ncmec1:PhoneNumberTraceShape leaf node


URI

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

Label

Phone Number Trace Shape

Description

Validation shape for phone number trace instances. - Phone trace must trace to exactly one phone number. - Phone verification status must be from the allowed list.

Implementation

@prefix cacontology-us-ncmec1: <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-observable: <https://ontology.unifiedcyberontology.org/uco/observable/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
cacontology-us-ncmec1:PhoneNumberTraceShape a sh:NodeShape ;
    rdfs:label "Phone Number Trace Shape"@en ;
    rdfs:comment "Validation shape for phone number trace instances."@en ;
    sh:property [ rdfs:comment "Phone verification status must be from the allowed list."@en ;
            sh:datatype xsd:string ;
            sh:in ( "verified" "unverified" "disconnected" ) ;
            sh:maxCount 1 ;
            sh:minCount 0 ;
            sh:path cacontology-us-ncmec1:phoneVerificationStatus ],
        [ rdfs:comment "Phone trace must trace to exactly one phone number."@en ;
            sh:class uco-observable:PhoneNumber ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:path cacontology-us-ncmec1:tracedToPhone ] ;
    sh:targetClass cacontology-us-ncmec1:PhoneNumberTrace .