action:ActionLifecycle


URI

https://ontology.unifiedcyberontology.org/uco/action/ActionLifecycle

Label

ActionLifecycle

Description

An action lifecycle is an action pattern consisting of an ordered set of multiple actions or subordinate action lifecycles.

Target Classes (1)

Implementation

@prefix action: <https://ontology.unifiedcyberontology.org/uco/action/> .
@prefix core: <https://ontology.unifiedcyberontology.org/uco/core/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@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#> .

action:ActionLifecycle a owl:Class,
        sh:NodeShape ;
    rdfs:label "ActionLifecycle"@en ;
    rdfs:comment "An action lifecycle is an action pattern consisting of an ordered set of multiple actions or subordinate action lifecycles."@en ;
    rdfs:subClassOf action:Action ;
    sh:property [ sh:class action:ArrayOfAction ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:nodeKind sh:IRI ;
            sh:path action:phase ],
        [ sh:class core:UcoObject ;
            sh:maxCount 0 ;
            sh:nodeKind sh:IRI ;
            sh:path action:error ],
        [ sh:datatype xsd:dateTime ;
            sh:maxCount 0 ;
            sh:nodeKind sh:Literal ;
            sh:path action:endTime ],
        [ sh:datatype xsd:dateTime ;
            sh:maxCount 0 ;
            sh:nodeKind sh:Literal ;
            sh:path action:startTime ],
        [ sh:datatype xsd:nonNegativeInteger ;
            sh:maxCount 0 ;
            sh:nodeKind sh:Literal ;
            sh:path action:actionCount ],
        [ sh:maxCount 0 ;
            sh:path action:actionStatus ] ;
    sh:targetClass action:ActionLifecycle .