{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/AddressRequest", "title": "AddressRequest", "type": "object", "properties": { "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." }, "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." }, "integration_params": { "type": [ "object", "null" ], "additionalProperties": { "description": "Any type" } }, "linked_account_params": { "type": [ "object", "null" ], "additionalProperties": { "description": "Any type" } } }, "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." }