PARSE JSON2

Returns the value of the specified attribute in the same node

  1. String in JSON format or expression producing such a string
  2. A path to a JSON attribute in the JSONPath format (as explained here https://github.com/json-path/JsonPath)\n
  3. The name of the JSON attribute in the same node, the value of which should be returned
Object.Value = PARSE_JSON2(Object.Attribute, `$.store.books[?(@.Name == 'Romeo and Juliet')]`, 'Author') 

The above returns 'Shakespear'

  • Last modified: 2024/05/16 03:49