feat: questionnaire shape update
This commit is contained in:
parent
c268097306
commit
0a7f9092c7
7 changed files with 85 additions and 24 deletions
13
src/organisation/schemas_questionnaires.py
Normal file
13
src/organisation/schemas_questionnaires.py
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
from typing import Optional
|
||||
|
||||
from src.schemas import CustomBaseModel
|
||||
|
||||
|
||||
class QuestionnaireQuestions(CustomBaseModel):
|
||||
pass
|
||||
|
||||
|
||||
class QuestionnaireQuestionsVersion0(QuestionnaireQuestions):
|
||||
question_one: Optional[str] = None
|
||||
question_two: Optional[str] = None
|
||||
question_three: Optional[str] = None
|
||||
Loading…
Add table
Add a link
Reference in a new issue