address
A physical or mailing address.
A physical or mailing address.
| Field | Type | Required | Description |
|---|---|---|---|
streetAddress | string | No | The house number and street address |
streetAddress2 | string | No | The apartment, suite, or other secondary address |
city | string | No | The city or municipality part of the address |
stateProvince | string | No | The state or province |
zipPostal | string | No | The postal or zip code |
country | string | No | The name of the country |
This object is often used to extend other objects that include a physical location, such as real estate listing addresses and user home addresses.
https://cdn.brytecore.com/packages/schemas/address.json
https://github.com/Brytecore/brytescore-api-core-packages/blob/master/schemas/address.json
1/* address example */23var address = {4 "streetAddress": "84 Rainey Street",5 "city": "Arlen",6 "stateProvince": "TX",7 "zipPostal": "75040"8}
Updated July 25, 2026