Amazon CodePipeline · JSON Structure

Amazon Codepipeline Stage Declaration Structure

StageDeclaration schema from Amazon CodePipeline

Type: object Properties: 2 Required: 2
AmazonCI/CDContinuous DeliveryDevOpsPipelineRelease Automation

StageDeclaration is a JSON Structure definition published by Amazon CodePipeline, describing 2 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

name actions

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-stage-declaration-structure.json",
  "name": "StageDeclaration",
  "description": "StageDeclaration schema from Amazon CodePipeline",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "The name of the stage."
    },
    "actions": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ActionDeclaration"
      }
    }
  },
  "required": [
    "name",
    "actions"
  ]
}