{ "$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-batch-update-vehicle-response-schema.json", "title": "BatchUpdateVehicleResponse", "description": "BatchUpdateVehicleResponse schema", "type": "object", "properties": { "vehicles": { "allOf": [ { "$ref": "#/components/schemas/updateVehicleResponseItems" }, { "description": "

A list of information about the batch of updated vehicles.

This list contains only unique IDs for the vehicles that were updated.

" } ] }, "errors": { "allOf": [ { "$ref": "#/components/schemas/updateVehicleErrors" }, { "description": "A list of information about errors returned while updating a batch of vehicles, or, if there aren't any errors, an empty list." } ] } } }