{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PromotionStatus", "title": "PromotionStatus", "type": "object", "properties": { "name": { "type": "string" }, "version": { "type": "string" }, "current_environment": { "type": "string" }, "promotions": { "type": "array", "items": { "type": "object", "properties": { "status": { "type": "string", "enum": [ "COMPLETED", "IN_PROGRESS", "FAILED" ] }, "environment": { "type": "string" }, "created": { "type": "string", "format": "date-time" }, "created_by": { "type": "string" } } } } } }