From 3b2e7ba0e8fca0db897dfac935c9da7002d8d610 Mon Sep 17 00:00:00 2001 From: Robin Portigliatti Date: Sat, 3 Jun 2023 17:41:43 +0200 Subject: [PATCH] Adding options field to Field struct --- base.go | 1 + 1 file changed, 1 insertion(+) diff --git a/base.go b/base.go index e31604e..b6be4f8 100644 --- a/base.go +++ b/base.go @@ -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 {