Ontology Version: 3.0.0

cacontology-educational-shapes:EmploymentPhaseGUFOShape leaf node


URI

https://cacontology.projectvic.org/educational/shapes#EmploymentPhaseGUFOShape

Label

gUFO Employment Phase Shape

Description

Validates employment phase instances with gUFO anti-rigidity constraints and employment lifecycle modeling.

Shape Properties

Instances of cacontology-educational:EmploymentPhase can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

cac-core:Phase
cacontology-infrastructure:hasPhaseBeginPoint 1 xsd:dateTimeStamp
cacontology-infrastructure:hasPhaseEndPoint 1 xsd:dateTimeStamp
cacontology-multi:hasCoordinationPhaseBeginPoint 1 xsd:dateTimeStamp
cacontology-multi:hasCoordinationPhaseEndPoint 1 xsd:dateTimeStamp
cacontology-partnerships:hasPhaseBeginPoint 1 xsd:dateTimeStamp
cacontology-partnerships:hasPhaseEndPoint 1 xsd:dateTimeStamp
cacontology-physical:hasPhaseBeginPoint 1 xsd:dateTimeStamp
cacontology-physical:hasPhaseEndPoint 1 xsd:dateTimeStamp
cacontology-production:hasProductionPhaseBeginPoint 0 1 xsd:dateTimeStamp
cacontology-production:hasProductionPhaseEndPoint 0 1 xsd:dateTimeStamp
cacontology-temporal:hasLegalDeadline 1 xsd:dateTimeStamp
cacontology-temporal:hasMaximumDuration 1 xsd:duration
cacontology-temporal:hasMinimumDuration 1 xsd:duration
cacontology-temporal:hasTypicalDuration 1 xsd:duration
cacontology-temporal:phaseCompletionRate 1 xsd:decimal
cacontology-temporal:phaseEfficiency 1 xsd:decimal
cacontology-temporal:urgencyLevel 1 xsd:integer
cacontology:hasPhaseBeginPoint 1 xsd:dateTimeStamp
cacontology:hasPhaseEndPoint 1 xsd:dateTimeStamp

Implementation

@prefix cacontology-educational: <https://cacontology.projectvic.org/educational#> .
@prefix cacontology-educational-shapes: <https://cacontology.projectvic.org/educational/shapes#> .
@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-educational-shapes:EmploymentPhaseGUFOShape a sh:NodeShape ;
    rdfs:label "gUFO Employment Phase Shape"@en ;
    rdfs:comment "Validates employment phase instances with gUFO anti-rigidity constraints and employment lifecycle modeling."@en ;
    sh:property [ sh:datatype xsd:string ;
            sh:in ( "active" "probationary" "suspended" "terminated" "resigned" "retired" ) ;
            sh:message "Employment status must be from valid status list"@en ;
            sh:path cacontology-educational:employmentStatus ],
        [ sh:datatype xsd:string ;
            sh:in ( "full_time" "part_time" "substitute" "contract" "temporary" "volunteer" ) ;
            sh:message "Employment type must be from valid type list"@en ;
            sh:path cacontology-educational:employmentType ] ;
    sh:targetClass cacontology-educational:EmploymentPhase .