UpdateFleetRequest

UpdateFleetRequest schema

AutomotiveConnected VehiclesIoTTelematicsVehicle Data

Properties

Name Type Description
fleetId object
description object
View JSON Schema on GitHub

JSON Schema

iot-fleetwise-update-fleet-request-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-update-fleet-request-schema.json",
  "title": "UpdateFleetRequest",
  "description": "UpdateFleetRequest schema",
  "type": "object",
  "properties": {
    "fleetId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/fleetId"
        },
        {
          "description": " The ID of the fleet to update. "
        }
      ]
    },
    "description": {
      "allOf": [
        {
          "$ref": "#/components/schemas/description"
        },
        {
          "description": " An updated description of the fleet. "
        }
      ]
    }
  },
  "required": [
    "fleetId"
  ]
}