{ "$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-update-vehicle-request-items-schema.json", "title": "updateVehicleRequestItems", "description": "updateVehicleRequestItems schema", "type": "array", "items": { "type": "object", "required": [ "vehicleName" ], "properties": { "vehicleName": { "allOf": [ { "$ref": "#/components/schemas/vehicleName" }, { "description": "The unique ID of the vehicle to update." } ] }, "modelManifestArn": { "allOf": [ { "$ref": "#/components/schemas/arn" }, { "description": "The ARN of the vehicle model (model manifest) associated with the vehicle to update." } ] }, "decoderManifestArn": { "allOf": [ { "$ref": "#/components/schemas/arn" }, { "description": "The ARN of the signal decoder manifest associated with the vehicle to update." } ] }, "attributes": { "allOf": [ { "$ref": "#/components/schemas/attributesMap" }, { "description": "

Static information about a vehicle in a key-value pair. For example:

\"engineType\" : \"1.3 L R2\"

" } ] }, "attributeUpdateMode": { "allOf": [ { "$ref": "#/components/schemas/UpdateMode" }, { "description": "

The method the specified attributes will update the existing attributes on the vehicle. UseOverwite to replace the vehicle attributes with the specified attributes. Or use Merge to combine all attributes.

This is required if attributes are present in the input.

" } ] } }, "description": "Information about the vehicle to update." } }