action:Action


URI

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

Label

Action

Description

An action is something that may be done or performed.

Superclasses (2)

Target Classes (1)

Implementation

@prefix action: <https://ontology.unifiedcyberontology.org/uco/action/> .
@prefix core: <https://ontology.unifiedcyberontology.org/uco/core/> .
@prefix location: <https://ontology.unifiedcyberontology.org/uco/location/> .
@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:Action a owl:Class,
        sh:NodeShape ;
    rdfs:label "Action"@en ;
    rdfs:comment "An action is something that may be done or performed."@en ;
    rdfs:isDefinedBy <https://ontology.unifiedcyberontology.org/uco/action> ;
    rdfs:subClassOf core:UcoObject ;
    owl:disjointWith core:Event ;
    sh:property [ sh:class action:Action ;
            sh:nodeKind sh:IRI ;
            sh:path action:subaction ],
        [ sh:class core:UcoObject ;
            sh:maxCount 1 ;
            sh:nodeKind sh:IRI ;
            sh:path action:environment ],
        [ sh:class core:UcoObject ;
            sh:maxCount 1 ;
            sh:nodeKind sh:IRI ;
            sh:path action:performer ],
        [ sh:class core:UcoObject ;
            sh:nodeKind sh:IRI ;
            sh:path action:error ],
        [ sh:class core:UcoObject ;
            sh:nodeKind sh:IRI ;
            sh:path action:instrument ],
        [ sh:class core:UcoObject ;
            sh:nodeKind sh:IRI ;
            sh:path action:object ],
        [ sh:class core:UcoObject ;
            sh:nodeKind sh:IRI ;
            sh:path action:participant ],
        [ sh:class core:UcoObject ;
            sh:nodeKind sh:IRI ;
            sh:path action:result ],
        [ sh:class location:Location ;
            sh:nodeKind sh:IRI ;
            sh:path action:location ],
        [ sh:datatype xsd:dateTime ;
            sh:maxCount 1 ;
            sh:nodeKind sh:Literal ;
            sh:path action:endTime ],
        [ sh:datatype xsd:dateTime ;
            sh:maxCount 1 ;
            sh:nodeKind sh:Literal ;
            sh:path action:startTime ],
        [ sh:datatype xsd:nonNegativeInteger ;
            sh:maxCount 1 ;
            sh:nodeKind sh:Literal ;
            sh:path action:actionCount ],
        [ sh:datatype xsd:string ;
            sh:message "As of UCO 1.4.0, the datatype to use for action:actionStatus should be xsd:string.  Not using xsd:string will be an error in UCO 2.0.0." ;
            sh:path action:actionStatus ;
            sh:severity sh:Warning ],
        [ sh:maxCount 1 ;
            sh:nodeKind sh:Literal ;
            sh:path action:actionStatus ],
        action:Action-actionStatus-in-shape ;
    sh:targetClass action:Action .