{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/blockchain/refs/heads/main/json-schema/exchange-withdrawal-schema.json", "title": "Withdrawal", "description": "A withdrawal record.", "type": "object", "properties": { "withdrawalId": { "type": "string", "example": "21745988181" }, "amount": { "type": "number" }, "currency": { "type": "string", "example": "BTC" }, "beneficiary": { "type": "string" }, "state": { "type": "string", "description": "Withdrawal state \u2014 `NONE`, `IN_PROGRESS`, `COMPLETE`, `REJECTED`.", "example": "open" }, "timestamp": { "type": "integer", "format": "int64", "example": 1748609400000 }, "fee": { "type": "number" } } }