UBJSON
Universal Binary JSON (UBJSON) is a computer data interchange format. It is a binary form directly imitating JSON, but requiring fewer bytes of data. It aims to achieve the generality of JSON, combined with being much easier to process than JSON. Rationale and ObjectivesUBJSON is a proposed successor to BSON, BJSON and others. UBJSON has the following goals:
Data types and syntaxUBJSON data can be either a value or a container. Value typesUBJSON uses a single binary tuple to represent all JSON value types:[1] type [length] [data] Each element in the tuple is defined as: typeThe type is a 1-byte ASCII character used to indicate the type of the data following it. The ASCII characters were chosen to make manually walking and debugging data stored in the UBJSON format as easy as possible (e.g. making the data relatively readable in a hex editor). Types are available for the five JSON value types. There is also a no-op type used for stream keep-alive.
High-precision numbers are represented as an arbitrarily long, UTF-8 string-encoded numeric value. length (optional)The length is an integer number (e.g. uint8, or int64) encoding the size of the data payload in bytes. It is used for strings, high-precision numbers and optionally containers. They are omitted for other types. Length is encoded following the same convention as integers, thus including its own type. For example, the string data (optional)A sequence of bytes representing the actual binary data for this type of value. All numbers are in big-endian order. Container typesSimilarly to JSON, UBJSON defines two container types: array and object.[2] Arrays are ordered sequences of elements, represented as a Objects are labeled sets of elements, represented as a Alternatively, arrays and objects may indicate the number of elements they contain as Binary dataWhile there is no explicit binary type, binary data is stored in a strongly typed array of uint8 values. This ensures binary efficiency while maintaining compatibility with JSON, even though JSON has no direct support for binary data.[3][4] RepresentationThe MIME type "application/ubjson" is recommended, as is the file extension ".ubj" when stored in a file-system.[4] Software support
See also
References
External links |