filter
Filter JSON data by applying conditions to specific JSONPath expressions. Retrieve targeted data from a JSON source URL based on defined criteria, enabling precise data extraction for analysis or manipulation.
Instructions
Filter JSON data using conditions
Input Schema
Name | Required | Description | Default |
---|---|---|---|
condition | Yes | Filter condition (e.g. @.price < 10) | |
jsonPath | Yes | Base JSONPath expression | |
url | Yes | URL of the JSON data source |
Input Schema (JSON Schema)
{
"properties": {
"condition": {
"description": "Filter condition (e.g. @.price < 10)",
"type": "string"
},
"jsonPath": {
"description": "Base JSONPath expression",
"type": "string"
},
"url": {
"description": "URL of the JSON data source",
"type": "string"
}
},
"required": [
"url",
"jsonPath",
"condition"
],
"type": "object"
}