{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PaymentMethodsResponse", "title": "PaymentMethodsResponse", "properties": { "paymentMethods": { "description": "Detailed list of payment methods required to generate payment forms.", "items": { "$ref": "#/components/schemas/PaymentMethod" }, "type": "array" }, "storedPaymentMethods": { "x-addedInVersion": "49", "description": "List of all stored payment methods.", "items": { "$ref": "#/components/schemas/StoredPaymentMethod" }, "type": "array" } }, "type": "object" }