Carica una stringa formattata JSON
from_json(string)
from_json('{"qgis":"rocks"}') → { "qgis" : "rocks" }
from_json('[1,2,3]') → [1,2,3]
–