Generated Struct (with omitempty):type Root struct {
Address Address `yaml:"address,omitempty"`
Age int `yaml:"age,omitempty"`
Email string `yaml:"email,omitempty"`
Hobbies []string `yaml:"hobbies,omitempty"`
IsActive bool `yaml:"is_active,omitempty"`
Name string `yaml:"name,omitempty"`
}
type Address struct {
City string `yaml:"city,omitempty"`
Street string `yaml:"street,omitempty"`
Zipcode string `yaml:"zipcode,omitempty"`
}