{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codebuild/refs/heads/main/json-schema/amazon-codebuild-list-build-batches-output-schema.json",
"title": "ListBuildBatchesOutput",
"description": "ListBuildBatchesOutput schema from Amazon CodeBuild",
"type": "object",
"properties": {
"ids": {
"allOf": [
{
"$ref": "#/components/schemas/BuildBatchIds"
},
{
"description": "An array of strings that contains the batch build identifiers."
}
]
},
"nextToken": {
"allOf": [
{
"$ref": "#/components/schemas/String"
},
{
"description": "If there are more items to return, this contains a token that is passed to a subsequent call to <code>ListBuildBatches</code> to retrieve the next set of items."
}
]
}
}
}