https://unifiedcyberontology.org/ontology/uco/action#ActionLifecycle
Instances of action:ActionLifecycle can have the following properties:
@prefix action: <https://unifiedcyberontology.org/ontology/uco/action#> .
@prefix core: <https://unifiedcyberontology.org/ontology/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 vocabulary: <https://unifiedcyberontology.org/ontology/uco/vocabulary#> .
@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:BlankNodeOrIRI ;
sh:path action:phase ],
[ sh:class core:UcoObject ;
sh:maxCount 0 ;
sh:nodeKind sh:BlankNodeOrIRI ;
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:datatype vocabulary:ActionStatusTypeVocab ;
sh:maxCount 0 ;
sh:nodeKind sh:Literal ;
sh:path action:actionStatus ] ;
sh:targetClass action:ActionLifecycle .