> For the complete documentation index, see [llms.txt](https://docs.sparkloop.app/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.sparkloop.app/api-v3/objects-schema/survey-answer-object.md).

# Survey Answer Object

## Survey Answer Object

One individual answer to a survey question. No subscriber identity is included.

| Field         | Type             | Description                                                                                 |
| ------------- | ---------------- | ------------------------------------------------------------------------------------------- |
| `value`       | String \| Array  | The answer. An array of picked options for `multi_select` questions, otherwise a string.    |
| `answered_at` | String           | When the answer was submitted (ISO 8601).                                                   |
| `question`    | String \| Object | The question's UUID by default; the full **Survey Question Object** with `expand=question`. |

**Example**

```json
{
  "value": "Engineer",
  "answered_at": "2026-06-02T14:20:00.000Z",
  "question": "sqn_9f8e7d6c"
}
```

**Example (`multi_select`)**

```json
{
  "value": ["Newsletters", "Podcasts"],
  "answered_at": "2026-06-02T14:21:00.000Z",
  "question": "sqn_1a2b3c4d"
}
```
