Hub
Pricing About
NodeNode / Manipulator

JSON to Table

Structured DataJSON
Drag & drop
Like

This node transforms a JSON column into multiple columns by automatically inferring the structure of the JSON data. It works best with well-structured, relatively flat JSON objects that follow a consistent schema across all rows.

You can choose between two main extraction approaches. One option is to extract only the primitive leaf values (such as strings or numbers), ignoring their full JSON paths. The other option is to retain the complete JSON structure. However, keeping the full structure may lead to less intuitive results, since the resulting columns can contain JSON values or collections of JSON rather than simple data types.

For example, consider JSON inputs like:

  • {"a": {"b": [1, 2], "c": "c"}}
  • {"a": {"b": [3], "d": null}}
If you extract only leaf elements and use their names as column headers, the output will include columns such as:
  • b : either a JSON array or a list of integers, depending on whether arrays are preserved as JSON or expanded into collections
  • c : string values
  • d : string values (with missing entries where not present)
If you instead limit extraction to a certain depth (e.g., level 1), you may end up with a single column like a , which contains JSON objects rather than individual values.

Another option is to use full JSON paths as column names (for example, a.b.0 , a.b.1 , a.c , a.d ) and expand arrays into separate columns. This produces more granular columns, such as individual elements of arrays and nested fields.

For more complex nested structures, behavior depends on additional settings:
  • If nested objects are omitted and only shallow levels are considered, arrays may be simplified to lists of primitive values.
  • If nested objects are kept, arrays can contain mixed JSON elements (e.g., objects and numbers together).
  • When preserving arrays as JSON, the output remains closer to the original structure regardless of other settings.
This node is best suited for well-structured, relatively flat JSON data with a consistent schema across rows. For more complex or deeply nested JSON, consider using JSON Path or JSON Path (Dictionary).

Node details

Input ports
  1. Type: Table
    JSON
    Table containing JSON column.
Output ports
  1. Type: Table
    Extracted values
    Table with values extracted from the selected JSON column.

Extension

The JSON to Table node is part of this extension:

  1. Go to item

Related workflows & nodes

KNIME
Open for Innovation

KNIME AG
Talacker 50
8001 Zurich, Switzerland
  • Software
  • Getting started
  • Documentation
  • Courses + Certification
  • Solutions
  • KNIME Hub
  • KNIME Forum
  • Blog
  • Events
  • Partner
  • Developers
  • KNIME Home
  • Careers
  • Contact us
Download KNIME Analytics Platform Read more about KNIME Business Hub
© 2026 KNIME AG. All rights reserved.
  • Trademarks
  • Imprint
  • Privacy
  • Terms & Conditions
  • Data Processing Agreement
  • Credits