We're sorry but this app doesn't work properly without JavaScript enabled. Please enable it to continue.

This lesson's interactive features are locked, please to keep using them

JSON Review

Struct 1

type parameters struct {
    Name string `json:"name"`
    Age int `json:"age"`
    School struct {
        Name string `json:"name"`
        Location string `json:"location"`
    } `json:"school"`
}

Struct 2

type parameters struct {
    name string `json:"name"`
    Age int `json:"age"`
}

Struct 3

type parameters struct {
    Name string
    Age int
}