vocabulary:WindowsDriveTypeVocab leaf node


URI

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

Label

Windows Drive Type Vocabulary

Description

Defines an open-vocabulary of possible drive types, as enumerated by the WINAPI GetDriveType function: http://msdn.microsoft.com/en-us/library/windows/desktop/aa364939(v=vs.85).aspx.

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:WindowsDriveTypeVocab a rdfs:Datatype ;
    rdfs:label "Windows Drive Type Vocabulary"@en-US ;
    rdfs:comment "Defines an open-vocabulary of possible drive types, as enumerated by the WINAPI GetDriveType function: http://msdn.microsoft.com/en-us/library/windows/desktop/aa364939(v=vs.85).aspx."@en ;
    rdfs:subClassOf rdfs:Resource ;
    owl:oneOf ( "DRIVE_CDROM"^^vocabulary:WindowsDriveTypeVocab "DRIVE_FIXED"^^vocabulary:WindowsDriveTypeVocab "DRIVE_NO_ROOT_DIR"^^vocabulary:WindowsDriveTypeVocab "DRIVE_RAMDISK"^^vocabulary:WindowsDriveTypeVocab "DRIVE_REMOTE"^^vocabulary:WindowsDriveTypeVocab "DRIVE_REMOVABLE"^^vocabulary:WindowsDriveTypeVocab "DRIVE_UNKNOWN"^^vocabulary:WindowsDriveTypeVocab ) .