Parse Json
parse_json
Interprets a string as a JSON value and returns the value as dynamic. Alias for json().
Spec
parse_json(arg0)Parameters
arg0 - A string value to interpret as JSON.Return Value
A dynamic (json) object parsed from the input string.Example
datatable(payload:string)["{ \"name\": \"alice\" }"]
| extend value = parse_json(payload).name| payload | value |
|---|---|
| { "name": "alice" } | alice |