Interface: DeviceReport
A single accepted verification report against a device.
Mirrors the fields the org-level hardware-status.yaml schema already records — issue number, reporter, date, result. Folded inline into the device entry so there is one source of truth per driver instead of a parallel YAML overlay.
Deprecated
Superseded by VerificationCell in ./verifications.js. The new shape drops notes, reporter, os, selfVerified, result — the linked GitHub issue carries those. Retained during the alias transition; removed in the cleanup PR once all drivers have migrated.
Properties
| Property | Type | Description |
|---|---|---|
date | string | ISO date (YYYY-MM-DD) the report was filed. |
issue | number | Issue / PR number where the report was accepted. |
notes? | string | Free-form notes (markdown allowed). |
os? | "Linux" | "macOS" | "Windows" | - |
reporter | string | Reporter's GitHub handle or attribution string. |
result | LegacySupportStatus | Verification outcome from this report. |
selfVerified? | boolean | True if the reporter is also the implementer / maintainer. |