solveit-observable:AndroidDeviceGeneratedBackup leaf node


URI

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

Label

Android Device Generated Backup

Description

Data produced by Android's backup mechanism (e.g., adb backup). Potentially contains application data, shared storage, and system settings in the Android backup format (.ab file).

Usage

Instances of solveit-observable:AndroidDeviceGeneratedBackup can have the following properties:

PROPERTYTYPEDESCRIPTIONRANGE
From class solveit-observable:DeviceGeneratedBackup
solveit-observable:backupFormatVersion owl:DatatypeProperty The version of the backup format used to produce the backup (e.g., iOS backup version 3.3, Android backup format v5). xsd:string
solveit-observable:encryptedOnGeneration owl:DatatypeProperty Whether the backup was encrypted at the time it was generated. A backup encrypted on generation may contain a richer dataset (e.g., iOS encrypted backups include keychain and health data) even if a decrypted copy is subsequently produced. xsd:boolean
solveit-observable:isEncrypted owl:DatatypeProperty 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. xsd:boolean
From class solveit-observable:AcquiredData
solveit-observable:acquiredFrom owl:ObjectProperty The source from which the data was acquired, such as a device, device interface, or storage medium. uco-observable:ObservableObject
solveit-observable:contains owl:ObjectProperty The logical content encapsulated within the acquired data, such as bitstream data, files, or metadata. uco-observable:ObservableObject
solveit-observable:storedIn owl:ObjectProperty The file or files in which the acquired data is physically stored (e.g., .E01 segment files, a .dd file, a backup archive). uco-observable:File

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/> .

solveit-observable:AndroidDeviceGeneratedBackup a owl:Class ;
    rdfs:label "Android Device Generated Backup"@en ;
    rdfs:comment "Data produced by Android's backup mechanism (e.g., adb backup). Potentially contains application data, shared storage, and system settings in the Android backup format (.ab file)."@en ;
    rdfs:subClassOf solveit-observable:DeviceGeneratedBackup .