{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codedeploy/refs/heads/main/json-schema/amazon-codedeploy-list-deployments-output-schema.json", "title": "ListDeploymentsOutput", "description": "Represents the output of a ListDeployments operation.", "type": "object", "properties": { "deployments": { "allOf": [ { "$ref": "#/components/schemas/DeploymentsList" }, { "description": "A list of deployment IDs." } ] }, "nextToken": { "allOf": [ { "$ref": "#/components/schemas/NextToken" }, { "description": "If a large amount of information is returned, an identifier is also returned. It can be used in a subsequent list deployments call to return the next set of deployments in the list." } ] } } }