JSON/BSON → table

Validate and neatly format your data.

Your starting point

Accepts consecutive documents, JSON and MongoDB syntax. Up to 100,000 characters. Everything is processed locally.

Your table · 1 documents · 5 columns

nombreactivoorigen.paísetiquetas[0]etiquetas[1]
UtilityInstanttrueEspañagratisprivado

Text by default. Empty arrays and null become blank; populated arrays expand using indices. ISO dates are exported as ISO text.

CSV: separator and quotes

Use XLSX to preserve leading zeros and types in Excel. Copy and CSV protect possible formulas by adding an apostrophe.

A little more clarity: formatted document

Valid JSON. MongoDB types use Extended JSON. Binary BSON is not imported.

[
  {
    "nombre": "UtilityInstant",
    "activo": true,
    "origen": {
      "país": "España"
    },
    "etiquetas": [
      "gratis",
      "privado"
    ]
  }
]