Properties
| Name | Type | Description |
|---|---|---|
| account_number | string | |
| account_number_last4 | string | |
| account_type | string | |
| bank_name | string | |
| company_id | string | |
| created_at | string | |
| id | string | |
| is_primary | boolean | |
| name | string | |
| raw | object | |
| routing_number | string | |
| updated_at | string | |
| user_id | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/HrisBankaccount",
"title": "HrisBankaccount",
"properties": {
"account_number": {
"type": "string"
},
"account_number_last4": {
"type": "string"
},
"account_type": {
"enum": [
"CHECKING",
"SAVINGS"
],
"type": "string",
"x-speakeasy-unknown-values": "allow"
},
"bank_name": {
"type": "string"
},
"company_id": {
"type": "string"
},
"created_at": {
"format": "date-time",
"type": "string"
},
"id": {
"type": "string"
},
"is_primary": {
"type": "boolean"
},
"name": {
"type": "string"
},
"raw": {
"additionalProperties": true,
"type": "object"
},
"routing_number": {
"type": "string"
},
"updated_at": {
"format": "date-time",
"type": "string"
},
"user_id": {
"type": "string"
}
},
"type": "object"
}