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