Ontology Version: 2.2.0

cacontology-detection:DetectionToolGUFOShape leaf node


URI

https://cacontology.projectvic.org/detection#DetectionToolGUFOShape

Label

gUFO Detection Tool Shape

Description

Validates detection tools as gUFO Objects with foundational constraints.

Shape Properties

Instances of cacontology-detection:ContentHashingTool can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

Implementation

@prefix cacontology-detection: <https://cacontology.projectvic.org/detection#> .
@prefix gufo: <http://purl.org/nemo/gufo#> .
@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-core: <https://ontology.unifiedcyberontology.org/uco/core/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
cacontology-detection:DetectionToolGUFOShape a sh:NodeShape ;
    rdfs:label "gUFO Detection Tool Shape"@en ;
    rdfs:comment "Validates detection tools as gUFO Objects with foundational constraints."@en ;
    sh:property [ sh:hasValue gufo:Object ;
            sh:message "Detection tool must be typed as gUFO Object"@en ;
            sh:minCount 1 ;
            sh:path rdf:type ],
        [ sh:datatype xsd:string ;
            sh:maxCount 1 ;
            sh:maxLength 100 ;
            sh:message "Detection tool must have a name (2-100 characters)"@en ;
            sh:minCount 1 ;
            sh:minLength 2 ;
            sh:path uco-core:name ] ;
    sh:targetClass cacontology-detection:ContentHashingTool,
        cacontology-detection:DatabaseMatchingTool,
        cacontology-detection:MachineLearningDetectionTool,
        cacontology-detection:ManualReviewTool .