Adding options field to Field struct

This commit is contained in:
Robin Portigliatti
2023-06-03 17:41:43 +02:00
parent 7ef8b42b8d
commit 3b2e7ba0e8

View File

@@ -23,6 +23,7 @@ type Field struct {
Type string `json:"type"`
Name string `json:"name"`
Description string `json:"description"`
Options map[string]interface{} `json:"options"`
}
type View struct {