encoding/json.UnmarshalTypeError.Field (field)

6 uses

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