{
"$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-get-vehicle-status-response-schema.json",
"title": "GetVehicleStatusResponse",
"description": "GetVehicleStatusResponse schema",
"type": "object",
"properties": {
"campaigns": {
"allOf": [
{
"$ref": "#/components/schemas/VehicleStatusList"
},
{
"description": " Lists information about the state of the vehicle with deployed campaigns. "
}
]
},
"nextToken": {
"allOf": [
{
"$ref": "#/components/schemas/nextToken"
},
{
"description": " The token to retrieve the next set of results, or <code>null</code> if there are no more results. "
}
]
}
}
}