Jack Henry & Associates · Schema
Banno Account
Financial ServicesBankingCore BankingDigital BankingPaymentsLendingFraudOpen BankingCommunity BanksCredit UnionsFintechOAuthOpenID Connect
Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| name | string | |
| numbers | object | |
| accountType | string | |
| accountStatus | string | |
| balance | number | |
| availableBalance | number | |
| fetchedDate | string | |
| institution | object | |
| canCreatePayments | boolean | |
| canTransferFrom | boolean | |
| hidden | boolean | |
| regD | object | |
| formattedMetaData | array |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://github.com/api-evangelist/jack-henry/json-schema/banno-account-schema.json",
"title": "Banno Account",
"type": "object",
"required": ["id", "name", "accountType", "accountStatus", "balance"],
"properties": {
"id": { "type": "string", "format": "uuid" },
"name": { "type": "string" },
"numbers": {
"type": "object",
"properties": {
"masked": { "type": "string", "pattern": "^[*0-9]+$" }
}
},
"accountType": {
"type": "string",
"enum": ["Deposit", "Debt", "LineOfCredit", "Investment"]
},
"accountStatus": {
"type": "string",
"enum": ["Active", "Closed", "Dormant", "Frozen"]
},
"balance": { "type": "number" },
"availableBalance": { "type": "number" },
"fetchedDate": { "type": "string", "format": "date-time" },
"institution": {
"type": "object",
"properties": {
"id": { "type": "string", "format": "uuid" },
"name": { "type": "string" }
}
},
"canCreatePayments": { "type": "boolean" },
"canTransferFrom": { "type": "boolean" },
"hidden": { "type": "boolean" },
"regD": {
"type": "object",
"properties": {
"limit": { "type": "integer" },
"used": { "type": "integer" }
}
},
"formattedMetaData": {
"type": "array",
"items": {
"type": "object",
"properties": {
"label": { "type": "string" },
"value": { "type": "string" }
}
}
}
}
}