Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Published by Scroll Versions from space FUNCTDEV and version SVC2025.1

...

The bar at the top of the editor provides the following functionality:

  • Expand all: Expands all fields. You can also expand and collapse individual fields by clicking the arrow icons within the editor area.
  • Collapse all: Collapses all fields. You can also expand and collapse individual fields by clicking the arrow icons within the editor area.
  • UndoReverts the last action.
  • Redo: Repeats an action that you undid.
  • SearchHighlights the designated search term.

...

Available commands could include:
  • Type: Changes the field's type. Options are:
    • Auto: The field type is automatically determined from the value; it can be a string, number, boolean, or null.
    • Array: An ordered collection of values.
    • Object: An unordered set of key/value pairs.
    • String: Field type is not determined from the value , but always returned as a string.
  • Sort: Sorts the children of an array or object. For an array, the values of the children will be sorted. For an object, the children will be sorted by key. Arrays and objects can be sorted ascending or descending.
  • Insert: Inserts a new field before the current field. Available types are auto (default), object, array, and string.
  • Append: Inserts a new field after the current field. Available types are auto (default), object, array, and string.
  • Duplicate: Duplicates the field, including all children.
  • Remove: Removes the field, including all children.

...