FormAssembly · Schema

FormAssembly Response

A single form submission response as returned by the FormAssembly REST API export endpoint.

FormsData CollectionSalesforceEnterpriseHIPAAComplianceGovernmentFedRAMPWorkflowsE-Signatures

Properties

Name Type Description
id integer Unique identifier of the response
form_id integer ID of the form this response belongs to
date_created string ISO 8601 timestamp when the response was submitted
flag integer Flag status applied to this response for review tracking
View JSON Schema on GitHub

JSON Schema

formassembly-response.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/formassembly/main/json-schema/formassembly-response.json",
  "title": "FormAssembly Response",
  "description": "A single form submission response as returned by the FormAssembly REST API export endpoint.",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "description": "Unique identifier of the response"
    },
    "form_id": {
      "type": "integer",
      "description": "ID of the form this response belongs to"
    },
    "date_created": {
      "type": "string",
      "format": "date-time",
      "description": "ISO 8601 timestamp when the response was submitted"
    },
    "flag": {
      "type": "integer",
      "description": "Flag status applied to this response for review tracking"
    }
  },
  "required": ["id", "form_id"]
}