{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Address", "title": "Address", "type": "object", "properties": { "addressLine1": { "type": "string", "example": "771 Alder Drive", "description": "Address Line 1." }, "addressLine2": { "type": "string", "example": "Cisco Site 5", "description": "Address Line 2." }, "city": { "type": "string", "example": "Milpitas", "description": "Customer's city." }, "stateOrProvince": { "type": "string", "example": "CA", "description": "State or Province of the customer." }, "zipOrPostalCode": { "type": "string", "example": "95035", "description": "Postal/Zip code of the customer." }, "country": { "type": "string", "example": "`US`:", "description": "ISO2 country code of the customer, 2 characters. This attribute is used to determine the default Dial In number for the Webex Meeting Sites. Refer to the Address section of [help page](https://www.cisco.com/c/en/us/td/docs/voice_ip_comm/cloudCollaboration/wholesale_rtm/wbxbw_b_wholesale-rtm-solution-guide/wbxbw_m_overview-of-webex-wholesale.html#Cisco_Reference.dita_7875bb3e-10c0-4214-8173-7845db31c7a6) for more information." } } }