Properties
| Name | Type | Description |
|---|---|---|
| Line1 | string | |
| Line2 | string | |
| City | string | |
| PostalCode | string | |
| SubdivisionCode | string | |
| CountryCode | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Address",
"title": "Address",
"type": "object",
"properties": {
"Line1": {
"type": "string",
"nullable": true
},
"Line2": {
"type": "string",
"nullable": true
},
"City": {
"type": "string",
"nullable": true
},
"PostalCode": {
"type": "string",
"nullable": true
},
"SubdivisionCode": {
"type": "string",
"nullable": true
},
"CountryCode": {
"type": "string",
"nullable": true
}
},
"additionalProperties": false,
"x-schema-id": "Address"
}