{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codepipeline/refs/heads/main/json-structure/amazon-codepipeline-job-structure.json", "name": "Job", "description": "Represents information about 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": "Other data about a job." } ] }, "nonce": { "allOf": [ { "$ref": "#/components/schemas/Nonce" }, { "description": "A system-generated random number that CodePipeline uses to ensure that the job is being worked on by only one job worker. Use this number in an AcknowledgeJob request." } ] }, "accountId": { "allOf": [ { "$ref": "#/components/schemas/AccountId" }, { "description": "The ID of the Amazon Web Services account to use when performing the job." } ] } } }