Amazon IoT FleetWise · JSON Structure

Iot Fleetwise Update Model Manifest Request Structure

UpdateModelManifestRequest schema

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

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

Properties

name description nodesToAdd nodesToRemove status

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-update-model-manifest-request-structure.json",
  "name": "UpdateModelManifestRequest",
  "description": "UpdateModelManifestRequest schema",
  "type": "object",
  "properties": {
    "name": {
      "allOf": [
        {
          "$ref": "#/components/schemas/resourceName"
        },
        {
          "description": " The name of the vehicle model to update. "
        }
      ]
    },
    "description": {
      "allOf": [
        {
          "$ref": "#/components/schemas/description"
        },
        {
          "description": " A brief description of the vehicle model. "
        }
      ]
    },
    "nodesToAdd": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NodePaths"
        },
        {
          "description": " A list of <code>fullyQualifiedName</code> of nodes, which are a general abstraction of signals, to add to the vehicle model. "
        }
      ]
    },
    "nodesToRemove": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NodePaths"
        },
        {
          "description": " A list of <code>fullyQualifiedName</code> of nodes, which are a general abstraction of signals, to remove from the vehicle model. "
        }
      ]
    },
    "status": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ManifestStatus"
        },
        {
          "description": " The state of the vehicle model. If the status is <code>ACTIVE</code>, the vehicle model can't be edited. If the status is <code>DRAFT</code>, you can edit the vehicle model. "
        }
      ]
    }
  },
  "required": [
    "name"
  ]
}