Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.library / org.gvsig.expressionevaluator / org.gvsig.expressionevaluator.lib / org.gvsig.expressionevaluator.lib.impl / src / main / resources / org / gvsig / expressionevaluator / functions / en / JSON_VALUE.json @ 46194

History | View | Annotate | Download (765 Bytes)

1
{
2
    "name": "JSON_VALUE",
3
    "group": "Conversion",
4
    "template": "JSON_VALUE({{exp}}, path)",
5
    "args": [
6
        "exp - specify an expression that evaluates to a text literal. If expr is null, then the function returns null. If expr is not a text literal of well-formed JSON data using strict or lax syntax, then the function returns null by default.",
7
        "JsonPath - specify a JSON path expression. The function uses the path expression to evaluate expr and find a scalar JSON value that matches, or satisfies, the path expression. The path expression must be a text literal"
8
    ],
9
    "description": "Extracts a scalar value from a JSON string.<br>\n<%include JSON_VALUE.description.html%>",
10
    "returnType": "Object",
11
    "sqlCompatible": true
12
}