# The Payout Methods Bank Account Spec object ## Attributes - `object` (string, value is "v2.money_management.payout_methods_bank_account_spec") String representing the object’s type. Objects of the same type share the same value of the object field. - `countries` (map) The list of specs by country. - `livemode` (boolean) Has the value `true` if the object exists in live mode or the value `false` if the object exists in test mode. ### The Payout Methods Bank Account Spec object ```json { "object": "v2.money_management.payout_methods_bank_account_spec", "countries": { "US": { "fields": [ { "local_name": "account_number", "local_name_human": { "localization_key": "payout_methods.bank_account.account_number", "content": "Account Number" }, "max_length": 17, "min_length": 1, "placeholder": "000123456789", "stripe_name": "account_number", "validation_regex": "\\A\\d{1,17}\\z" }, { "local_name": "routing_number", "local_name_human": { "localization_key": "payout_methods.bank_account.routing_number", "content": "Routing Number" }, "max_length": 9, "min_length": 9, "placeholder": "110000000", "stripe_name": "routing_number", "validation_regex": "\\A(01|02|03|04|05|06|07|08|09|10|11|12|21|22|23|24|25|26|27|28|29|30|31|32)[0-9]{7}\\z" } ] } } } ```