DeviceTelemetryRecordUpdated
Parameter N represents name of telemetry measurement and D is type for such measurement defined in common/devices repository.
Properties
| Property | Type | Required | Description |
|---|---|---|---|
id | string | ✅ | Unique identifier of the event instance, generated when the event is emitted |
kind | "telemetry" | ✅ | Kind of the event |
type | "Device.Telemetry.DeviceTelemetryRecordUpdated" | ✅ | Type of the event |
payload | object | ✅ | Event-specific payload data |
Example
{
"id": "string",
"kind": "telemetry",
"type": "Device.Telemetry.DeviceTelemetryRecordUpdated",
"payload": {
"owner": {
"ownershipType": "organization",
"organizationUid": "be06ecdbxxxxxxxxxxxxxxxx34dc89ca",
"parentCompanyUid": "68c78013xxxxxxxxxxxxxxxxbd70e6ba"
},
"type": "Device.Telemetry.DeviceTelemetryRecordUpdated",
"deviceUid": "31c23c00xxxxxxxxxxxxxxxx3de9fea7",
"name": "Example Name",
"data": "string"
}
}
Shape
{
"id": "string",
"kind": "telemetry",
"type": "Device.Telemetry.DeviceTelemetryRecordUpdated",
"payload": {
"owner": {
"ownershipType": "organization",
"organizationUid": "string | null",
"parentCompanyUid": "string | null"
},
"type": "Device.Telemetry.DeviceTelemetryRecordUpdated",
"deviceUid": "string",
"name": "string",
"data": "unknown"
}
}