Unified.to · Schema

ScimAddress

IntegrationsUnified API

Properties

Name Type Description
country string
formatted string
locality string
postalCode string
region string
streetAddress string
type string
View JSON Schema on GitHub

JSON Schema

unified-to-scimaddress-schema.json Raw ↑
{
  "$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"
}