{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codepipeline/refs/heads/main/json-structure/amazon-codepipeline-pipeline-context-structure.json", "name": "PipelineContext", "description": "

Represents information about a pipeline to a job worker.

PipelineContext contains pipelineArn and pipelineExecutionId for custom action jobs. The pipelineArn and pipelineExecutionId fields are not populated for ThirdParty action jobs.

", "type": "object", "properties": { "pipelineName": { "allOf": [ { "$ref": "#/components/schemas/PipelineName" }, { "description": "The name of the pipeline. This is a user-specified value. Pipeline names must be unique across all pipeline names under an Amazon Web Services account." } ] }, "stage": { "allOf": [ { "$ref": "#/components/schemas/StageContext" }, { "description": "The stage of the pipeline." } ] }, "action": { "allOf": [ { "$ref": "#/components/schemas/ActionContext" }, { "description": "The context of an action to a job worker in the stage of a pipeline." } ] }, "pipelineArn": { "allOf": [ { "$ref": "#/components/schemas/PipelineArn" }, { "description": "The Amazon Resource Name (ARN) of the pipeline." } ] }, "pipelineExecutionId": { "allOf": [ { "$ref": "#/components/schemas/PipelineExecutionId" }, { "description": "The execution ID of the pipeline." } ] } } }