ListNodesResponse schema from Amazon Panorama
{ "$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-nodes-response-schema.json", "title": "ListNodesResponse", "description": "ListNodesResponse schema from Amazon Panorama", "type": "object", "properties": { "NextToken": { "allOf": [ { "$ref": "#/components/schemas/Token" }, { "description": "A pagination token that's included if more results are available." } ] }, "Nodes": { "allOf": [ { "$ref": "#/components/schemas/NodesList" }, { "description": "A list of nodes." } ] } } }