/
12/04/2024

12/04/2024

Attendance

  • Everyone except Hellen, Alex Lai & Peter in attendance

 

Backend & Database

Discussed schema of questions and answers. Following changes are needed:

  • answer_id needs to be unique in short_answer_answers table (only one response per ShortAnswer answer row).

  • API schema for question data was discussed. Example of proposed schema:

    • { "questions": [ { "question_id": "3284837738832", "question_type": "ShortAnswer", "title": "What is your favourite food?", "description": "We want to know about you as a person." }, { "question_id": "328231332331", "question_type": "MultiChoice", "title": "What year are you in?", options: [ "1", "2", "3", "4+" ] } ] }

 

Discussed API spec updates:

  • Need to change return types of all id’s to be a string, rather than an integer. JS can’t handle the large integers snowflake returned by the snowflake crate.

Related content