mongodump produces .bson files. MongoDB drivers store documents in BSON. But when you need to audit a dump, diff two documents, or push data into a JSON pipeline, the binary format gets in the way — timestamps are 8-byte integers, dates are milliseconds, and ObjectIds are unreadable byte soup.
Convert BSON to JSON parses a BSON document into readable JSON. Every standard type is decoded: numbers, strings, booleans, dates, ObjectIds, binary data, regexes, timestamps and nested documents and arrays.