Ontology Version: 2.2.0

cacontology-case:IntakeWorkflowShape leaf node


URI

https://cacontology.projectvic.org/case-management#IntakeWorkflowShape

Label

Intake Workflow Shape

Description

Enhanced validation shape for intake workflow with gUFO Event validation and specialized temporal modeling.

Target Classes (1)

Shape Properties

Instances of cacontology-case:IntakeWorkflow can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

cacontology-case:IntakeWorkflow
cacontology-gufo:intakeBeginTime 1 1 xsd:dateTime
cacontology-gufo:triageCompletionTime 0 1 xsd:dateTime
cacontology-case:CaseWorkflow
cacontology-case:workflowStage 1 1 xsd:string
cacontology-gufo:workflowBeginTime 1 1 xsd:dateTime
cacontology-gufo:workflowEndTime 0 1 xsd:dateTime

Implementation

@prefix cacontology-case: <https://cacontology.projectvic.org/case-management#> .
@prefix cacontology-gufo: <https://cacontology.projectvic.org/gufo#> .
@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-case:IntakeWorkflowShape a sh:NodeShape ;
    rdfs:label "Intake Workflow Shape"@en ;
    rdfs:comment "Enhanced validation shape for intake workflow with gUFO Event validation and specialized temporal modeling."@en ;
    sh:property [ sh:datatype xsd:dateTime ;
            sh:maxCount 1 ;
            sh:message "Intake workflow must specify intake begin time"@en ;
            sh:minCount 1 ;
            sh:path cacontology-gufo:intakeBeginTime ],
        [ sh:datatype xsd:dateTime ;
            sh:maxCount 1 ;
            sh:message "Intake workflow may specify triage completion time"@en ;
            sh:minCount 0 ;
            sh:path cacontology-gufo:triageCompletionTime ] ;
    sh:targetClass cacontology-case:IntakeWorkflow .