{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PromotionRequest", "title": "PromotionRequest", "type": "object", "properties": { "release_bundle_name": { "type": "string" }, "release_bundle_version": { "type": "string" }, "environment": { "type": "string", "description": "Target environment name (e.g., DEV, STAGING, PROD)" }, "included_repository_keys": { "type": "array", "items": { "type": "string" } }, "overwrite_existing_artifacts": { "type": "boolean", "default": false } }, "required": [ "release_bundle_name", "release_bundle_version", "environment" ] }