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