Properties
| Name | Type | Description |
|---|---|---|
| addressLine1 | string | First line of the address |
| addressLine2 | string | Second line of the address |
| city | string | City |
| state | string | State or province |
| postalCode | string | Postal or ZIP code |
| country | string | Country code |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Address",
"title": "Address",
"type": "object",
"properties": {
"addressLine1": {
"type": "string",
"description": "First line of the address"
},
"addressLine2": {
"type": "string",
"description": "Second line of the address"
},
"city": {
"type": "string",
"description": "City"
},
"state": {
"type": "string",
"description": "State or province"
},
"postalCode": {
"type": "string",
"description": "Postal or ZIP code"
},
"country": {
"type": "string",
"description": "Country code"
}
}
}