{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codebuild/refs/heads/main/json-structure/amazon-codebuild-create-report-group-input-structure.json", "name": "CreateReportGroupInput", "description": "CreateReportGroupInput schema from Amazon CodeBuild", "type": "object", "properties": { "name": { "allOf": [ { "$ref": "#/components/schemas/ReportGroupName" }, { "description": " The name of the report group. " } ] }, "type": { "allOf": [ { "$ref": "#/components/schemas/ReportType" }, { "description": " The type of report group. " } ] }, "exportConfig": { "allOf": [ { "$ref": "#/components/schemas/ReportExportConfig" }, { "description": " A ReportExportConfig object that contains information about where the report group test results are exported. " } ] }, "tags": { "allOf": [ { "$ref": "#/components/schemas/TagList" }, { "description": "

A list of tag key and value pairs associated with this report group.

These tags are available for use by Amazon Web Services services that support CodeBuild report group tags.

" } ] } }, "required": [ "name", "type", "exportConfig" ] }