observable:GlobalFlagType leaf node


URI

https://unifiedcyberontology.org/ontology/uco/observable#GlobalFlagType

Label

GlobalFlagType

Description

A global flag type is a grouping of characteristics unique to the Windows systemwide global variable named NtGlobalFlag that enables various internal debugging, tracing, and validation support in the operating system. [based on "Windows Global Flags, Chapter 3: System Mechanisms of Windows Internals by Solomon, Russinovich, and Ionescu]

Target Classes (1)

Shape Properties

Instances of observable:GlobalFlagType can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

observable:GlobalFlagType
observable:abbreviation 0 1 xsd:string
observable:destination 0 1 xsd:string
observable:hexadecimalValue 0 * xsd:hexBinary
observable:symbolicName 0 1 xsd:string

Implementation

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

observable:GlobalFlagType a owl:Class,
        sh:NodeShape ;
    rdfs:label "GlobalFlagType"@en ;
    rdfs:comment "A global flag type is a grouping of characteristics unique to the Windows systemwide global variable named NtGlobalFlag that enables various internal debugging, tracing, and validation support in the operating system. [based on \"Windows Global Flags, Chapter 3: System Mechanisms of Windows Internals by Solomon, Russinovich, and Ionescu]"@en ;
    sh:property [ sh:datatype xsd:hexBinary ;
            sh:nodeKind sh:Literal ;
            sh:path observable:hexadecimalValue ],
        [ sh:datatype xsd:string ;
            sh:maxCount 1 ;
            sh:nodeKind sh:Literal ;
            sh:path observable:abbreviation ],
        [ sh:datatype xsd:string ;
            sh:maxCount 1 ;
            sh:nodeKind sh:Literal ;
            sh:path observable:destination ],
        [ sh:datatype xsd:string ;
            sh:maxCount 1 ;
            sh:nodeKind sh:Literal ;
            sh:path observable:symbolicName ] ;
    sh:targetClass observable:GlobalFlagType .