
BSON - Wikipedia
It is a binary form for representing simple or complex data structures including associative arrays (also known as name-value pairs), integer indexed arrays, and a suite of fundamental scalar types. BSON originated in 2009 at MongoDB.
Explaining BSON With Examples - MongoDB
BSON stands for Binary Javascript Object Notation. It is a binary-encoded serialization of JSON documents. BSON has been extended to add some optional non-JSON-native data types, like dates and binary data. BSON can be compared to other binary formats, like Protocol Buffers.
BSON (Binary JSON) Serialization
BSON, short for Binary JSON, is a binary-encoded serialization of JSON-like documents. Like JSON, BSON supports the embedding of documents and arrays within other documents and arrays. BSON also contains extensions that allow representation of data types that are not part of the JSON spec.
What is BSON and exactly how is it different from JSON?
Nov 29, 2017 · BSON is the binary encoding of JSON-like documents that MongoDB uses when storing documents in collections. It adds support for data types like Date and binary that aren't supported in JSON.
JSON And BSON - MongoDB
BSON is designed as a binary representation of JSON data, with specific extensions for broader applications, and optimized for data storage and traversal. Just like JSON, BSON supports embedding objects and arrays.
What is BSON - GeeksforGeeks
Jan 24, 2025 · BSON is a binary-encoded serialization format that extends JSON, offering improved efficiency, support for complex data types, and faster processing, making it ideal for high-performance applications like MongoDB.
Difference Between JSON and BSON - GeeksforGeeks
Jan 24, 2025 · JSON is a human-readable text format ideal for data exchange, while BSON is a binary format optimized for efficient storage and retrieval, particularly in MongoDB, supporting additional data types and faster processing.
BSON Types - MongoDB - GeeksforGeeks
Feb 18, 2025 · BSON (Binary JSON) is the data storage format used by MongoDB to represent documents in a highly efficient and flexible manner.It extends JSON by supporting additional data types, optimizing storage, and improving query performance. Unlike standard JSON, BSON allows MongoDB to handle complex data structures, including ObjectId, Decimal128, Binary, …
BSON Types — MongoDB Manual
BSON is a binary serialization format used to store documents and make remote procedure calls in MongoDB. The BSON specification is located at bsonspec.org. Each BSON type has both integer and string identifiers as listed in the following table:
BSON (Binary JSON): Specification
BSON is a binary format in which zero or more ordered key/value pairs are stored as a single entity. We call this entity a document . The following grammar specifies version 1.1 of the BSON standard.