https://ontology.solveit-df.org/solveit/observable/AcquisitionErrorRecord
A record of an error encountered during data acquisition such as a bad sector, read timeout, I/O error, CRC error, or media surface damage.
Instances of solveit-observable:AcquisitionErrorRecord can have the following properties:
| PROPERTY | TYPE | DESCRIPTION | RANGE |
|---|---|---|---|
| From class solveit-observable:AcquisitionErrorRecord | |||
| solveit-observable:errorLocationEnd | owl:DatatypeProperty | The ending location of the error (e.g., sector number, byte offset). If omitted, the error is at a single location. | xsd:integer |
| solveit-observable:errorLocationStart | owl:DatatypeProperty | The starting location of the error (e.g., sector number, byte offset). | xsd:integer |
| solveit-observable:errorType | owl:DatatypeProperty | The type of acquisition error (e.g., bad sector, read timeout, I/O error, CRC error). | xsd:string |
@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 uco-observable: <https://ontology.unifiedcyberontology.org/uco/observable/> .
solveit-observable:AcquisitionErrorRecord a owl:Class ;
rdfs:label "Acquisition Error Record"@en ;
rdfs:comment "A record of an error encountered during data acquisition such as a bad sector, read timeout, I/O error, CRC error, or media surface damage."@en ;
rdfs:subClassOf uco-observable:ObservableObject .