Module json_path

Module json_path 

Source
Expand description

JSON path expression parser

Supports parsing and evaluating JSON path expressions like:

  • $.result.items - nested field access
  • $.result.items[*].label - array indexing with wildcard
  • $[0].range.start.line - array indexing with specific index
  • $.result - simple field access

Structsยง

JsonPathParser
Parses and evaluates JSON path expressions