Unified.to · Schema

CrmEventFormField

IntegrationsUnified API

Properties

Name Type Description
name string
options object
required boolean
type string
View JSON Schema on GitHub

JSON Schema

unified-to-crmeventformfield-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CrmEventFormField",
  "title": "CrmEventFormField",
  "properties": {
    "name": {
      "type": "string"
    },
    "options": {
      "$ref": "#/components/schemas/property_CrmEventFormField_options"
    },
    "required": {
      "type": "boolean"
    },
    "type": {
      "enum": [
        "TEXT",
        "NUMBER",
        "DATE",
        "BOOLEAN",
        "MULTIPLE_CHOICE",
        "FILE",
        "TEXTAREA",
        "SINGLE_SELECT",
        "MULTIPLE_SELECT",
        "EMAIL",
        "PHONE",
        "YES_NO",
        "CURRENCY",
        "URL"
      ],
      "type": "string",
      "x-speakeasy-unknown-values": "allow"
    }
  },
  "type": "object"
}