{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codepipeline/refs/heads/main/json-schema/amazon-codepipeline-put-job-failure-result-input-schema.json",
"title": "PutJobFailureResultInput",
"description": "Represents the input of a PutJobFailureResult action.",
"type": "object",
"properties": {
"jobId": {
"allOf": [
{
"$ref": "#/components/schemas/JobId"
},
{
"description": "The unique system-generated ID of the job that failed. This is the same ID returned from PollForJobs."
}
]
},
"failureDetails": {
"allOf": [
{
"$ref": "#/components/schemas/FailureDetails"
},
{
"description": "The details about the failure of a job."
}
]
}
},
"required": [
"jobId",
"failureDetails"
]
}