Unified.to · Schema

FormField

IntegrationsUnified API

Properties

Name Type Description
choices object
created_at string
default_value string
description string
id string
is_active boolean
is_required boolean
max number
max_length number
min number
min_length number
name string
order number
pattern string
type string
updated_at string
View JSON Schema on GitHub

JSON Schema

unified-to-formfield-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FormField",
  "title": "FormField",
  "properties": {
    "choices": {
      "$ref": "#/components/schemas/property_FormField_choices"
    },
    "created_at": {
      "format": "date-time",
      "type": "string"
    },
    "default_value": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "id": {
      "type": "string"
    },
    "is_active": {
      "type": "boolean"
    },
    "is_required": {
      "type": "boolean"
    },
    "max": {
      "type": "number"
    },
    "max_length": {
      "type": "number"
    },
    "min": {
      "type": "number"
    },
    "min_length": {
      "type": "number"
    },
    "name": {
      "type": "string"
    },
    "order": {
      "type": "number"
    },
    "pattern": {
      "type": "string"
    },
    "type": {
      "enum": [
        "TEXT",
        "TEXTAREA",
        "NUMBER",
        "EMAIL",
        "URL",
        "DATE",
        "TIME",
        "DATETIME",
        "PHONE",
        "BOOLEAN",
        "SINGLE_SELECT",
        "MULTIPLE_SELECT",
        "FILE_UPLOAD",
        "RATING",
        "SCALE",
        "MATRIX",
        "SECTION_HEADER",
        "OTHER"
      ],
      "type": "string",
      "x-speakeasy-unknown-values": "allow"
    },
    "updated_at": {
      "format": "date-time",
      "type": "string"
    }
  },
  "required": [
    "name",
    "type"
  ],
  "type": "object"
}