util.JSONObject.create
Creates a new JSON object.
Syntax
util.JSONObject.create()
  RETURNS util.JSONObjectUsage
The util.JSONObject.create() method creates a new JSON object.
The created object must be assigned to a program variable defined with the
util.JSONObject type.
Example
IMPORT util
MAIN
    DEFINE obj util.JSONObject
    LET obj = util.JSONObject.create()
    ...
END MAIN