{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-proton/refs/heads/main/json-schema/amazon-proton-list-environment-account-connections-output-schema.json", "title": "ListEnvironmentAccountConnectionsOutput", "description": "ListEnvironmentAccountConnectionsOutput schema from Amazon Proton API", "type": "object", "properties": { "environmentAccountConnections": { "allOf": [ { "$ref": "#/components/schemas/EnvironmentAccountConnectionSummaryList" }, { "description": "An array of environment account connections with details that's returned by Proton. " } ] }, "nextToken": { "allOf": [ { "$ref": "#/components/schemas/NextToken" }, { "description": "A token that indicates the location of the next environment account connection in the array of environment account connections, after the current requested list of environment account connections." } ] } }, "required": [ "environmentAccountConnections" ] }