Description
Currently even if one implements MarshalJSON
on a struct there is no way to prevent its inclusion into the parent struct. E.g.:
type Foo struct {
Field Field `json:"field"`
}
type Field struct {
DataPublic bool
Value interface{}
}
func (f Field) MarshalJSON() ([]byte, error) {
if f.DataPublic {
return json.Marshal(f.Value)
} else {
return []byte("null"), nil
}
}
(Full example: https://go.dev/play/p/A0wKfuZgURw)
The best one can do is return null
. But what if one wants to fully omit the field? This is not possible. Or one has to implement MarshalJSON
on the parent struct, but that is not nice from composability perspective (one would have to implement this for every struct which includes Field
).
I propose that it should be allowed to return nil, nil
from MarshalJSON
to signal that the field should be omitted in the parent struct. Currently returning nil, nil
does fails with error unexpected end of JSON input
because the resulting JSON is malformed. That means that nobody can rely on this behavior really for correct JSON output (maybe only to catch errors?), so I do not think we would be breaking any real backwards compatibility if we introduce this, or at least I believe benefits are bigger here. In any case, if you want previous behavior, you can return []byte{}
and then it will continue to error in the same way. Doing JSON marshal of a struct itself which returns nil
is compatible enough in my view: if caller just assumes they are getting []byte
slice, nil
will mostly behave for them as an empty slice. If they are able to handle it anyway.
Implementing this would also provide a solution for the issue that omitempty
does not work with structs: one could implement MarshalJSON
which checks if the value is zero and return nil
if it is so. This would be useful only when implementor of the type is the user of it at the same time, but one can always make a new type as a user and then implement MarshalJSON
there. I think it is an useful step in addressing that.
Returning nil
to omit the field seems to be also something others expected to work and has been also proposed in the past, but inside a bigger discussion, so this can serve as a proposal for just this feature.