Amazon CodeBuild · JSON Structure

Amazon Codebuild Test Report Summary Structure

Information about a test report.

Type: object Properties: 3 Required: 3
AmazonCI/CDBuildContinuous IntegrationDevOpsTesting

TestReportSummary is a JSON Structure definition published by Amazon CodeBuild, describing 3 properties, of which 3 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

total statusCounts durationInNanoSeconds

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$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 <code>TestReportSummary</code>. 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 <code>TestReportSummary</code>. "
        }
      ]
    },
    "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"
  ]
}