StageDeclaration schema from Amazon CodePipeline
{ "$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-stage-declaration-schema.json", "title": "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" ] }