{ "$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-response-schema.json", "title": "GetVehicleResponse", "description": "GetVehicleResponse schema", "type": "object", "properties": { "vehicleName": { "allOf": [ { "$ref": "#/components/schemas/vehicleName" }, { "description": "The ID of the vehicle." } ] }, "arn": { "allOf": [ { "$ref": "#/components/schemas/arn" }, { "description": " The Amazon Resource Name (ARN) of the vehicle to retrieve information about. " } ] }, "modelManifestArn": { "allOf": [ { "$ref": "#/components/schemas/arn" }, { "description": " The ARN of a vehicle model (model manifest) associated with the vehicle. " } ] }, "decoderManifestArn": { "allOf": [ { "$ref": "#/components/schemas/arn" }, { "description": " The ARN of a decoder manifest associated with the vehicle. " } ] }, "attributes": { "allOf": [ { "$ref": "#/components/schemas/attributesMap" }, { "description": "

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

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

" } ] }, "creationTime": { "allOf": [ { "$ref": "#/components/schemas/timestamp" }, { "description": " The time the vehicle was created in seconds since epoch (January 1, 1970 at midnight UTC time). " } ] }, "lastModificationTime": { "allOf": [ { "$ref": "#/components/schemas/timestamp" }, { "description": " The time the vehicle was last updated in seconds since epoch (January 1, 1970 at midnight UTC time). " } ] } } }