observable:ObservableRelationship leaf node


URI

https://ontology.unifiedcyberontology.org/uco/observable/ObservableRelationship

Label

ObservableRelationship

Description

An observable relationship is a grouping of characteristics unique to an assertion of an association between two observable objects.

Shape Properties

Instances of observable:ObservableRelationship can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

observable:ObservableRelationship
core:source observable:Observable
core:target observable:Observable
core:Relationship
core:endTime xsd:dateTime
core:isDirectional 1 1 xsd:boolean
core:kindOfRelationship 1 xsd:string
core:source 1 core:UcoObject
core:startTime xsd:dateTime
core:target 1 1 core:UcoObject
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:objectStatus 1 xsd:string
core:specVersion 1 xsd:string
core:tag xsd:string

Implementation

@prefix core: <https://ontology.unifiedcyberontology.org/uco/core/> .
@prefix observable: <https://ontology.unifiedcyberontology.org/uco/observable/> .
@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#> .

observable:ObservableRelationship a owl:Class,
        sh:NodeShape ;
    rdfs:label "ObservableRelationship"@en ;
    rdfs:comment "An observable relationship is a grouping of characteristics unique to an assertion of an association between two observable objects."@en ;
    rdfs:subClassOf core:Relationship,
        observable:Observable ;
    sh:property [ sh:class observable:Observable ;
            sh:message "The source on an ObservableRelationship is expected to be typed as an Observable, and the noted value node is not.  This will be an error in UCO 2.0.0."@en ;
            sh:path core:source ;
            sh:severity sh:Warning ],
        [ sh:class observable:Observable ;
            sh:message "The target on an ObservableRelationship is expected to be typed as an Observable, and the noted value node is not.  This will be an error in UCO 2.0.0."@en ;
            sh:path core:target ;
            sh:severity sh:Warning ] ;
    sh:targetClass observable:ObservableRelationship .