core:Event leaf node


URI

https://ontology.unifiedcyberontology.org/uco/core/Event

Label

Event

Description

An Event is a noteworthy occurrence (something that happens or might happen).

Superclasses (2)

Target Classes (1)

Shape Properties

Instances of core:Event can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

core:Event
core:endTime xsd:dateTime
core:eventAttribute types:Dictionary
core:eventContext core:UcoObject
core:eventType xsd:string
core:startTime xsd:dateTime
core:UcoObject
core:createdBy 1 core:IdentityAbstraction
core:description xsd:string
core:externalReference 0 core:ExternalReference
core:hasFacet core:Facet
core:modifiedTime xsd:dateTime
core:name 1 xsd:string
core:objectCreatedTime 1 xsd:dateTime
core:objectMarking core:MarkingDefinitionAbstraction
core:specVersion 1 xsd:string
core:tag xsd:string

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

core:Event a owl:Class,
        sh:NodeShape ;
    rdfs:label "Event"@en ;
    rdfs:comment "An Event is a noteworthy occurrence (something that happens or might happen)."@en ;
    rdfs:subClassOf core:UcoObject ;
    owl:disjointWith action:Action ;
    sh:property [ sh:class core:UcoObject ;
            sh:nodeKind sh:IRI ;
            sh:path core:eventContext ],
        [ sh:class types:Dictionary ;
            sh:nodeKind sh:IRI ;
            sh:path core:eventAttribute ],
        [ sh:datatype xsd:dateTime ;
            sh:nodeKind sh:Literal ;
            sh:path core:endTime ],
        [ sh:datatype xsd:dateTime ;
            sh:nodeKind sh:Literal ;
            sh:path core:startTime ],
        [ sh:datatype xsd:string ;
            sh:nodeKind sh:Literal ;
            sh:path core:eventType ] ;
    sh:targetClass core:Event .