{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/FeatureFlagStatusResponse", "title": "FeatureFlagStatusResponse", "type": "object", "properties": { "status": { "type": "string", "description": "Flag status: active, stale, deleted, or unknown" }, "reason": { "type": "string", "description": "Human-readable explanation of the status" } }, "required": [ "reason", "status" ] }