{ "$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"] }