aboutsummaryrefslogtreecommitdiffstats
path: root/backend/models
diff options
context:
space:
mode:
Diffstat (limited to 'backend/models')
-rw-r--r--backend/models/form.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/backend/models/form.py b/backend/models/form.py
index a8c5f92..8d7fe9b 100644
--- a/backend/models/form.py
+++ b/backend/models/form.py
@@ -12,6 +12,8 @@ class Form(BaseModel):
id: str = Field(alias="_id")
features: t.List[str]
questions: t.List[Question]
+ name: str
+ description: str
class Config:
allow_population_by_field_name = True