{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codebuild/refs/heads/main/json-schema/amazon-codebuild-build-not-deleted-schema.json",
"title": "BuildNotDeleted",
"description": "Information about a build that could not be successfully deleted.",
"type": "object",
"properties": {
"id": {
"allOf": [
{
"$ref": "#/components/schemas/NonEmptyString"
},
{
"description": "The ID of the build that could not be successfully deleted."
}
]
},
"statusCode": {
"allOf": [
{
"$ref": "#/components/schemas/String"
},
{
"description": "Additional information about the build that could not be successfully deleted."
}
]
}
}
}