mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-24 00:47:57 -05:00
12 lines
348 B
Plaintext
12 lines
348 B
Plaintext
{
|
|
"name": "from_json",
|
|
"type": "function",
|
|
"description": "Loads a JSON formatted string.",
|
|
"arguments": [
|
|
{"arg":"string", "description":"JSON string"}],
|
|
"examples": [
|
|
{"expression":"from_json('{\"qgis\":\"rocks\"}')", "returns":"{ \"qgis\" : \"rocks\" }"},
|
|
{"expression":"from_json('[1,2,3]')", "returns":"[1,2,3]"}
|
|
]
|
|
}
|