Temenos Transact · Schema
Address
Physical or mailing address
BankingCore BankingDigital BankingEnterpriseFinancial ServicesFintech
Properties
| Name | Type | Description |
|---|---|---|
| addressType | string | Type of address |
| addressLine1 | string | First line of address |
| addressLine2 | string | Second line of address |
| city | string | City name |
| state | string | State or province |
| postCode | string | Postal or ZIP code |
| country | string | Country code (ISO 3166) |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Address",
"type": "object",
"description": "Physical or mailing address",
"properties": {
"addressType": {
"type": "string",
"description": "Type of address"
},
"addressLine1": {
"type": "string",
"description": "First line of address"
},
"addressLine2": {
"type": "string",
"description": "Second line of address"
},
"city": {
"type": "string",
"description": "City name"
},
"state": {
"type": "string",
"description": "State or province"
},
"postCode": {
"type": "string",
"description": "Postal or ZIP code"
},
"country": {
"type": "string",
"description": "Country code (ISO 3166)"
}
}
}