{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/RefundResponse", "title": "RefundResponse", "type": "object", "properties": { "refundId": { "type": "string", "format": "uuid" }, "originalChargeId": { "type": "string", "format": "uuid" }, "amount": { "$ref": "#/components/schemas/MonetaryAmount" }, "status": { "type": "string", "enum": [ "COMPLETED", "PENDING" ] }, "refundedAt": { "type": "string", "format": "date-time" } } }