{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ReplacementDecisionRequest", "title": "ReplacementDecisionRequest", "type": "object", "required": [ "status" ], "properties": { "status": { "type": "string", "enum": [ "APPROVED", "REJECTED" ], "description": "The customer's decision on the replacement. APPROVED accepts the replacement. REJECTED declines the replacement and triggers an automatic refund." } } }