Avaloq · Schema
Customer
Banking customer record
BankingDigital BankingFinancial ServicesFintechPaymentsWealth Management
Properties
| Name | Type | Description |
|---|---|---|
| id | string | Customer ID |
| firstName | string | |
| lastName | string | |
| string | ||
| phone | string | |
| status | string | |
| kycStatus | string | |
| clientSince | string | |
| residenceCountry | string | |
| taxResidency | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Customer",
"title": "Customer",
"type": "object",
"description": "Banking customer record",
"properties": {
"id": {
"type": "string",
"description": "Customer ID",
"example": "CUST-001234"
},
"firstName": {
"type": "string",
"example": "Jane"
},
"lastName": {
"type": "string",
"example": "Smith"
},
"email": {
"type": "string",
"format": "email",
"example": "[email protected]"
},
"phone": {
"type": "string",
"example": "+41791234567"
},
"status": {
"type": "string",
"enum": [
"ACTIVE",
"INACTIVE",
"SUSPENDED"
],
"example": "ACTIVE"
},
"kycStatus": {
"type": "string",
"enum": [
"PENDING",
"APPROVED",
"REJECTED",
"REQUIRES_REVIEW"
],
"example": "APPROVED"
},
"clientSince": {
"type": "string",
"format": "date",
"example": "2020-01-15"
},
"residenceCountry": {
"type": "string",
"example": "CH"
},
"taxResidency": {
"type": "string",
"example": "CH"
}
}
}