From b888f19afa08edf5da7316e38f513200ef9f9eb5 Mon Sep 17 00:00:00 2001 From: Qianqian Fang Date: Thu, 25 Apr 2024 17:10:05 -0400 Subject: [PATCH] Clarify endianness for binary JSON interface --- JData_specification.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/JData_specification.md b/JData_specification.md index 2ba70f5..e371cdb 100644 --- a/JData_specification.md +++ b/JData_specification.md @@ -259,9 +259,9 @@ all non-negative numbers specifying the dimensions of the N-dimensional array. The binary data of the N-dimensional array is then serialized in the **row-major** format (similar to C, C++, Javascript or Python) order. -As a special note, all BJData/UBJSON integer types must be stored in the Big-Endian -format, according to the specification; the storage of floating point types -(`h,d,D`) follows the [IEEE 754 specification](https://en.wikipedia.org/wiki/IEEE_754). +As a special note, all BJData/UBJSON integer and floating-point types must be +stored in the **Little-Endian** format, according to +[BJData Specification (Draft 2)](https://github.com/NeuroJSON/bjdata/tree/Draft_2). Data Models