Ontology Version: 3.0.0

cacontology-detection:ContentHashingToolGUFOShape leaf node


URI

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

Label

gUFO Content Hashing Tool Shape

Description

Validates content hashing tool instances with gUFO 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 rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
@prefix uco-tool: <https://ontology.unifiedcyberontology.org/uco/tool/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
cacontology-detection:ContentHashingToolGUFOShape a sh:NodeShape ;
    rdfs:label "gUFO Content Hashing Tool Shape"@en ;
    rdfs:comment "Validates content hashing tool instances with gUFO foundational constraints."@en ;
    sh:property [ sh:datatype xsd:string ;
            sh:maxCount 1 ;
            sh:message "Tool version must follow semantic versioning pattern (e.g., '1.0', '2.1.3')"@en ;
            sh:minCount 0 ;
            sh:path uco-tool:version ;
            sh:pattern "^[0-9]+\\.[0-9]+(\\.[0-9]+)?$" ] ;
    sh:targetClass cacontology-detection:ContentHashingTool .