Skip to main content
eLearner.app
Module 5 · Lesson 4 of 524/50 in the course~12 min
Module lessons (4/5)

Field tags and JSON

Tags on struct fields are metadata strings, read via reflection by libraries like encoding/json, encoding/xml, validators, ORMs. They are written between backticks (raw string) right after the field's type.

Syntax

Go
type User struct {
    Name string `json:"nome"`
    Age  int    `json:"eta,omitempty"`
}

Format convention: key:"value" separated by spaces (NOT commas) for multiple keys:

Go
type User struct {
    Email string `json:"email" validate:"required,email"`
}

json tag: options

The most common option is json, used by encoding/json:

TagEffect
json:"nome"Renames the field to nome in the JSON output
json:"nome,omitempty"Omits the field if it is at its zero value
json:"-"Do not serialize/deserialize this field
json:",omitempty"Keeps the Go field name but with omitempty
Go
type User struct {
    Name     string `json:"nome"`
    Age      int    `json:"eta,omitempty"`
    Password string `json:"-"`
}

u := User{Name: "Ada", Age: 0, Password: "segreto"}
b, _ := json.Marshal(u)
fmt.Println(string(b))   // {"nome":"Ada"}

Age is omitted (zero value 0 + omitempty); Password is excluded entirely.

Marshal and Unmarshal

Go
// struct -> JSON
b, err := json.Marshal(u)

// JSON -> struct (needs a POINTER)
var u2 User
err = json.Unmarshal(b, &u2)

Unmarshal only accepts a pointer, because it must write into the value's fields.

Other common tags

  • xml:"..."encoding/xml
  • yaml:"..." — yaml.v3
  • db:"..." — sqlx / pgx
  • validate:"..." — go-playground/validator
  • form:"..." — gin / echo binding

Libraries read them via reflection (reflect.StructTag.Get("json")): they are just strings until someone interprets them.

Try it

Exercise#go.m5.l4.e1
Attempts: 0Loading…

Add the json:"nome" tag to the Name field and the json:"eta" tag to the Age field.

Loading editor…
Show hint

Tags are raw strings between backticks right after the field type.

Solution available after 3 attempts

Exercise#go.m5.l4.e2
Attempts: 0Loading…

Add the omitempty option to the Age field: it must be omitted when it is 0.

Loading editor…
Show hint

Options come after the name, separated by a comma: json:"nome,omitempty".

Solution available after 3 attempts

Quiz#go.m5.l4.e3
Ready

What does it print with tags json:"nome" and json:"eta"?

Go
u := User{Name: "Ada", Age: 36}
b, _ := json.Marshal(u)
fmt.Println(string(b))
Answer options

Recap

  • Tags are raw strings between backticks: `key:"value" key2:"value2"`.
  • json:"nome": rename. omitempty: omit if zero value. -: exclude.
  • NON-exported (lowercase) fields are ignored by encoding/json.
  • json.Marshal(v)json.Unmarshal(data, &v) (pointer).
  • Same mechanism for xml, yaml, db, validate, form, …