{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-iot-fleetwise/refs/heads/main/json-schema/iot-fleetwise-vehicle-status-schema.json", "title": "VehicleStatus", "description": "Information about the state of a vehicle and how it relates to the status of a campaign.", "type": "object", "properties": { "campaignName": { "allOf": [ { "$ref": "#/components/schemas/string" }, { "description": "The name of a campaign." } ] }, "vehicleName": { "allOf": [ { "$ref": "#/components/schemas/vehicleName" }, { "description": "The unique ID of the vehicle." } ] }, "status": { "allOf": [ { "$ref": "#/components/schemas/VehicleState" }, { "description": "

The state of a vehicle, which can be one of the following:

" } ] } } }