Ontology Version: 2.2.0

cacontology-detection:DetectionDataQualityShape leaf node


URI

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

Label

Detection Data Quality Shape

Description

Validates data quality for detection tool entities.

Shape Properties

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

PROPERTY

MIN COUNT

MAX COUNT

TYPE

Implementation

@prefix cacontology-detection: <https://cacontology.projectvic.org/detection#> .
@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:DetectionDataQualityShape a sh:NodeShape ;
    rdfs:label "Detection Data Quality Shape"@en ;
    rdfs:comment "Validates data quality for detection tool entities."@en ;
    sh:property [ sh:datatype xsd:string ;
            sh:maxCount 1 ;
            sh:maxLength 100 ;
            sh:message "Tool name must be between 2 and 100 characters"@en ;
            sh:minCount 1 ;
            sh:minLength 2 ;
            sh:path uco-core:name ],
        [ sh:datatype xsd:string ;
            sh:maxCount 1 ;
            sh:maxLength 1000 ;
            sh:message "Tool description should be between 10 and 1000 characters when provided"@en ;
            sh:minCount 0 ;
            sh:minLength 10 ;
            sh:path uco-core:description ] ;
    sh:targetClass cacontology-detection:ContentHashingTool,
        cacontology-detection:DatabaseMatchingTool,
        cacontology-detection:MachineLearningDetectionTool,
        cacontology-detection:ManualReviewTool .