{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "SavedPaymentMethodsReply", "description": "SavedPaymentMethodsReply schema from Paytronix Server API", "$id": "https://raw.githubusercontent.com/api-evangelist/paytronix/refs/heads/main/json-schema/server-api-saved-payment-methods-reply-schema.json", "type": "object", "properties": { "result": { "type": "string", "example": "success" }, "paymentMethods": { "type": "array", "items": { "type": "object", "properties": { "type": { "type": "string", "example": "CREDIT_CARD" }, "cardholderName": { "type": "string", "example": "Jane Doe" }, "lastFour": { "type": "string", "example": "4242" }, "defaultUsages": { "type": "array", "items": { "type": "string" } } } } } } }