Amazon IoT FleetWise · JSON Structure

Iot Fleetwise Create Model Manifest Request Structure

CreateModelManifestRequest schema

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

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

Properties

name description nodes 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-model-manifest-request-structure.json",
  "name": "CreateModelManifestRequest",
  "description": "CreateModelManifestRequest schema",
  "type": "object",
  "properties": {
    "name": {
      "allOf": [
        {
          "$ref": "#/components/schemas/resourceName"
        },
        {
          "description": " The name of the vehicle model to create."
        }
      ]
    },
    "description": {
      "allOf": [
        {
          "$ref": "#/components/schemas/description"
        },
        {
          "description": " A brief description of the vehicle model. "
        }
      ]
    },
    "nodes": {
      "allOf": [
        {
          "$ref": "#/components/schemas/listOfStrings"
        },
        {
          "description": " A list of nodes, which are a general abstraction of signals. "
        }
      ]
    },
    "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 vehicle model."
        }
      ]
    }
  },
  "required": [
    "name",
    "nodes",
    "signalCatalogArn"
  ]
}