Amazon IoT FleetWise · JSON Structure

Iot Fleetwise Create Fleet Request Structure

CreateFleetRequest schema

Type: object Properties: 4 Required: 2
AutomotiveConnected VehiclesIoTTelematicsVehicle Data

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

Properties

fleetId description signalCatalogArn 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-fleet-request-structure.json",
  "name": "CreateFleetRequest",
  "description": "CreateFleetRequest schema",
  "type": "object",
  "properties": {
    "fleetId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/fleetId"
        },
        {
          "description": " The unique ID of the fleet to create. "
        }
      ]
    },
    "description": {
      "allOf": [
        {
          "$ref": "#/components/schemas/description"
        },
        {
          "description": " A brief description of the fleet to create. "
        }
      ]
    },
    "signalCatalogArn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/arn"
        },
        {
          "description": " The Amazon Resource Name (ARN) of a signal catalog. "
        }
      ]
    },
    "tags": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TagList"
        },
        {
          "description": "Metadata that can be used to manage the fleet."
        }
      ]
    }
  },
  "required": [
    "fleetId",
    "signalCatalogArn"
  ]
}