Unified.to · Schema

FormsForm

IntegrationsUnified API

Properties

Name Type Description
confirmation_message string
confirmation_redirect_url string
created_at string
description string
fields object
has_multiple_submissions boolean
has_progress_bar boolean
has_shuffle_questions boolean
id string
is_active boolean
name string
published_url string
raw object
response_count number
updated_at string
View JSON Schema on GitHub

JSON Schema

unified-to-formsform-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FormsForm",
  "title": "FormsForm",
  "properties": {
    "confirmation_message": {
      "type": "string"
    },
    "confirmation_redirect_url": {
      "type": "string"
    },
    "created_at": {
      "format": "date-time",
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "fields": {
      "$ref": "#/components/schemas/property_FormsForm_fields"
    },
    "has_multiple_submissions": {
      "type": "boolean"
    },
    "has_progress_bar": {
      "type": "boolean"
    },
    "has_shuffle_questions": {
      "type": "boolean"
    },
    "id": {
      "type": "string"
    },
    "is_active": {
      "type": "boolean"
    },
    "name": {
      "type": "string"
    },
    "published_url": {
      "type": "string"
    },
    "raw": {
      "additionalProperties": true,
      "type": "object"
    },
    "response_count": {
      "type": "number"
    },
    "updated_at": {
      "format": "date-time",
      "type": "string"
    }
  },
  "required": [
    "name"
  ],
  "type": "object"
}