This document explains the JSON Path Extractor node, which allows you to extract specific data from JSON using JSONPath expressions.
JSON:
The JSON data from which you want to extract information.
Example:
JSON Path Expression:
The JSONPath notation to target specific fields or values in the JSON.
Example expressions:
$.organic[*].link
: Extracts all links from the organic
array.$.news[*].link
: Extracts links from the news
array.For advanced usage, JSONPath supports filtering and selecting multiple key values:
$.urls[*].data.article.headline
: Extracts all article headlines.$.urls[*].data.product.price
: Extracts all product prices.Currently, there are no optional fields for this node.
Extracted Content:
The data extracted from the JSON using the provided JSONPath expression.
Example output for $.organic[*].link
:
The JSON Path Extractor node:
This document explains the JSON Path Extractor node, which allows you to extract specific data from JSON using JSONPath expressions.
JSON:
The JSON data from which you want to extract information.
Example:
JSON Path Expression:
The JSONPath notation to target specific fields or values in the JSON.
Example expressions:
$.organic[*].link
: Extracts all links from the organic
array.$.news[*].link
: Extracts links from the news
array.For advanced usage, JSONPath supports filtering and selecting multiple key values:
$.urls[*].data.article.headline
: Extracts all article headlines.$.urls[*].data.product.price
: Extracts all product prices.Currently, there are no optional fields for this node.
Extracted Content:
The data extracted from the JSON using the provided JSONPath expression.
Example output for $.organic[*].link
:
The JSON Path Extractor node: