Amazon IoT FleetWise · JSON Structure

Iot Fleetwise Create Vehicle Request Item Structure

Information about the vehicle to create.

Type: object Properties: 6 Required: 3
AutomotiveConnected VehiclesIoTTelematicsVehicle Data

CreateVehicleRequestItem is a JSON Structure definition published by Amazon IoT FleetWise, describing 6 properties, of which 3 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

vehicleName modelManifestArn decoderManifestArn attributes associationBehavior tags

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-iot-fleetwise/refs/heads/main/json-structure/iot-fleetwise-create-vehicle-request-item-structure.json",
  "name": "CreateVehicleRequestItem",
  "description": "Information about the vehicle to create.",
  "type": "object",
  "properties": {
    "vehicleName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/vehicleName"
        },
        {
          "description": "The unique ID of the vehicle to create."
        }
      ]
    },
    "modelManifestArn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/arn"
        },
        {
          "description": "The ARN of the vehicle model (model manifest) to create the vehicle from."
        }
      ]
    },
    "decoderManifestArn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/arn"
        },
        {
          "description": "The Amazon Resource Name (ARN) of a decoder manifest associated with the vehicle to create. "
        }
      ]
    },
    "attributes": {
      "allOf": [
        {
          "$ref": "#/components/schemas/attributesMap"
        },
        {
          "description": "Static information about a vehicle in a key-value pair. For example: <code>\"engine Type\"</code> : <code>\"v6\"</code> "
        }
      ]
    },
    "associationBehavior": {
      "allOf": [
        {
          "$ref": "#/components/schemas/VehicleAssociationBehavior"
        },
        {
          "description": "An option to create a new Amazon Web Services IoT thing when creating a vehicle, or to validate an existing thing as a vehicle."
        }
      ]
    },
    "tags": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TagList"
        },
        {
          "description": "Metadata which can be used to manage the vehicle."
        }
      ]
    }
  },
  "required": [
    "vehicleName",
    "modelManifestArn",
    "decoderManifestArn"
  ]
}