Ontology Version: 2.2.0

cacontology-us-ncmec1:ConfidenceValidationShape leaf node


URI

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

Label

Confidence Validation Shape

Description

Validates confidence level consistency.

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 xsd: <http://www.w3.org/2001/XMLSchema#> .
cacontology-us-ncmec1:ConfidenceValidationShape a sh:NodeShape ;
    rdfs:label "Confidence Validation Shape"@en ;
    rdfs:comment "Validates confidence level consistency."@en ;
    sh:sparql [ sh:message "High confidence analysis should have supporting evidence."@en ;
            sh:prefixes [ sh:declare [ sh:namespace "https://cacontology.projectvic.org/us/ncmec#"^^xsd:anyURI ;
                            sh:prefix "icacus" ] ] ;
            sh:select """
            SELECT $this WHERE {
                $this cacontology-us-ncmec:analysisConfidence "high" .
                FILTER NOT EXISTS {
                    $this cacontology-us-ncmec:supportedBy ?cooperation .
                    ?cooperation a cacontology-us-ncmec:PlatformCooperation .
                }
            }
        """ ] ;
    sh:targetClass cacontology-us-ncmec1:AccountLinking,
        cacontology-us-ncmec1:CyberTipAnalysis .