Amazon IoT FleetWise · JSON Structure

Iot Fleetwise Get Model Manifest Response Structure

GetModelManifestResponse schema

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

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

Properties

name arn description signalCatalogArn status creationTime lastModificationTime

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-get-model-manifest-response-structure.json",
  "name": "GetModelManifestResponse",
  "description": "GetModelManifestResponse schema",
  "type": "object",
  "properties": {
    "name": {
      "allOf": [
        {
          "$ref": "#/components/schemas/resourceName"
        },
        {
          "description": " The name of the vehicle model. "
        }
      ]
    },
    "arn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/arn"
        },
        {
          "description": " The Amazon Resource Name (ARN) of the vehicle model. "
        }
      ]
    },
    "description": {
      "allOf": [
        {
          "$ref": "#/components/schemas/description"
        },
        {
          "description": " A brief description of the vehicle model. "
        }
      ]
    },
    "signalCatalogArn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/arn"
        },
        {
          "description": " The ARN of the signal catalog associated with 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. You can edit the vehicle model if the status is marked <code>DRAFT</code>."
        }
      ]
    },
    "creationTime": {
      "allOf": [
        {
          "$ref": "#/components/schemas/timestamp"
        },
        {
          "description": "The time the vehicle model was created, in seconds since epoch (January 1, 1970 at midnight UTC time)."
        }
      ]
    },
    "lastModificationTime": {
      "allOf": [
        {
          "$ref": "#/components/schemas/timestamp"
        },
        {
          "description": "The last time the vehicle model was modified."
        }
      ]
    }
  },
  "required": [
    "name",
    "arn",
    "creationTime",
    "lastModificationTime"
  ]
}