observable:partitionID leaf node


URI

https://ontology.unifiedcyberontology.org/uco/observable/partitionID

Label

partitionID

Description

Specifies the identifier of the partition, as provided by the containing partition table. This identifier is the index value within the partition table, and is expected to be an incrementing alphanumeric value (numeric in most partition systems), not a GUID or UUID. Sorting partitions by this index should first attempt to sort a numeric cast of the value.

Usage

DOMAINPROPERTYRANGE
owl:Thing (inferred) observable:partitionID xsd:string

Implementation

@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 xsd: <http://www.w3.org/2001/XMLSchema#> .

observable:partitionID a owl:DatatypeProperty ;
    rdfs:label "partitionID"@en ;
    rdfs:comment "Specifies the identifier of the partition, as provided by the containing partition table.  This identifier is the index value within the partition table, and is expected to be an incrementing alphanumeric value (numeric in most partition systems), not a GUID or UUID.  Sorting partitions by this index should first attempt to sort a numeric cast of the value."@en ;
    rdfs:range xsd:string .