From cff4086e982f9a0c83197e2f8179d8f31c58c6be Mon Sep 17 00:00:00 2001 From: Sam Lucidi Date: Wed, 11 Oct 2023 15:13:36 -0400 Subject: [PATCH] Add `comment` string field to Section Signed-off-by: Sam Lucidi --- assessment/section.go | 1 + 1 file changed, 1 insertion(+) diff --git a/assessment/section.go b/assessment/section.go index ce3db2af6..9cbea46b8 100644 --- a/assessment/section.go +++ b/assessment/section.go @@ -6,6 +6,7 @@ type Section struct { Order uint `json:"order" yaml:"order" binding:"required"` Name string `json:"name" yaml:"name"` Questions []Question `json:"questions" yaml:"questions"` + Comment string `json:"comment,omitempty" yaml:"comment,omitempty"` } //