{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/zendit/refs/heads/main/json-structure/zendit-api-refund-structure.json", "name": "Refund", "description": "Refund status for an eSIM purchase.", "type": "object", "properties": { "transactionId": { "type": "string", "example": "500123" }, "refundId": { "type": "string", "example": "refund-abc123" }, "status": { "type": "string", "enum": [ "REQUESTED", "APPROVED", "COMPLETED", "REJECTED" ], "example": "APPROVED" }, "amount": { "$ref": "#/components/schemas/Price" }, "createdAt": { "type": "datetime", "example": "2026-05-01T12:00:00Z" } } }