Unified.to · Schema

FormAnswer

IntegrationsUnified API

Properties

Name Type Description
field_id string
field_name string
file_ids object
value string
View JSON Schema on GitHub

JSON Schema

unified-to-formanswer-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FormAnswer",
  "title": "FormAnswer",
  "properties": {
    "field_id": {
      "type": "string"
    },
    "field_name": {
      "type": "string"
    },
    "file_ids": {
      "$ref": "#/components/schemas/property_FormAnswer_file_ids"
    },
    "value": {
      "type": "string"
    }
  },
  "required": [
    "field_id"
  ],
  "type": "object"
}