https://ontology.unifiedcyberontology.org/uco/observable/DiskPartitionFacet
A disk partition facet is a grouping of characteristics unique to a particular managed region on a storage mechanism.
Instances of observable:DiskPartitionFacet can have the following properties:
PROPERTY |
MIN COUNT |
MAX COUNT |
TYPE |
|
---|---|---|---|---|
observable:DiskPartitionFacet | ||||
observable:diskPartitionType | 1 |
xsd:string
|
||
observable:mountPoint | 1 |
xsd:string
|
||
observable:observableCreatedTime | 1 |
xsd:dateTime
|
||
observable:partitionID | 1 |
xsd:string
|
||
observable:partitionLength | 1 |
xsd:integer
|
||
observable:partitionOffset | 1 |
xsd:integer
|
||
observable:spaceLeft | 1 |
xsd:integer
|
||
observable:spaceUsed | 1 |
xsd:integer
|
||
observable:totalSpace | 1 |
xsd:integer
|
@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#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
observable:DiskPartitionFacet a owl:Class,
sh:NodeShape ;
rdfs:label "DiskPartitionFacet"@en ;
rdfs:comment "A disk partition facet is a grouping of characteristics unique to a particular managed region on a storage mechanism."@en ;
rdfs:subClassOf core:Facet ;
sh:property [ sh:datatype xsd:dateTime ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:path observable:observableCreatedTime ],
[ sh:datatype xsd:integer ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:path observable:partitionLength ],
[ sh:datatype xsd:integer ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:path observable:partitionOffset ],
[ sh:datatype xsd:integer ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:path observable:spaceLeft ],
[ sh:datatype xsd:integer ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:path observable:spaceUsed ],
[ sh:datatype xsd:integer ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:path observable:totalSpace ],
[ sh:datatype xsd:string ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:path observable:diskPartitionType ],
[ sh:datatype xsd:string ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:path observable:mountPoint ],
[ sh:datatype xsd:string ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:path observable:partitionID ] ;
sh:targetClass observable:DiskPartitionFacet .