Properties
| Name | Type | Description |
|---|---|---|
| streetAddress | string | Street address line. |
| streetAddress2 | string | Additional street address information. |
| city | string | City name. |
| state | string | State, province, or region. |
| postalCode | string | Postal or ZIP code. |
| country | string | ISO 3166-1 alpha-2 country code. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Address",
"type": "object",
"description": "A physical address.",
"properties": {
"streetAddress": {
"type": "string",
"description": "Street address line."
},
"streetAddress2": {
"type": "string",
"description": "Additional street address information."
},
"city": {
"type": "string",
"description": "City name."
},
"state": {
"type": "string",
"description": "State, province, or region."
},
"postalCode": {
"type": "string",
"description": "Postal or ZIP code."
},
"country": {
"type": "string",
"description": "ISO 3166-1 alpha-2 country code."
}
}
}