GetVehicleResponse

GetVehicleResponse schema

AutomotiveConnected VehiclesIoTTelematicsVehicle Data

Properties

Name Type Description
vehicleName object
arn object
modelManifestArn object
decoderManifestArn object
attributes object
creationTime object
lastModificationTime object
View JSON Schema on GitHub

JSON Schema

iot-fleetwise-get-vehicle-response-schema.json Raw ↑
{
  "$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": "<p>Static information about a vehicle in a key-value pair. For example:</p> <p> <code>\"engineType\"</code> : <code>\"1.3 L R2\"</code> </p>"
        }
      ]
    },
    "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). "
        }
      ]
    }
  }
}