diff --git a/README.md b/README.md index c6e4284..96486cc 100644 --- a/README.md +++ b/README.md @@ -62,6 +62,7 @@ The following table summarizes how different Go types are mapped to JSON data ty | time.Time | RFC3339-format JSON string | | []byte | Base64-encoded JSON string | | + The last two of these are special cases which deserve a bit more explanation : - Go **time.Time** values (which are actually a struct behind the scenes) will be encoded as a JSON string in RFC 3339 format like **"2020-11-08T06:27:59+01:00"**, rather than as a JSON object.