Ontology Version: 2.2.0

cacontology-physical-shapes:PhysicalEvidenceObjectTypeValidationShape leaf node


URI

https://cacontology.projectvic.org/physical-evidence/shapes#PhysicalEvidenceObjectTypeValidationShape

Label

Physical Evidence Object Type Validation Shape

Description

Validates gUFO Object type consistency for physical evidence.

Implementation

@prefix cacontology-physical-shapes: <https://cacontology.projectvic.org/physical-evidence/shapes#> .
@prefix cacontology-physical1: <https://cacontology.projectvic.org/physical-evidence#> .
@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-physical-shapes:PhysicalEvidenceObjectTypeValidationShape a sh:NodeShape ;
    rdfs:label "Physical Evidence Object Type Validation Shape"@en ;
    rdfs:comment "Validates gUFO Object type consistency for physical evidence."@en ;
    sh:property [ sh:hasValue gufo:Object ;
            sh:message "Physical evidence must be typed as gUFO Object."@en ;
            sh:minCount 1 ;
            sh:path rdf:type ],
        [ sh:hasValue gufo:Object ;
            sh:message "Physical evidence class should extend gUFO Object."@en ;
            sh:minCount 0 ;
            sh:path rdfs:subClassOf ] ;
    sh:targetClass cacontology-physical1:PhysicalEvidence .