Pipeline

Pipeline schema from Amazon CodePipeline

AmazonCI/CDContinuous DeliveryDevOpsPipelineRelease Automation

Properties

Name Type Description
name string The name of the pipeline.
roleArn string The ARN of the IAM role used by the pipeline.
stages array
version integer The version number of the pipeline.
View JSON Schema on GitHub

JSON Schema

amazon-codepipeline-pipeline-schema.json Raw ↑
{
  "$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-pipeline-schema.json",
  "title": "Pipeline",
  "description": "Pipeline schema from Amazon CodePipeline",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "The name of the pipeline."
    },
    "roleArn": {
      "type": "string",
      "description": "The ARN of the IAM role used by the pipeline."
    },
    "stages": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/StageDeclaration"
      }
    },
    "version": {
      "type": "integer",
      "description": "The version number of the pipeline."
    }
  }
}