package utils type Error struct { Type string `json:"type"` Message string `json:"message"` Code string `json:"code"` } type ValidationError struct { Type string `json:"type"` Message string `json:"message"` Code string `json:"code"` Fields map[string]string `json:"fields"` }