address

A physical or mailing address.

A physical or mailing address.

FieldTypeRequiredDescription
streetAddressstringNo

The house number and street address

streetAddress2stringNo

The apartment, suite, or other secondary address

citystringNo

The city or municipality part of the address

stateProvincestringNo

The state or province

zipPostalstringNo

The postal or zip code

countrystringNo

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 */
2
3var address = {
4 "streetAddress": "84 Rainey Street",
5 "city": "Arlen",
6 "stateProvince": "TX",
7 "zipPostal": "75040"
8}

Updated July 25, 2026