vocabulary:EndiannessTypeVocab leaf node


URI

https://unifiedcyberontology.org/ontology/uco/vocabulary#EndiannessTypeVocab

Label

Endianness Type Vocabulary

Description

Defines an open-vocabulary of byte ordering methods.

Implementation

@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix vocabulary: <https://unifiedcyberontology.org/ontology/uco/vocabulary#> .

vocabulary:EndiannessTypeVocab a rdfs:Datatype ;
    rdfs:label "Endianness Type Vocabulary"@en-US ;
    rdfs:comment "Defines an open-vocabulary of byte ordering methods."@en ;
    rdfs:subClassOf rdfs:Resource ;
    owl:oneOf ( "Big-endian"^^vocabulary:EndiannessTypeVocab "Little-endian"^^vocabulary:EndiannessTypeVocab "Middle-endian"^^vocabulary:EndiannessTypeVocab ) .