action:Technique leaf node


URI

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

Label

Technique

Description

A technique is a class of actions joined by some common characteristics. The class uco-action:Technique is a metaclass. A Technique instance is an owl:Class that is a subclass of uco-action:Action. - This property shape confirms an instance of Technique is a class that is an eventual subclass of Action. The Action class itself is not a Technique. - This shape will find violations after RDFS or OWL-RL inferencing, but might not find some violations without inferencing.

Superclasses (1)

Target Classes (1)

Shape Properties

Instances of action:Technique can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

action:Technique
action:techniqueID

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#> .

action:Technique a owl:Class,
        sh:NodeShape ;
    rdfs:label "Technique"@en ;
    rdfs:comment "A technique is a class of actions joined by some common characteristics.  The class uco-action:Technique is a metaclass.  A Technique instance is an owl:Class that is a subclass of uco-action:Action."@en ;
    rdfs:subClassOf core:UcoType ;
    sh:property [ rdfs:comment "This property shape confirms an instance of Technique is a class that is an eventual subclass of Action.  The Action class itself is not a Technique."@en ;
            sh:hasValue action:Action ;
            sh:path [ sh:oneOrMorePath rdfs:subClassOf ] ],
        [ rdfs:comment "This shape will find violations after RDFS or OWL-RL inferencing, but might not find some violations without inferencing."@en ;
            sh:nodeKind sh:Literal ;
            sh:path action:techniqueID ] ;
    sh:targetClass action:Technique .