{
"$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-context-schema.json",
"title": "StageContext",
"description": "Represents information about a stage to a job worker.",
"type": "object",
"properties": {
"name": {
"allOf": [
{
"$ref": "#/components/schemas/StageName"
},
{
"description": "The name of the stage."
}
]
}
}
}