Skip to content
This repository was archived by the owner on Apr 4, 2026. It is now read-only.
This repository was archived by the owner on Apr 4, 2026. It is now read-only.

JSON 'xpath' style parsing #52

Description

@justfalter

I'd like to be able to specify a path within a json structure that I'd like to see parsed.

Given the following structure:

{
 'foo': {
   'bar': [
     { 'id': 1 }, 
     { 'id': 2 }, 
     { 'id': 3 }
   ]
 }
}

Specifying the path '/foo/bar' would see the JSON parser yielding the records:

  • { 'id': 1 }
  • { 'id': 2 }
  • { 'id': 3 }

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Fields

    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions