address
An Address represents a structured address. The address elements will be in the countries local language. In cases a country uses more than one language the language that is predominantly used at the location of the address.
| Element | Description | Type | Mandatory |
|---|---|---|---|
| street | Name of street or route | string | no |
| houseNumber | House number | integer | no |
| houseNumberSuffix | Suffix to the House number | string | no |
| building | Indicates a named location (building or set of buildings) | string | no |
| postalCode | National postal code as used for postal mail | string | no |
| city | City | string | no |
| countryCode | ISO 3166-1 2-letter country code | string (2) | yes |
| formattedAddress | Formatted address, e.g. for postal mail. Does not contain country. | string | no |
Table 9: Address Model elements
Example
| { “street”: “Oude Haven”, “houseNumber”: 10, “houseNumberSuffix”: “A”, “building”: “’t Waaghuis”, “postalCode”: “4301 DB”, “city”: “Zierikzee”, “countryCode”: “NL”, “street”: “’t Waaghuis, Oude Haven 10A, 4301 DB Zierikzee” } |
|---|