{
"$schema": "https://json-structure.org/meta/core/v0/#",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codebuild/refs/heads/main/json-structure/amazon-codebuild-describe-code-coverages-output-structure.json",
"name": "DescribeCodeCoveragesOutput",
"description": "DescribeCodeCoveragesOutput schema from Amazon CodeBuild",
"type": "object",
"properties": {
"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 DescribeCodeCoverages to retrieve the next set of items."
}
]
},
"codeCoverages": {
"allOf": [
{
"$ref": "#/components/schemas/CodeCoverages"
},
{
"description": "An array of CodeCoverage objects that contain the results."
}
]
}
}
}