{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/TransferResponse", "title": "TransferResponse", "type": "object", "properties": { "code": { "type": "string", "description": "Response status code.", "example": "00" }, "description": { "type": "string", "description": "Human-readable description of the response.", "example": "Success" }, "data": { "type": "object", "properties": { "transactionId": { "type": "string", "description": "The unique identifier for the transfer transaction." }, "status": { "type": "string", "description": "The current status of the transfer.", "enum": [ "pending", "successful", "failed" ] }, "amount": { "type": "number", "format": "double", "description": "The amount transferred." }, "fee": { "type": "number", "format": "double", "description": "The fee charged for the transfer." }, "merchantTxRef": { "type": "string", "description": "The merchant transaction reference provided in the request." }, "createdAt": { "type": "string", "format": "date-time", "description": "The date and time the transfer was initiated." } } } } }