json_query_jsonpath
Extract specific data from large JSON files by evaluating JSONPath expressions. Ideal for precise querying and retrieving values within complex JSON structures.
Instructions
Query a JSON file using JSONPath. Use to get values precisely from large JSON files.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
file_path | Yes | Absolute path to the JSON file. | |
jsonpath | Yes | JSONPath expression to evaluate |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"file_path": {
"description": "Absolute path to the JSON file.",
"type": "string"
},
"jsonpath": {
"description": "JSONPath expression to evaluate",
"minLength": 1,
"type": "string"
}
},
"required": [
"file_path",
"jsonpath"
],
"type": "object"
}