This document explains the JSON Path Extractor node, which allows you to extract specific data from JSON using JSONPath expressions.
$.organic[*].link
: Extracts all links from the organic
array.$.news[*].link
: Extracts links from the news
array.$.urls[*].data.article.headline
: Extracts all article headlines.$.urls[*].data.product.price
: Extracts all product prices.$.organic[*].link
: