The primary component for viewing file data allows switching between two main modes: Tree View and Source View. These are accessible by clicking a file in the File Management section.
This view renders hierarchical data in a nested, expandable tree format.
Expand
button to expand all nodes one step simultaneously. The keyboard shortcut shift+right-arrow
can also be used.Collapse
button to collapse all nodes one step simultaneously. The keyboard shortcut shift+left-arrow
can also be used.Collapse All
button to collapse all nodes back to the root.When the Tree View encounters an array of objects (where each object has the same keys, representing tabular data), it renders this array as an interactive grid instead of a standard list of tree nodes.
contains
, equals
, starts with
, is empty
, is not empty
).This layout toggle allows users to choose the optimal perspective for their data analysis - the tabular view for comparing individual items side-by-side, or the attribute-oriented view for examining how values vary across a single attribute.
Tabular view: Each row shows one complete data item with all its attributes listed as columns
Attribute-oriented view: Each row shows all values for one attribute (e.g., all firstNames: John, Sarah, Michael, Emily, David)
This view provides a raw, syntax highlighted text representation of the loaded file content, utilizing the Monaco Editor. It also includes tools for data manipulation and comparison.
Show Values
toggles between showing the full source with data values and showing only the structure (keys/tags) with empty values. This is enabled by default.Show Distinct
toggles a view showing only distinct structural nodes, removing duplicate structures sometimes found in arrays. This will automatically enable Show Values
if not enabled.Sync Filtered Data
toggles the sync of the source editor with any filters that are applied in the Tree View. If you download the file, values will correspond to any active filters when this is enabled.Convert Format
allows converting the current data view to JSON or XML depending on the file's format.In order to edit the file, Show Values
must be enabled, while Show Distinct
and Sync Filtered Data
must be disabled.
Edit
button. Edits made in a file (and saved) will be reflected across the whole application. Go to Symbol
, Change all Occurences
, and Format Document
. These can be accessed by right-clicking or using keyboard shortcuts. To switch between uploaded files in the tree or source view, the shortcut shift+up/down-arrow
can be used.