To represent binary values in JSON, should we assume BASE64 enconding by default? Open API is using BASE64 as a standard for binary data encoding in JSON.
JSON string -> msgpack StringValue -> decode as base64 -> Array[Byte]
Array[Byte] -> msgpack BinaryValue -> JSON String (base64 encoded)
To represent binary values in JSON, should we assume BASE64 enconding by default? Open API is using BASE64 as a standard for binary data encoding in JSON.
JSON string -> msgpack StringValue -> decode as base64 -> Array[Byte]
Array[Byte] -> msgpack BinaryValue -> JSON String (base64 encoded)