Amazon CodeBuild · JSON Structure

Amazon Codebuild Report Group Structure

A series of reports. Each report contains information about the results from running a series of test cases. You specify the test cases for a report group in the buildspec for a build project using one or more paths to the test case files.

Type: object Properties: 8
AmazonCI/CDBuildContinuous IntegrationDevOpsTesting

ReportGroup is a JSON Structure definition published by Amazon CodeBuild, describing 8 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

arn name type exportConfig created lastModified tags status

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-report-group-structure.json",
  "name": "ReportGroup",
  "description": "A series of reports. Each report contains information about the results from running a series of test cases. You specify the test cases for a report group in the buildspec for a build project using one or more paths to the test case files. ",
  "type": "object",
  "properties": {
    "arn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NonEmptyString"
        },
        {
          "description": "The ARN of the <code>ReportGroup</code>. "
        }
      ]
    },
    "name": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ReportGroupName"
        },
        {
          "description": "The name of the <code>ReportGroup</code>. "
        }
      ]
    },
    "type": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ReportType"
        },
        {
          "description": "<p>The type of the <code>ReportGroup</code>. This can be one of the following values:</p> <dl> <dt>CODE_COVERAGE</dt> <dd> <p>The report group contains code coverage reports.</p> </dd> <dt>TEST</dt> <dd> <p>The report group contains test reports.</p> </dd> </dl>"
        }
      ]
    },
    "exportConfig": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ReportExportConfig"
        },
        {
          "description": "Information about the destination where the raw data of this <code>ReportGroup</code> is exported. "
        }
      ]
    },
    "created": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Timestamp"
        },
        {
          "description": "The date and time this <code>ReportGroup</code> was created. "
        }
      ]
    },
    "lastModified": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Timestamp"
        },
        {
          "description": "The date and time this <code>ReportGroup</code> was last modified. "
        }
      ]
    },
    "tags": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TagList"
        },
        {
          "description": "<p>A list of tag key and value pairs associated with this report group. </p> <p>These tags are available for use by Amazon Web Services services that support CodeBuild report group tags.</p>"
        }
      ]
    },
    "status": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ReportGroupStatusType"
        },
        {
          "description": "<p>The status of the report group. This property is read-only.</p> <p>This can be one of the following values:</p> <dl> <dt>ACTIVE</dt> <dd> <p>The report group is active.</p> </dd> <dt>DELETING</dt> <dd> <p>The report group is in the process of being deleted.</p> </dd> </dl>"
        }
      ]
    }
  }
}