[KYC-Match]: Legal Address Classification (Multi-Address Support) #193
Replies: 3 comments
-
@FabrizioMoggio, an issue has been opened on a quite similar subject #151 |
Beta Was this translation helpful? Give feedback.
-
At KPN we have 2 adresses, a contact address, and a billing address (in case you want to have a paper bill send to another address). |
Beta Was this translation helpful? Give feedback.
-
The discussion continues in #151 |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
In countries like Italy, users may legally declare multiple addresses (residence, domicile, temporary residence). We suggest restructuring the current address handling as an array of address objects, each with a defined legal purpose:
addresses:
type: array
items:
type: object
properties:
addressType:
type: string
enum: [RESIDENCE, DOMICILE, TEMPORARY_RESIDENCE, OTHER]
description: Legal classification of the address.
streetName: string
streetNumber: string
houseNumberExtension: string
locality: string
region: string
postalCode: string
country:
type: string
description: ISO 3166-1 alpha-2
Why?
• Aligns better with civil law systems.
• Enables richer and more precise address matching.
• Removes ambiguity on what the current address field represents.
Beta Was this translation helpful? Give feedback.
All reactions