###### tags: `event, alert` # Alert Data Json Specification ## Quick Quide [TSC] ### Events - High Tire Temperature ```jsonld alertData: [ { "id": String, "current": Int, "threshold": Int } ] ``` - High Tire Preesure ```jsonld alertData: [ { "id": String, "current": Int, "threshold": Int } ] ``` - Low Tire Temperature ```jsonld alertData: [ { "id": String, "current": Int, "threshold": Int } ] ``` - tpmsBatteryLow ```jsonld alertData: [ { "id": String, } ] ``` - tpmsMissing ```jsonld alertData: [ { "id": String } ] ``` - Speeding ```jsonld alertLevel: "critical", alertId: "16", alertType: "speedingEvent", alertData: [ { "current": Int, "threshold": Int, "duration": Int // new stuff } ] ``` - New Vehicle / Vehicle Changed ```jsonld alertData: [ "oldView": String // nullable "newView": String // nullable ] ```