Last updated 5 years ago
Was this helpful?
node-set json-doc(string path)
converts the JSON document at the given path into , parses it and returns the <json> root element.
path
<json>
Relative paths are resolved relative to the flow file's path.
user.json:
user.json
{ "name": "brenda" }
json-doc("user.json")/name
Flow:
<flow> <echo if="json-doc('fit://site/conf.json')/maintenance" status="503"> Under maintenance </echo> </flow>