Amazon Panorama · Schema

ListDevicesResponse

ListDevicesResponse schema from Amazon Panorama

CamerasComputer VisionEdge MLIndustrial IoT

Properties

Name Type Description
Devices object
NextToken object
View JSON Schema on GitHub

JSON Schema

openapi-list-devices-response-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-list-devices-response-schema.json",
  "title": "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"
  ]
}