{
"$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-job-details-schema.json",
"title": "JobDetails",
"description": "Represents information about the details of a job.",
"type": "object",
"properties": {
"id": {
"allOf": [
{
"$ref": "#/components/schemas/JobId"
},
{
"description": "The unique system-generated ID of the job."
}
]
},
"data": {
"allOf": [
{
"$ref": "#/components/schemas/JobData"
},
{
"description": "Represents other information about a job required for a job worker to complete the job. "
}
]
},
"accountId": {
"allOf": [
{
"$ref": "#/components/schemas/AccountId"
},
{
"description": "The Amazon Web Services account ID associated with the job."
}
]
}
}
}