engagement:Event leaf node


URI

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

Label

Event

Description

An Event characterizes some occurence.

Superclasses (1)

Target Classes (1)

Shape Properties

Instances of engagement:Event can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

engagement:Event
engagement:eventAttribute uco-types:Dictionary
engagement:eventContext uco-core:UcoObject
engagement:eventType xsd:string
xsd:string
xsd:string

Implementation

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

engagement:Event a owl:Class,
        sh:NodeShape ;
    rdfs:label "Event"@en ;
    rdfs:comment "An Event characterizes some occurence."@en ;
    rdfs:subClassOf uco-core:UcoObject ;
    sh:property [ sh:datatype xsd:string ;
            sh:nodeKind sh:Literal ;
            sh:path engagement:eventType ],
        [ sh:class uco-core:UcoObject ;
            sh:nodeKind sh:IRI ;
            sh:path engagement:eventContext ],
        [ sh:datatype xsd:string ;
            sh:nodeKind sh:Literal ;
            sh:path uco-core:startTime ],
        [ sh:datatype xsd:string ;
            sh:nodeKind sh:Literal ;
            sh:path uco-core:endTime ],
        [ sh:class uco-types:Dictionary ;
            sh:nodeKind sh:IRI ;
            sh:path engagement:eventAttribute ] ;
    sh:targetClass engagement:Event .