https://unifiedcyberontology.org/ontology/uco/observable#MobileDeviceFacet
Instances of observable:MobileDeviceFacet can have the following properties:
PROPERTY |
MIN COUNT |
MAX COUNT |
VALUE CONSTRAINTS |
TYPE |
---|---|---|---|---|
observable:MobileDeviceFacet | ||||
observable:ESN | 0 | 1 |
|
xsd:string
|
observable:IMEI | 0 | 1 |
|
xsd:string
|
observable:MSISDN | 0 | * |
|
xsd:string
|
observable:bluetoothDeviceName | 0 | 1 |
|
xsd:string
|
observable:clockSetting | 0 | 1 |
|
xsd:dateTime
|
observable:keypadUnlockCode | 0 | 1 |
|
xsd:string
|
observable:mockLocationsAllowed | 0 | 1 |
|
xsd:boolean
|
observable:network | 0 | 1 |
|
xsd:string
|
observable:phoneActivationTime | 0 | 1 |
|
xsd:dateTime
|
observable:storageCapacityInBytes | 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:MobileDeviceFacet a owl:Class,
sh:NodeShape ;
rdfs:label "MobileDeviceFacet"@en ;
rdfs:comment "A mobile device facet is a grouping of characteristics unique to a portable computing device. [based on https://www.lexico.com/definition/mobile_device]"@en ;
rdfs:subClassOf core:Facet ;
sh:property [ sh:datatype xsd:boolean ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:path observable:mockLocationsAllowed ],
[ sh:datatype xsd:dateTime ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:path observable:clockSetting ],
[ sh:datatype xsd:dateTime ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:path observable:phoneActivationTime ],
[ sh:datatype xsd:integer ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:path observable:storageCapacityInBytes ],
[ sh:datatype xsd:string ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:path observable:ESN ],
[ sh:datatype xsd:string ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:path observable:IMEI ],
[ sh:datatype xsd:string ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:path observable:bluetoothDeviceName ],
[ sh:datatype xsd:string ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:path observable:keypadUnlockCode ],
[ sh:datatype xsd:string ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:path observable:network ],
[ sh:datatype xsd:string ;
sh:nodeKind sh:Literal ;
sh:path observable:MSISDN ] ;
sh:targetClass observable:MobileDeviceFacet .