solveit-observable:isEncrypted leaf node


URI

https://ontology.solveit-df.org/solveit/observable/isEncrypted

Label

is encrypted

Description

Whether the backup is currently in an encrypted state. Used alongside encryptedOnGeneration to distinguish between a backup that is still encrypted and one that has been decrypted for analysis.

Usage

DOMAINPROPERTYRANGE
solveit-observable:DeviceGeneratedBackup solveit-observable:isEncrypted xsd:boolean

Implementation

@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix solveit-observable: <https://ontology.solveit-df.org/solveit/observable/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

solveit-observable:isEncrypted a owl:DatatypeProperty ;
    rdfs:label "is encrypted"@en ;
    rdfs:comment "Whether the backup is currently in an encrypted state. Used alongside encryptedOnGeneration to distinguish between a backup that is still encrypted and one that has been decrypted for analysis."@en ;
    rdfs:domain solveit-observable:DeviceGeneratedBackup ;
    rdfs:range xsd:boolean .