Nomba · Schema
Account
PaymentsFintechBankingTransfersVirtual AccountsCheckoutCross-Border PaymentsCards
Properties
| Name | Type | Description |
|---|---|---|
| accountId | string | The unique identifier for the account. |
| accountName | string | The name associated with the account. |
| accountType | string | The type of the account. |
| status | string | The current status of the account. |
| currency | string | The currency associated with the account. |
| createdAt | string | The date and time the account was created. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Account",
"title": "Account",
"type": "object",
"properties": {
"accountId": {
"type": "string",
"description": "The unique identifier for the account."
},
"accountName": {
"type": "string",
"description": "The name associated with the account."
},
"accountType": {
"type": "string",
"description": "The type of the account."
},
"status": {
"type": "string",
"description": "The current status of the account."
},
"currency": {
"type": "string",
"description": "The currency associated with the account.",
"example": "NGN"
},
"createdAt": {
"type": "string",
"format": "date-time",
"description": "The date and time the account was created."
}
}
}