Returns true if the field is explicitly null or if it is not present at all (ie, missing).
func (j Field) IsNull() boolReturns true if the field is explicitly null or if it is not present at all (ie, missing).
To check if the field's key is present in the JSON with an explicit null value,
you must check f.IsNull() && !f.IsMissing().