The QuestionnaireResponse object

The Questionnaire Response object.

NameTypeDescription
idUUIDA unique identifier.
titlestring?A title provided to identify the questionnaire.
external_questionnaire_idstring?The id of the questionnaire that defines and organizes the questions for which answers are being provided.
itemsItems(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"
    }
  ]
}