.. highlight:: us .. index:: Overview json, json .. _overview-json: Overview json ============= Beginning with UniPlot R2026.0 the :ref:`json_simple` function can be used to load json data into a UniScript object. .. us.example **Example** :: s = "{" .. +"\"name\": \"John\"," .. +"\"age\": 30," .. +"\"married\": false," .. +"\"children\": null," .. +"\"skills\": [\"UniPlot\", \"UniScript\", \"JSON\"]" .. +"}"; o = json_simple(s); [. age = 30, children = 1e+10, married = 0, name = "John", skills[1;3] = ["UniPlot", "UniScript", "JSON"], ] .. us.makeindex json, Functions .. include:: ../ftab/json.ftab .. seealso:: :ref:`overview-files` :sub:`id-401854`