{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-cloud9/refs/heads/main/json-schema/cloud9-list-environments-response-schema.json",
"title": "ListEnvironmentsResponse",
"description": "Response for listing environments.",
"type": "object",
"properties": {
"nextToken": {
"type": "string",
"description": "If there are more than 25 items in the list, only the first 25 are returned."
},
"environmentIds": {
"type": "array",
"items": {
"type": "string"
},
"description": "The list of environment identifiers."
}
}
}