Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Most JSON data that utilizes precise decimal data represents it as a decimal string. Connect, on the other hand, only supports a binary HEX string encoding (see example below). This KIP intends to support all three of the below data types so that it can better integrate with legacy systems (and make the internal topic data easier to read/debug):

Code Block
{
  "asHex": "D3J5",
  "asString": "10.12345"
  "asNumber": 10.2345
}

...