Unified.to · Schema

ScimEmail

IntegrationsUnified API

Properties

Name Type Description
display string
primary boolean
type string
value string
View JSON Schema on GitHub

JSON Schema

unified-to-scimemail-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ScimEmail",
  "title": "ScimEmail",
  "properties": {
    "display": {
      "type": "string"
    },
    "primary": {
      "type": "boolean"
    },
    "type": {
      "enum": [
        "work",
        "home",
        "other"
      ],
      "type": "string",
      "x-speakeasy-unknown-values": "allow"
    },
    "value": {
      "type": "string"
    }
  },
  "required": [
    "type"
  ],
  "type": "object"
}