https://ontology.adversaryengagement.org/ae/engagement/Narrative
A narrative is a script of all expected sequence of actions, events, entities and their interactions.
Instances of engagement:Narrative can have the following properties:
PROPERTY | TYPE | DESCRIPTION | RANGE |
---|---|---|---|
From class owl:Thing | |||
engagement:alertContext | owl:ObjectProperty | An alert context describes the association of actions and objects relating to an alert. | uco-core:UcoObject |
By the associated SHACL property shapes, instances of engagement:Narrative can have the following properties:
PROPERTY |
PROPERTY TYPE |
DESCRIPTION |
MIN COUNT |
MAX COUNT |
LOCAL RANGE |
GLOBAL RANGE |
|
---|---|---|---|---|---|---|---|
engagement:Narrative | |||||||
|
1 |
uco-core:UcoObject
|
owl:Thing | ||||
engagement:hasStoryline | owl:ObjectProperty |
hasStoryline identifies a Storyline that is part of a Narrative.
|
1 |
uco-core:UcoObject
|
engagement:Storyline
|
@prefix engagement: <https://ontology.adversaryengagement.org/ae/engagement/> .
@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-core: <https://ontology.unifiedcyberontology.org/uco/core/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
engagement:Narrative a owl:Class,
sh:NodeShape ;
rdfs:label "Narrative"@en ;
rdfs:comment "A narrative is a script of all expected sequence of actions, events, entities and their interactions."@en ;
rdfs:subClassOf uco-core:UcoObject ;
sh:property [ sh:class uco-core:UcoObject ;
sh:minCount 1 ;
sh:nodeKind sh:IRI ;
sh:path engagement:hasStoryline ],
[ sh:class uco-core:UcoObject ;
sh:minCount 1 ;
sh:nodeKind sh:IRI ;
sh:path engagement:hasObjective ] ;
sh:targetClass engagement:Narrative .