{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/paytronix/refs/heads/main/json-structure/server-api-account-information-reply-structure.json", "name": "AccountInformationReply", "description": "AccountInformationReply schema from Paytronix Server API", "type": "object", "properties": { "result": { "type": "string", "example": "success" }, "username": { "type": "string", "example": "jdoe" }, "accountStatus": { "type": "string", "example": "ACTIVE" }, "queryCardStatus": { "type": "string", "example": "ACTIVE" }, "registrationStatus": { "type": "string", "example": "REGISTERED" }, "cardTemplateCode": { "type": "string", "example": "1" }, "tierCode": { "type": "string", "example": "GOLD" }, "primaryCard": { "type": "string", "example": "60490012345678" }, "additionalCards": { "type": "array", "items": { "type": "string" } }, "walletBalances": { "type": "array", "items": { "$ref": "#/components/schemas/WalletBalance" } } } }