bson

BSON documents are JSON-like objects with a standard binary encoding.

http://github.com/mongodb-haskell/bson

Version on this page:0.3.1
LTS Haskell 22.17:0.4.0.1
Stackage Nightly 2024-04-19:0.4.0.1
Latest on Hackage:0.4.0.1

See all snapshots bson appears in

LicenseRef-OtherLicense licensed by Tony Hannan
Maintained by Fedor Gogolev, Greg Weber
This version can be pinned in stack with:bson-0.3.1@sha256:940f68aa58e00eebedc54993671b3d4c63d05b27b4df1dadb725e279b9313a02,2356

Module documentation for 0.3.1

A BSON Document is an untyped (dynamically type-checked) record. I.e. it is a list of name-value pairs, where a Value is a single sum type with constructors for basic types (Bool, Int, Float, String, and Time), compound types (List, and (embedded) Document), and special types (Binary, Javascript, ObjectId, RegEx, and a few others). A BSON Document is serialized to a standard binary encoding defined at http://bsonspec.org. This implements version 1 of that spec.