Amazon Panorama · JSON Structure

Openapi Provision Device Response Structure

ProvisionDeviceResponse schema from Amazon Panorama

Type: object Properties: 5 Required: 2
CamerasComputer VisionEdge MLIndustrial IoT

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

Properties

Arn Certificates DeviceId IotThingName 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-panorama/refs/heads/main/json-structure/openapi-provision-device-response-structure.json",
  "name": "ProvisionDeviceResponse",
  "description": "ProvisionDeviceResponse schema from Amazon Panorama",
  "type": "object",
  "properties": {
    "Arn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DeviceArn"
        },
        {
          "description": "The device's ARN."
        }
      ]
    },
    "Certificates": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Certificates"
        },
        {
          "description": "The device's configuration bundle."
        }
      ]
    },
    "DeviceId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DeviceId"
        },
        {
          "description": "The device's ID."
        }
      ]
    },
    "IotThingName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/IotThingName"
        },
        {
          "description": "The device's IoT thing name."
        }
      ]
    },
    "Status": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DeviceStatus"
        },
        {
          "description": "The device's status."
        }
      ]
    }
  },
  "required": [
    "Arn",
    "Status"
  ]
}