Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

README.md

JXON Examples

This directory contains examples of JXON values. *.jxon files are JXON values, *.txt are their annotated hex dumps and *.json are their respective JSON equivalents.

Simple values

File Hex Meaning
null.jxon (dump, json) F0 null
false.jxon (dump, json) F1 false
true.jxon (dump, json) F2 true
zero.jxon (dump, json) 80 0

Integers

File Hex Meaning
int_0.jxon (dump, json) 80 0
int_1.jxon (dump, json) 81 1
int_2.jxon (dump, json) 82 2
int_3.jxon (dump, json) 83 3
int_4.jxon (dump, json) 84 4
int_5.jxon (dump, json) 85 5
int_6.jxon (dump, json) 86 6
int_7.jxon (dump, json) 87 7
int_8.jxon (dump, json) 88 8
int_9.jxon (dump, json) 89 9
int_10.jxon (dump, json) 8A0A 10
int_11.jxon (dump, json) 8A0B 11
int_neg_1.jxon (dump, json) 8F -1
int_neg_2.jxon (dump, json) 8AFE -2
int_min8.jxon (dump, json) 8A80 -128
int_max8.jxon (dump, json) 8A7F 127
int_min16.jxon (dump, json) 8B0080 -32768
int_max16.jxon (dump, json) 8BFF7F 32767
int_min32.jxon (dump, json) 8C00000080 -2147483648
int_max32.jxon (dump, json) 8CFFFFFF7F 2147483647
int_min64.jxon (dump, json) 8D0000000000000080 -9223372036854775808
int_max64.jxon (dump, json) 8DFFFFFFFFFFFFFF7F 9223372036854775807

Strings and BLOBs

File Hex Meaning
str_empty.jxon (dump, json) A000 ""
str_hello.jxon (dump, json) A648656C6C6F2100 "Hello!"
str_hello_chinese.jxon (dump, json) A6E4BDA0E5A5BD00 "你好" (notice that 6 in A6 means number of bytes, not characters)
blob_empty.jxon (dump, json) 90
blob_0123.jxon (dump, json) 9400010203 00010203

Floats

File Hex Meaning
float_0.jxon (dump, json) F6 0.0
float_1.jxon (dump, json) F70000803F 1.0
float_nan.jxon (dump, json) F70000C07F NaN
float_neg_nan.jxon (dump, json) F70000C0FF -NaN
float_inf.jxon (dump, json) F70000807F Infinity
float_neg_inf.jxon (dump, json) F7000080FF -Infinity
float_nan.jxon (dump, json) F70000C07F NaN
float_half.jxon (dump, json) F70000003F 1/2
float_minnorm32.jxon (dump, json) F700008000 2^-126 (minimal normalized float)
float_minnorm64.jxon (dump, json) F80000000000001000 2^-1022 (minimal normalized double)

Structured values

File Hex Meaning
object_empty.jxon (dump, json) F3F5 {}
object.jxon (dump, json) F3A46B6579310081A... {"key1": 1, "key2": "string"}
array_empty.jxon (dump, json) F4F5 []
array_123.jxon (dump, json) F4818283F5 [1, 2, 3]

Datasets

File Hex Meaning
movies.jxon (dump, json) F3A66D6F766965730... List of randomly generated movies
movies_compressed.jxon (dump, json, protobuf) B269640000B574697... The same list, but keys table is used