Properties
| Name | Type | Description |
|---|---|---|
| country | string | |
| formatted | string | |
| locality | string | |
| postalCode | string | |
| region | string | |
| streetAddress | string | |
| type | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ScimAddress",
"title": "ScimAddress",
"properties": {
"country": {
"type": "string"
},
"formatted": {
"type": "string"
},
"locality": {
"type": "string"
},
"postalCode": {
"type": "string"
},
"region": {
"type": "string"
},
"streetAddress": {
"type": "string"
},
"type": {
"enum": [
"work",
"home",
"other"
],
"type": "string",
"x-speakeasy-unknown-values": "allow"
}
},
"type": "object"
}