{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/paytronix/refs/heads/main/json-structure/server-api-recharge-request-structure.json", "name": "RechargeRequest", "description": "RechargeRequest schema from Paytronix Server API", "type": "object", "properties": { "merchantId": { "type": "int32", "example": 1000 }, "printedCardNumber": { "type": "string", "example": "60490012345678" }, "amount": { "type": "double", "example": 25.0 }, "paymentMethod": { "type": "object", "properties": { "type": { "type": "string", "example": "CREDIT_CARD" }, "token": { "type": "string" }, "lastFour": { "type": "string", "example": "4242" } } }, "address": { "$ref": "#/components/schemas/Address" } }, "required": [ "merchantId", "printedCardNumber", "amount", "paymentMethod" ] }