vocabulary:ProcessorArchVocab leaf node


URI

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

Label

Processor Architecture Vocabulary

Description

Defines an open-vocabulary of computer processor architectures.

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:ProcessorArchVocab a rdfs:Datatype ;
    rdfs:label "Processor Architecture Vocabulary"@en-US ;
    rdfs:comment "Defines an open-vocabulary of computer processor architectures."@en ;
    rdfs:subClassOf rdfs:Resource ;
    owl:oneOf ( "ARM"^^vocabulary:ProcessorArchVocab "Alpha"^^vocabulary:ProcessorArchVocab "IA-64"^^vocabulary:ProcessorArchVocab "MIPS"^^vocabulary:ProcessorArchVocab "Motorola 68k"^^vocabulary:ProcessorArchVocab "Other"^^vocabulary:ProcessorArchVocab "PowerPC"^^vocabulary:ProcessorArchVocab "SPARC"^^vocabulary:ProcessorArchVocab "eSi-RISC"^^vocabulary:ProcessorArchVocab "x86-32"^^vocabulary:ProcessorArchVocab "x86-64"^^vocabulary:ProcessorArchVocab "z/Architecture"^^vocabulary:ProcessorArchVocab ) .