About 106,000 results
Open links in new tab
  1. 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 …

  2. BSON (Binary JSON) Serialization

    BSON, short for Bin­ary JSON, is a bin­ary-en­coded seri­al­iz­a­tion of JSON-like doc­u­ments. Like JSON, BSON sup­ports the em­bed­ding of doc­u­ments and ar­rays with­in oth­er doc­u­ments and …

  3. Explaining BSON with Examples - MongoDB

    BSON stands for Binary Javascript Object Notation. It is a bin­ary-en­coded seri­al­iz­a­tion of JSON documents. BSON has been extended to add some optional non-JSON-native data types, like …

  4. What is BSON - GeeksforGeeks

    Jul 23, 2025 · BSON is a powerful, efficient, and optimized format for storing and transferring data. While it shares some similarities with JSON, its binary structure, faster processing, and …

  5. Open BSON file and convert it to JSON, CSV, Excel, STRING, PDF, …

    BSON, which stands for Binary JSON, is a binary-encoded serialization of JSON-like documents. It's primarily used in MongoDB to store data because it is lightweight and offers fast traversal …

  6. bson - Rust - Docs.rs

    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 …

  7. 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 …

  8. BSON - JSON for Modern C++

    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 …

  9. JSON and BSON - MongoDB

    A BSON file is a binary representation of the corresponding JSON file. BSON's binary-encoded serialization format encodes type and length information as well, which allows it to be …

  10. 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 …