# Alerto Json Specification ## Change Log | Version No. | Date | Description | Author | | :---------: | :--: | :---------- | :----: | | 1.0.0 | 2020-03-17 | The first release | Greg | ### Note - Alerto -> Tripo - SQS - QA: https://sqs.us-west-2.amazonaws.com/469124522226/alerto_tripo_qa.fifo - Production: TBD - [Trip Point Schema](https://dbdiagram.io/d/5e14242cedf08a25543facae) ### Payload :::info Request event point payload definition ::: ```jsonld { "eventType": "alertoEvent", "IMEI": string, "heading": int, "gpsSpeed": int, "accuracy": int, "eventId": string, "type": string, // event type (name) "severity": string, // event severity "description": string, // description "latitude": double, // might be null "longitude": double, // might be null "value": [], // optional event data "date": int } ``` ### Vehicle Speeding :::info Example of speeding event ::: ```jsonld { "eventType": "alertoEvent", "IMEI": "351918068642766", "heading": 70, "gpsSpeed": 60, "accuracy": 30, "eventId": "16", "type": "vehicle_speeding", "severity": "critical", "description": "Speeding", "latitude": 25.080161, "longitude": 121.567467, "value": [ { "current": 142, "threshold": 120, "duration": 10 } ], "date": 1584090955 } ```