{ "$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" }