Amazon Panorama · Schema

ManifestOverridesPayload

Parameter overrides for an application instance. This is a JSON document that has a single key (PayloadData) where the value is an escaped string representation of the overrides document.

CameraComputer-VisionEdge MLIndustrial IoT

Properties

Name Type Description
PayloadData object
View JSON Schema on GitHub

JSON Schema

openapi-manifest-overrides-payload-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-panorama/refs/heads/main/json-schema/openapi-manifest-overrides-payload-schema.json",
  "title": "ManifestOverridesPayload",
  "description": "Parameter overrides for an application instance. This is a JSON document that has a single key (<code>PayloadData</code>) where the value is an escaped string representation of the overrides document.",
  "type": "object",
  "properties": {
    "PayloadData": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ManifestOverridesPayloadData"
        },
        {
          "description": "The overrides document."
        }
      ]
    }
  }
}