type Survey struct {
ID int `json:"id,omitempty"`
Version int `json:"version,omitempty"`
Title string `json:"title"`
Description string `json:"description"`
Fields []SurveyField `json:"fields"`
Submitted bool `json:"submitted,omitempty"`
}
type SurveyField struct {
ID int `json:"id,omitempty"`
Type string `json:"type"`
Name string `json:"name"`
Label string `json:"label"`
Required bool `json:"required"`
Options any `json:"options"`
}