Add JSon Object
Object Name:
Select JSon Object
JSon Object's Source Code
Documentation

Javascript

Use the keyword this to access the currently selected object.

Use global variables to store temporary results that you need in other scripts.

Identifiers starting with JSI_ are reserved and should not be used.

The OBJ object is reserverd. It contains all the objects added to the tool and allows to reference them by name.
Examples: OBJ.ID1, OBJ.MyObject, OBJ["Name with spaces"], OBJ["Names-with-no-id-chars"]

Functions

Function Description
JSI_DIFF(object1, object2, ....) Difference between objects.
Return an array of objects with properties which differ in the passed objects.
Properties with the same values are not reported.
Show as a table to better view.
JSI_COUNT(objectsArray, fieldsArray) For each object in the given objectsArray evaluates the fields specified in the fieldsArray.
Returns an array of objects containing the different evaluated values and the count for each combination of values.
Show as a table to better view.
JSI_FILTER(objectsArray, condition) Filter the given objectsArray returning only the objects fulfilling the given condition.
The condition can be expressed as a string or through a function.
If the condition is expressed as a string, use the this keyword to refer to the current object in the list.
If the condition is expressed with a function, the first parameter is the current object and the second parameter is the index.
Returns an array containing the selected objects. The initial array is left unchanged.
Show as a table to better view.