Properties
| Name | Type | Description |
|---|---|---|
| houseNumber | string | The house/building number |
| streetName | string | The street name |
| city | string | The city |
| stateCode | string | The two-letter state code |
| zip | string | The ZIP code |
| country | string | The country code |
JSON Schema
{
"$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"
}
}
}