
| Property Name | Type | Description |
|---|---|---|
| Attn | string | A String value where length <= 35 |
| Address1 | string | A String value where length <= 35 |
| Address2 | string | A String value where length <= 35 |
| Address3 | string | A String value where length <= 35 |
| City | string | A String value where length <= 30 |
| State | string | A String value where length <= 2 |
| PostalCode | string | A String value where length <= 9 |
| Country | string | A String value where length <= 50 |
| CountryCode | string |
A String value
where
length >=
2
and
length <=
2
and
value matches regex '^([A-Z]{2})$'
Description : [ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2)
|
| Additional Properties | Type | Description |
| Any Property | any | /definitions/Address/additionalProperties (common.json) |
"Address": {
"type": "object",
"additionalProperties": {
"not": {}
},
"properties": {
"Attn": {
"type": "string",
"maxLength": 35
},
"Address1": {
"type": "string",
"maxLength": 35
},
"Address2": {
"type": "string",
"maxLength": 35
},
"Address3": {
"type": "string",
"maxLength": 35
},
"City": {
"type": "string",
"maxLength": 30
},
"State": {
"type": "string",
"maxLength": 2
},
"PostalCode": {
"type": "string",
"maxLength": 9
},
"Country": {
"type": "string",
"maxLength": 50
},
"CountryCode": {
"type": "string",
"description": "[ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2)",
"maxLength": 2,
"minLength": 2,
"pattern": "^([A-Z]{2})$"
}
},
"required": []
}