https://ontology.solveit-df.org/solveit/observable/DeviceGeneratedBackup
Data produced by a device's built-in backup mechanism. Content is determined by the device's backup logic and structured in the backup's native format.
Instances of solveit-observable:DeviceGeneratedBackup can have the following properties:
| PROPERTY | TYPE | DESCRIPTION | RANGE |
|---|---|---|---|
| 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 |
@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:DeviceGeneratedBackup a owl:Class ;
rdfs:label "Device Generated Backup"@en ;
rdfs:comment "Data produced by a device's built-in backup mechanism. Content is determined by the device's backup logic and structured in the backup's native format."@en ;
rdfs:subClassOf solveit-observable:ServiceBasedExtractionData .