https://cacontology.projectvic.org/detection#ContentHashingToolGUFOShape
Validates content hashing tool instances with gUFO foundational constraints.
Instances of cacontology-detection:ContentHashingTool can have the following properties:
PROPERTY |
MIN COUNT |
MAX COUNT |
TYPE |
|---|
@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-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:hasValue gufo:Object ;
sh:message "Content hashing tool must be typed as gUFO Object"@en ;
sh:minCount 1 ;
sh:path rdf:type ],
[ 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 .