attack:DefensePattern leaf node


URI

https://ontology.adversaryengagement.org/ae/attack/DefensePattern

Label

AttackPattern

Description

A defense pattern is a common approach (set of actions) utilized by a person or organization to carry out defensive activity intended to achieve some particular objective (within a particular context) against malicious activity.

Superclasses (1)

Target Classes (1)

Shape Properties

Instances of attack:DefensePattern can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

attack:DefensePattern
objective:hasObjective engagement:Objective

Implementation

@prefix attack: <https://ontology.adversaryengagement.org/ae/attack/> .
@prefix engagement: <https://ontology.adversaryengagement.org/ae/engagement/> .
@prefix objective: <https://ontology.adversaryengagement.org/ae/objective/> .
@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 uco-action: <https://ontology.unifiedcyberontology.org/uco/action/> .

attack:DefensePattern a owl:Class,
        sh:NodeShape ;
    rdfs:label "AttackPattern"@en ;
    rdfs:comment "A defense pattern is a common approach (set of actions) utilized by a person or organization to carry out defensive activity intended to achieve some particular objective (within a particular context) against malicious activity."@en ;
    rdfs:subClassOf uco-action:ActionPattern ;
    sh:property [ sh:class engagement:Objective ;
            sh:nodeKind sh:IRI ;
            sh:path objective:hasObjective ] ;
    sh:targetClass attack:DefensePattern .