{
"$schema": "https://json-structure.org/meta/core/v0/#",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codebuild/refs/heads/main/json-structure/amazon-codebuild-test-report-summary-structure.json",
"name": "TestReportSummary",
"description": " Information about a test report. ",
"type": "object",
"properties": {
"total": {
"allOf": [
{
"$ref": "#/components/schemas/WrapperInt"
},
{
"description": " The number of test cases in this TestReportSummary. The total includes truncated test cases. "
}
]
},
"statusCounts": {
"allOf": [
{
"$ref": "#/components/schemas/ReportStatusCounts"
},
{
"description": " A map that contains the number of each type of status returned by the test results in this TestReportSummary. "
}
]
},
"durationInNanoSeconds": {
"allOf": [
{
"$ref": "#/components/schemas/WrapperLong"
},
{
"description": " The number of nanoseconds it took to run all of the test cases in this report. "
}
]
}
},
"required": [
"total",
"statusCounts",
"durationInNanoSeconds"
]
}