{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/bandwidth/refs/heads/main/json-schema/phone-numbers-address-schema.json", "title": "Address", "description": "A physical address", "type": "object", "properties": { "houseNumber": { "type": "string", "description": "The house/building number" }, "streetName": { "type": "string", "description": "The street name" }, "city": { "type": "string", "description": "The city" }, "stateCode": { "type": "string", "description": "The two-letter state code" }, "zip": { "type": "string", "description": "The ZIP code" }, "country": { "type": "string", "description": "The country code" } } }