Properties
| Name | Type | Description |
|---|---|---|
| account_number | string | Account number |
| account_status | string | Account Status |
| account_type | string | The type of the account. In lead mode, this always takes the value of the template. If not specified in shadow mode, CHECKING will be assumed. |
| balance_ceiling | object | |
| balance_floor | object | |
| creation_time | string | Account creation time |
| currency | string | Account currency or account settlement currency. ISO 4217 alphabetic currency code. Default USD |
| customer_type | string | Customer type |
| financial_institution | object | |
| id | string | The unique identifier of the account the statement belongs to |
| last_updated_time | string | Account last modification time |
| nickname | string | User provided account nickname |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/account_summary",
"title": "Account Summary",
"properties": {
"account_number": {
"description": "Account number",
"type": "string"
},
"account_status": {
"description": "Account Status",
"type": "string"
},
"account_type": {
"description": "The type of the account. In lead mode, this always takes the value of the template. If not specified in shadow mode, CHECKING will be assumed.\n",
"type": "string"
},
"balance_ceiling": {
"properties": {
"balance": {
"description": "Maximum balance in the account's currency. Unit in cents.",
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"balance_floor": {
"properties": {
"balance": {
"description": "Minimum balance in the account's currency. Unit in cents.",
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"creation_time": {
"description": "Account creation time",
"format": "date-time",
"type": "string"
},
"currency": {
"description": "Account currency or account settlement currency. ISO 4217 alphabetic currency code. Default USD",
"example": "YER",
"pattern": "^[A-Z]{3}$",
"type": "string"
},
"customer_type": {
"description": "Customer type",
"type": "string"
},
"financial_institution": {
"$ref": "#/components/schemas/financial_institution",
"readOnly": true
},
"id": {
"description": "The unique identifier of the account the statement belongs to",
"format": "uuid",
"type": "string"
},
"last_updated_time": {
"description": "Account last modification time",
"format": "date-time",
"type": "string"
},
"nickname": {
"description": "User provided account nickname",
"type": "string"
}
},
"type": "object"
}