ADD metadata to omit empty vals
All checks were successful
dev test / test (push) Successful in 12s
dev test / vulnCheck (push) Successful in 40s
dev test / Ci-Lint (push) Successful in 15s

This commit is contained in:
maximo tejeda 2024-12-13 11:52:17 -04:00
parent d690176b29
commit 0dbbc4b045

View File

@ -10,8 +10,8 @@ type History struct {
} }
type Institution struct { type Institution struct {
ID int64 `json:"id"` ID int64 `json:"id,omitempty"`
Name string `json:"name"` Name string `json:"name,omitempty"`
ShortName string `json:"short_name"` ShortName string `json:"short_name,omitempty"`
Created int64 `json:"created"` Created int64 `json:"created,omitempty"`
} }