{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/paytronix/refs/heads/main/json-structure/server-api-gift-request-structure.json", "name": "GiftRequest", "description": "GiftRequest schema from Paytronix Server API", "type": "object", "properties": { "merchantId": { "type": "int32", "example": 1000 }, "storeCode": { "type": "string", "example": "1" }, "cardInfo": { "$ref": "#/components/schemas/CardInfo" }, "amount": { "type": "double", "example": 25.0 }, "checkNumber": { "type": "string" }, "cashier": { "type": "string" }, "terminalId": { "type": "string" }, "externalTransactionId": { "type": "string" } }, "required": [ "merchantId", "storeCode", "cardInfo", "amount" ] }