encoding/json.UnmarshalTypeError.Field (field)

6 uses

	encoding/json (current package)
		decode.go#L127: 	Field  string       // the full path from root node to the field, include embedded struct
		decode.go#L131: 	if e.Struct != "" || e.Field != "" {
		decode.go#L132: 		return "json: cannot unmarshal " + e.Value + " into Go struct field " + e.Struct + "." + e.Field + " of type " + e.Type.String()
		decode.go#L256: 			if err.Field != "" {
		decode.go#L257: 				fieldStack = append(fieldStack, err.Field)
		decode.go#L259: 			err.Field = strings.Join(fieldStack, ".")