Ontology Version: 2.7.0

cacontology-hotlines:HotlineReportShape leaf node


URI

https://cacontology.projectvic.org/hotlines/core#HotlineReportShape

Label

Hotline Report Shape

Description

Enhanced SHACL shape for hotline reports with gUFO Situation validation and comprehensive temporal constraints.

Implementation

@prefix cacontology-hotlines: <https://cacontology.projectvic.org/hotlines/core#> .
@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-hotlines:HotlineReportShape a sh:NodeShape ;
    rdfs:label "Hotline Report Shape"@en ;
    rdfs:comment "Enhanced SHACL shape for hotline reports with gUFO Situation validation and comprehensive temporal constraints."@en ;
    sh:property [ sh:message "A hotline report must have at least one reporter"@en ;
            sh:minCount 1 ;
            sh:path cacontology-hotlines:reportedBy ],
        [ sh:class cacontology-hotlines:HotlineOrganization ;
            sh:message "A hotline report must be received by a hotline organization"@en ;
            sh:minCount 1 ;
            sh:path cacontology-hotlines:receivedBy ],
        [ sh:class cacontology-hotlines:EvidenceItem ;
            sh:message "A hotline report must have at least one evidence item"@en ;
            sh:minCount 1 ;
            sh:path cacontology-hotlines:hasEvidence ],
        [ sh:class cacontology-hotlines:IntakeChannel ;
            sh:message "A hotline report must specify its intake channel"@en ;
            sh:minCount 1 ;
            sh:path cacontology-hotlines:intakeChannel ],
        [ sh:message "A hotline report must have a status"@en ;
            sh:minCount 1 ;
            sh:path cacontology-hotlines:status ],
        [ sh:hasValue gufo:Situation ;
            sh:message "Hotline reports must be instances of gUFO Situation"@en ;
            sh:path rdf:type ],
        [ sh:class gufo:Phase ;
            sh:message "A hotline report must have a current operational phase"@en ;
            sh:minCount 1 ;
            sh:path cacontology-hotlines:currentPhase ],
        [ sh:class cacontology-hotlines:MultiAgencyCoordination ;
            sh:message "Multi-agency coordination must be a valid gUFO Situation"@en ;
            sh:path cacontology-hotlines:involvesCoordination ] ;
    sh:targetClass cacontology-hotlines:HotlineReport .