{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Address", "title": "Address", "type": "object", "properties": { "created_at": { "type": "string", "format": "date-time", "description": "The datetime that this object was created by Merge." }, "modified_at": { "type": "string", "format": "date-time", "description": "The datetime that this object was modified by Merge." }, "type": { "oneOf": [ { "$ref": "#/components/schemas/AddressTypeEnum" }, { "type": "null" } ], "description": "The address type." }, "street_1": { "type": [ "string", "null" ], "description": "Line 1 of the address's street." }, "street_2": { "type": [ "string", "null" ], "description": "Line 2 of the address's street." }, "city": { "type": [ "string", "null" ], "description": "The address's city." }, "state": { "oneOf": [ { "description": "Any type" }, { "type": "null" } ], "description": "The address's state or region." }, "country_subdivision": { "type": [ "string", "null" ], "description": "The address's state or region." }, "country": { "oneOf": [ { "$ref": "#/components/schemas/CountryEnum" }, { "type": "null" } ], "description": "The address's country. The country code in ISO 3166-1 alpha-2 format." }, "zip_code": { "type": [ "string", "null" ], "description": "The address's zip code." } }, "description": "# The Address Object\n### Description\nThe `Address` object is used to represent a contact's or company's address.\n\n### Usage Example\nFetch from the `GET CompanyInfo` endpoint and view the company's addresses." }