{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/checkout-payment-method-issuer-schema.json", "title": "PaymentMethodIssuer", "description": "PaymentMethodIssuer schema from Adyen API", "type": "object", "properties": { "disabled": { "default": false, "description": "A boolean value indicating whether this issuer is unavailable. Can be `true` whenever the issuer is offline.", "type": "boolean" }, "id": { "description": "The unique identifier of this issuer, to submit in requests to /payments.", "type": "string" }, "name": { "description": "A localized name of the issuer.", "type": "string" } }, "required": [ "id", "name" ] }