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