ModelManifestSummary

Information about a vehicle model (model manifest). You can use the API operation to return this information about multiple vehicle models.

AutomotiveConnected VehiclesIoTTelematicsVehicle Data

Properties

Name Type Description
name object
arn object
signalCatalogArn object
description object
status object
creationTime object
lastModificationTime object
View JSON Schema on GitHub

JSON Schema

iot-fleetwise-model-manifest-summary-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-model-manifest-summary-schema.json",
  "title": "ModelManifestSummary",
  "description": "Information about a vehicle model (model manifest). You can use the API operation to return this information about multiple vehicle models.",
  "type": "object",
  "properties": {
    "name": {
      "allOf": [
        {
          "$ref": "#/components/schemas/string"
        },
        {
          "description": "The name of the vehicle model."
        }
      ]
    },
    "arn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/arn"
        },
        {
          "description": "The Amazon Resource Name (ARN) of the vehicle model."
        }
      ]
    },
    "signalCatalogArn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/arn"
        },
        {
          "description": "The ARN of the signal catalog associated with the vehicle model."
        }
      ]
    },
    "description": {
      "allOf": [
        {
          "$ref": "#/components/schemas/description"
        },
        {
          "description": "A brief description of 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."
        }
      ]
    },
    "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 time the vehicle model was last updated, in seconds since epoch (January 1, 1970 at midnight UTC time)."
        }
      ]
    }
  },
  "required": [
    "creationTime",
    "lastModificationTime"
  ]
}