Unified.to · Schema

UcEmail

IntegrationsUnified API

Properties

Name Type Description
email string
type string
View JSON Schema on GitHub

JSON Schema

unified-to-ucemail-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UcEmail",
  "title": "UcEmail",
  "properties": {
    "email": {
      "type": "string"
    },
    "type": {
      "enum": [
        "WORK",
        "HOME",
        "OTHER"
      ],
      "type": "string",
      "x-speakeasy-unknown-values": "allow"
    }
  },
  "required": [
    "email"
  ],
  "type": "object"
}