mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-25 00:58:06 -05:00
13 lines
365 B
Plaintext
13 lines
365 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('{\"qgis\":\"rocks\"}')", "returns":"{ 'qgis': 'rocks' }"},
|
|
{"expression":"from_json('[1,2,3]')", "returns":"[1,2,3]"}
|
|
]
|
|
}
|