Ontology Version: 2.7.0

cacontology-legal-shapes:ComplianceDocumentationArtifactShape leaf node


URI

https://cacontology.projectvic.org/legal-harmonization/shapes#ComplianceDocumentationArtifactShape

Label

Compliance Documentation Artifact Shape

Description

Validates compliance documentation artifacts and their verification status.

Shape Properties

Instances of cacontology-legal:ComplianceDocumentationArtifact can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

cacontology-legal:ComplianceDocumentationArtifact
cacontology-legal:verificationStatus 0 1 xsd:string
1

Implementation

@prefix cacontology-legal: <https://cacontology.projectvic.org/legal-harmonization#> .
@prefix cacontology-legal-shapes: <https://cacontology.projectvic.org/legal-harmonization/shapes#> .
@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 xsd: <http://www.w3.org/2001/XMLSchema#> .
cacontology-legal-shapes:ComplianceDocumentationArtifactShape a sh:NodeShape ;
    rdfs:label "Compliance Documentation Artifact Shape"@en ;
    rdfs:comment "Validates compliance documentation artifacts and their verification status."@en ;
    sh:property [ sh:hasValue gufo:Kind ;
            sh:message "Compliance documentation artifacts must be classified as gUFO Kind"@en ;
            sh:minCount 1 ;
            sh:path rdf:type ;
            sh:severity sh:Violation ],
        [ sh:datatype xsd:string ;
            sh:in ( "verified" "unverified" "contested" "unknown" ) ;
            sh:maxCount 1 ;
            sh:message "Verification status must be from allowed list when present."@en ;
            sh:minCount 0 ;
            sh:path cacontology-legal:verificationStatus ;
            sh:severity sh:Info ] ;
    sh:targetClass cacontology-legal:ComplianceDocumentationArtifact .