mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-22 00:06:12 -05:00
19 lines
446 B
Plaintext
19 lines
446 B
Plaintext
{
|
|
"name": "from_json",
|
|
"type": "function",
|
|
"groups": ["Maps"],
|
|
"description": "Loads a JSON formatted string.",
|
|
"arguments": [{
|
|
"arg": "string",
|
|
"description": "JSON string"
|
|
}],
|
|
"examples": [{
|
|
"expression": "from_json('{\"1\":\"one\",\"2\":\"two\"}')",
|
|
"returns": "{ '1': 'one', '2': 'two' }"
|
|
}, {
|
|
"expression": "from_json('[1,2,3]')",
|
|
"returns": "[1,2,3]"
|
|
}],
|
|
"tags": ["json", "loads", "formatted"]
|
|
}
|