{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/StoredBankAccount", "title": "StoredBankAccount", "type": "object", "x-internal": false, "properties": { "type": { "type": "string", "description": "Type to classify this payment instrument (required)", "enum": [ "stored_bank_account" ] }, "token": { "description": "Identifier representing this stored bank account (required)", "type": "string", "minLength": 64, "maxLength": 64 } }, "x-examples": { "example-1": { "type": "stored_bank_account", "token": "stringstringstringstringstringstringstringstringstringstringstri" } } }