Amazon CodePipeline · JSON Structure

Amazon Codepipeline Job Structure

Represents information about a job.

Type: object Properties: 4
AmazonCI/CDContinuous DeliveryDevOpsPipelineRelease Automation

Job is a JSON Structure definition published by Amazon CodePipeline, describing 4 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

id data nonce accountId

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$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 <a>AcknowledgeJob</a> request."
        }
      ]
    },
    "accountId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/AccountId"
        },
        {
          "description": "The ID of the Amazon Web Services account to use when performing the job."
        }
      ]
    }
  }
}