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",
"$id": "#/components/schemas/Address",
"title": "Address",
"type": "object",
"description": "A physical address.",
"properties": {
"streetAddress": {
"type": "string",
"description": "Street address line.",
"example": "123 Main Street"
},
"streetAddress2": {
"type": "string",
"description": "Additional street address information.",
"example": "Suite 400"
},
"city": {
"type": "string",
"description": "City name.",
"example": "Austin"
},
"state": {
"type": "string",
"description": "State, province, or region.",
"example": "TX"
},
"postalCode": {
"type": "string",
"description": "Postal or ZIP code.",
"example": "78701"
},
"country": {
"type": "string",
"description": "ISO 3166-1 alpha-2 country code.",
"example": "US"
}
}
}