Ontology Version: 3.0.0

cacontology-enterprises:MembershipTierShape leaf node


URI

https://cacontology.projectvic.org/extremist-enterprises#MembershipTierShape

Label

MembershipTierShape

Shape Properties

Instances of cacontology-enterprises:MembershipTier can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

cacontology-enterprises:MembershipTier
cacontology-enterprises:accessLevel 1 xsd:string
cacontology-enterprises:membershipLevel 1 xsd:string
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
cacontology-enterprises:EnterpriseHierarchy
cacontology-enterprises:hierarchyComplexity 1 xsd:string

Implementation

@prefix cacontology-enterprises: <https://cacontology.projectvic.org/extremist-enterprises#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
cacontology-enterprises:MembershipTierShape a sh:NodeShape ;
    sh:property [ sh:datatype xsd:string ;
            sh:in ( "novice" "member" "advanced" "inner_core" "leader" ) ;
            sh:maxCount 1 ;
            sh:message "Membership level must be valid tier."@en ;
            sh:path cacontology-enterprises:membershipLevel ],
        [ sh:datatype xsd:string ;
            sh:in ( "restricted" "basic" "enhanced" "privileged" "full" ) ;
            sh:maxCount 1 ;
            sh:message "Access level must be valid level."@en ;
            sh:path cacontology-enterprises:accessLevel ] ;
    sh:targetClass cacontology-enterprises:MembershipTier .