{ "$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-service-pipeline-outputs-output-schema.json", "title": "ListServicePipelineOutputsOutput", "description": "ListServicePipelineOutputsOutput schema from Amazon Proton API", "type": "object", "properties": { "nextToken": { "allOf": [ { "$ref": "#/components/schemas/EmptyNextToken" }, { "description": "A token that indicates the location of the next output in the array of outputs, after the current requested list of outputs." } ] }, "outputs": { "allOf": [ { "$ref": "#/components/schemas/OutputsList" }, { "description": "An array of service pipeline Infrastructure as Code (IaC) outputs." } ] } }, "required": [ "outputs" ] }