Every Business can have different addresses. Each address has a source
attribute that show where was that information obtained
This fields contains an array filled with Addresses Objects. They represents all the addresses we found for a given business.
The Addresss Object
Property | Type | Description |
street | String | True if the business is registered in the tax office |
province | String | Address provincer |
city | String | Address city |
state | String | Address state |
postal_code | Integer | Address postal code (zip code) |
full_address | String | The full address in a human format |
source | String | Represents the datasource where the address was obtained. |
created_at | String | ISO 3166-1 date. |
The complete JSON representation of the resource
{
"addresses": [
{
"street": "padre hurtado 8466",
"province": "la florida",
"city": "santiago",
"state": "region metropolitana",
"postal_code": null,
"full_address": "padre hurtado 8466, la florida, santiago, region metropolitana",
"source": "mop",
"created_at": "2022-05-06"
},
{
"street": null,
"province": "LA FLORIDA",
"city": null,
"state": "Region METROPOLITANA DE SANTIAGO",
"postal_code": null,
"full_address": "LA FLORIDA, Region METROPOLITANA DE SANTIAGO",
"source": "constitution",
"created_at": "2022-05-13"
}
]
}