The Questionnaire Response object.
Name | Type | Description |
---|---|---|
id | UUID | A unique identifier. |
title | string? | A title provided to identify the questionnaire. |
external_questionnaire_id | string? | The id of the questionnaire that defines and organizes the questions for which answers are being provided. |
items | Items(question: string, answer: string)[] | The list of questions and responses associated with the questionnaire. |
Example
{
"id": "98FCE1EF-DBCA-41EF-8BC7-4D1621AC07C6",
"title": "example_string",
"external_questionnaire_id": "example_string",
"items": [
{
"question": "What is your birth date?",
"answer": "October 22, 1988"
}
]
}