Amazon Panorama · JSON Structure

Openapi List Devices Response Structure

ListDevicesResponse schema from Amazon Panorama

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

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

Properties

Devices NextToken

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-list-devices-response-structure.json",
  "name": "ListDevicesResponse",
  "description": "ListDevicesResponse schema from Amazon Panorama",
  "type": "object",
  "properties": {
    "Devices": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DeviceList"
        },
        {
          "description": "A list of devices."
        }
      ]
    },
    "NextToken": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NextToken"
        },
        {
          "description": "A pagination token that's included if more results are available."
        }
      ]
    }
  },
  "required": [
    "Devices"
  ]
}