Hardware Unlinked Payload
Canonical hardware-generic payload emitted when a hardware item is unlinked (e.g. decommissioned). Carries hardwareType so subtype detail isn't lost.
| $id | https://schemas.texecom-prod.com/v2/events/payload/service/device/hardware/unlinked/v1.0.0.json |
| $schema | http://json-schema.org/draft-07/schema |
Properties
hardwareId
| Description |
Identifier of the hardware record. |
| Type | String |
| Required |
Yes |
serial
| Description |
Hardware serial number as printed on the unit. |
| Type | String |
| Required |
Yes |
hardwareType
| Description |
Type of hardware that was unlinked. |
| Type | String |
| Required |
Yes |
| Enum |
|
version
| Description |
Wall-clock-ms tiebreaker used by projections for last-write-wins ordering. |
| Type | Number |
| Required |
Yes |
occurredAt
| Description |
UTC timestamp when the unlink occurred, in ISO 8601 format. |
| Type | String |
| Required |
Yes |
| Format |
date-time |
Schema
{
"$id": "https://schemas.texecom-prod.com/v2/events/payload/service/device/hardware/unlinked/v1.0.0.json",
"$schema": "http://json-schema.org/draft-07/schema",
"title": "Hardware Unlinked Payload",
"description": "Canonical hardware-generic payload emitted when a hardware item is unlinked (e.g. decommissioned). Carries hardwareType so subtype detail isn't lost.",
"type": "object",
"properties": {
"hardwareId": {
"description": "Identifier of the hardware record.",
"type": "string"
},
"serial": {
"description": "Hardware serial number as printed on the unit.",
"type": "string"
},
"hardwareType": {
"description": "Type of hardware that was unlinked.",
"type": "string",
"enum": [
"SMARTPANEL"
]
},
"version": {
"description": "Wall-clock-ms tiebreaker used by projections for last-write-wins ordering.",
"type": "number"
},
"occurredAt": {
"description": "UTC timestamp when the unlink occurred, in ISO 8601 format.",
"type": "string",
"format": "date-time"
}
},
"required": [
"hardwareId",
"serial",
"hardwareType",
"version",
"occurredAt"
],
"additionalProperties": false
}