{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codepipeline/refs/heads/main/json-structure/amazon-codepipeline-action-declaration-structure.json", "name": "ActionDeclaration", "description": "ActionDeclaration schema from Amazon CodePipeline", "type": "object", "properties": { "name": { "type": "string", "description": "The action declaration name." }, "actionTypeId": { "type": "object", "properties": { "category": { "type": "string", "enum": [ "Source", "Build", "Deploy", "Test", "Invoke", "Approval" ] }, "owner": { "type": "string" }, "provider": { "type": "string" }, "version": { "type": "string" } } }, "configuration": { "type": "object", "additionalProperties": { "type": "string" } }, "inputArtifacts": { "type": "array", "items": { "type": "object", "properties": { "name": { "type": "string" } } } }, "outputArtifacts": { "type": "array", "items": { "type": "object", "properties": { "name": { "type": "string" } } } } }, "required": [ "name", "actionTypeId" ] }