Unified.to · Schema

FormsSubmission

IntegrationsUnified API

Properties

Name Type Description
answers object
created_at string
form_id string
id string
raw object
respondent_email string
respondent_name string
updated_at string
View JSON Schema on GitHub

JSON Schema

unified-to-formssubmission-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FormsSubmission",
  "title": "FormsSubmission",
  "properties": {
    "answers": {
      "$ref": "#/components/schemas/property_FormsSubmission_answers"
    },
    "created_at": {
      "format": "date-time",
      "type": "string"
    },
    "form_id": {
      "type": "string"
    },
    "id": {
      "type": "string"
    },
    "raw": {
      "additionalProperties": true,
      "type": "object"
    },
    "respondent_email": {
      "type": "string"
    },
    "respondent_name": {
      "type": "string"
    },
    "updated_at": {
      "format": "date-time",
      "type": "string"
    }
  },
  "required": [
    "form_id",
    "answers"
  ],
  "type": "object"
}