https://unifiedcyberontology.org/ontology/uco/observable#DiskPartitionFacet
Instances of observable:DiskPartitionFacet can have the following properties:
PROPERTY |
MIN COUNT |
MAX COUNT |
VALUE CONSTRAINTS |
TYPE |
---|---|---|---|---|
observable:DiskPartitionFacet | ||||
observable:diskPartitionType | 0 | 1 |
|
xsd:string
|
observable:mountPoint | 0 | 1 |
|
xsd:string
|
observable:observableCreatedTime | 0 | 1 |
|
xsd:dateTime
|
observable:partitionID | 0 | 1 |
|
xsd:string
|
observable:partitionLength | 0 | 1 |
|
xsd:integer
|
observable:partitionOffset | 0 | 1 |
|
xsd:integer
|
observable:spaceLeft | 0 | 1 |
|
xsd:integer
|
observable:spaceUsed | 0 | 1 |
|
xsd:integer
|
observable:totalSpace | 0 | 1 |
|
xsd:integer
|
@prefix core: <https://unifiedcyberontology.org/ontology/uco/core#> .
@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: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 .