{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codebuild/refs/heads/main/json-structure/amazon-codebuild-build-summary-structure.json", "name": "BuildSummary", "description": "Contains summary information about a batch build group.", "type": "object", "properties": { "arn": { "allOf": [ { "$ref": "#/components/schemas/String" }, { "description": "The batch build ARN." } ] }, "requestedOn": { "allOf": [ { "$ref": "#/components/schemas/Timestamp" }, { "description": "When the build was started, expressed in Unix time format." } ] }, "buildStatus": { "allOf": [ { "$ref": "#/components/schemas/StatusType" }, { "description": "

The status of the build group.

FAILED

The build group failed.

FAULT

The build group faulted.

IN_PROGRESS

The build group is still in progress.

STOPPED

The build group stopped.

SUCCEEDED

The build group succeeded.

TIMED_OUT

The build group timed out.

" } ] }, "primaryArtifact": { "allOf": [ { "$ref": "#/components/schemas/ResolvedArtifact" }, { "description": "A ResolvedArtifact object that represents the primary build artifacts for the build group." } ] }, "secondaryArtifacts": { "allOf": [ { "$ref": "#/components/schemas/ResolvedSecondaryArtifacts" }, { "description": "An array of ResolvedArtifact objects that represents the secondary build artifacts for the build group." } ] } } }