package model import "time" type Metadata struct { CreationDate time.Time `json:"creation_date"` LastUpdateDate time.Time `json:"last_update_date"` CreationUser string `json:"creation_user"` LastUpdateUser string `json:"last_update_user"` }