Truist Financial · Schema
Truist Account
Represents a Truist deposit account for personal, small business, or commercial banking.
BankingFinancial ServicesOpen BankingCommercial BankingPersonal BankingPaymentsAccountsTransactionsFortune 500
Properties
| Name | Type | Description |
|---|---|---|
| accountId | string | Unique account identifier assigned by Truist. |
| accountNumber | string | Masked account number (last 4 digits visible). |
| accountType | string | Type of deposit account. |
| accountName | string | Account nickname or display name. |
| routingNumber | string | ABA routing/transit number for the account. |
| status | string | Current operational status of the account. |
| currency | string | ISO 4217 currency code for the account. |
| openedDate | string | Date the account was opened. |
| customerId | string | Associated customer or organization identifier (commercial accounts). |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/truist-financial/main/json-schema/truist-financial-account-schema.json",
"title": "Truist Account",
"description": "Represents a Truist deposit account for personal, small business, or commercial banking.",
"type": "object",
"properties": {
"accountId": {
"type": "string",
"description": "Unique account identifier assigned by Truist."
},
"accountNumber": {
"type": "string",
"description": "Masked account number (last 4 digits visible)."
},
"accountType": {
"type": "string",
"enum": ["CHECKING", "SAVINGS", "MONEY_MARKET", "CERTIFICATE_OF_DEPOSIT", "SWEEP"],
"description": "Type of deposit account."
},
"accountName": {
"type": "string",
"description": "Account nickname or display name."
},
"routingNumber": {
"type": "string",
"description": "ABA routing/transit number for the account."
},
"status": {
"type": "string",
"enum": ["ACTIVE", "INACTIVE", "CLOSED"],
"description": "Current operational status of the account."
},
"currency": {
"type": "string",
"default": "USD",
"description": "ISO 4217 currency code for the account."
},
"openedDate": {
"type": "string",
"format": "date",
"description": "Date the account was opened."
},
"customerId": {
"type": "string",
"description": "Associated customer or organization identifier (commercial accounts)."
}
},
"required": ["accountId", "accountType", "status", "currency"]
}