engagement:BreadcrumbTrail leaf node


URI

https://ontology.adversaryengagement.org/ae/engagement/BreadcrumbTrail

Label

BreadcrumbTrail

Description

A breadcrumb trail is a sequence of observed breadcrumbs where partial order of observation of breadcrumbs matter.

Superclasses (1)

Target Classes (1)

Shape Properties

Instances of engagement:BreadcrumbTrail can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

engagement:BreadcrumbTrail
engagement:breadcrumbTargetObject 1 uco-core:UcoObject
engagement:hasBreadcrumb 1 uco-types:Thread
1 objective:Objective

Implementation

@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-core: <https://ontology.unifiedcyberontology.org/uco/core/> .
@prefix uco-types: <https://ontology.unifiedcyberontology.org/uco/types/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

engagement:BreadcrumbTrail a owl:Class,
        sh:NodeShape ;
    rdfs:label "BreadcrumbTrail"@en ;
    rdfs:comment "A breadcrumb trail is a sequence of observed breadcrumbs where partial order of observation of breadcrumbs matter."@en ;
    rdfs:subClassOf uco-core:UcoObject ;
    sh:property [ sh:class objective:Objective ;
            sh:minCount 1 ;
            sh:nodeKind sh:IRI ;
            sh:path engagement:hasObjective ],
        [ sh:class uco-core:UcoObject ;
            sh:minCount 1 ;
            sh:nodeKind sh:IRI ;
            sh:path engagement:breadcrumbTargetObject ],
        [ sh:class uco-types:Thread ;
            sh:minCount 1 ;
            sh:nodeKind sh:IRI ;
            sh:path engagement:hasBreadcrumb ] ;
    sh:targetClass engagement:BreadcrumbTrail .