{
"$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-batch-get-reports-output-schema.json",
"title": "BatchGetReportsOutput",
"description": "BatchGetReportsOutput schema from Amazon CodeBuild",
"type": "object",
"properties": {
"reports": {
"allOf": [
{
"$ref": "#/components/schemas/Reports"
},
{
"description": " The array of Report objects returned by BatchGetReports. "
}
]
},
"reportsNotFound": {
"allOf": [
{
"$ref": "#/components/schemas/ReportArns"
},
{
"description": " An array of ARNs passed to BatchGetReportGroups that are not associated with a Report. "
}
]
}
}
}