{"id":15111343,"url":"https://github.com/theory/jsonpath","last_synced_at":"2025-10-23T04:31:24.020Z","repository":{"id":255690539,"uuid":"853406142","full_name":"theory/jsonpath","owner":"theory","description":"RFC 9535 JSONPath in Go","archived":false,"fork":false,"pushed_at":"2025-01-15T17:06:18.000Z","size":207,"stargazers_count":7,"open_issues_count":0,"forks_count":1,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-01-30T17:27:04.712Z","etag":null,"topics":["json","json-path","jsonpath","rfc9535"],"latest_commit_sha":null,"homepage":"https://theory.github.io/jsonpath","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/theory.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-09-06T15:37:42.000Z","updated_at":"2025-01-15T17:01:31.000Z","dependencies_parsed_at":"2024-09-12T09:07:07.031Z","dependency_job_id":"7cf8f7a7-112a-4494-a3fb-d42585463b60","html_url":"https://github.com/theory/jsonpath","commit_stats":{"total_commits":19,"total_committers":1,"mean_commits":19.0,"dds":0.0,"last_synced_commit":"8fbecee74adbe13119359b2749d8bc7e393f6025"},"previous_names":["theory/jsonpath"],"tags_count":7,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/theory%2Fjsonpath","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/theory%2Fjsonpath/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/theory%2Fjsonpath/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/theory%2Fjsonpath/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/theory","download_url":"https://codeload.github.com/theory/jsonpath/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":237780129,"owners_count":19365130,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["json","json-path","jsonpath","rfc9535"],"created_at":"2024-09-26T00:03:34.493Z","updated_at":"2025-10-23T04:31:24.015Z","avatar_url":"https://github.com/theory.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"RFC 9535 JSONPath in Go\n=======================\n\n[![⚖️ MIT]][mit] [![📚 Docs]][docs] [![🗃️ Report Card]][card] [![🛠️ Build Status]][ci] [![📊 Coverage]][cov]\n\nThe jsonpath package provides [RFC 9535 JSONPath] functionality in Go.\n\n## Learn More\n\n*   📦 See the [package documentation][docs] for usage and examples.\n*   📚 See the [RFC 9535 JSONPath] standard for details on the JSONPath query\n    syntax and examples of its usage.\n*   🛝 Try it out in the [Playground].\n\n## JSONPath Expressions\n\nA brief overview of [RFC 9535 JSONPath] syntax:\n\n| Syntax Element     | Description                                                             |\n| ------------------ | ----------------------------------------------------------------------- |\n| `$`                | root node identifier                                                    |\n| `@`                | current node identifier (valid only within filter selectors)            |\n| `[\u003cselectors\u003e]`    | child segment: selects zero or more children of a node                  |\n| `.name`            | shorthand for `['name']`                                                |\n| `.*`               | shorthand for `[*]`                                                     |\n| `..[\u003cselectors\u003e]`  | descendant segment: selects zero or more descendants of a node          |\n| `..name`           | shorthand for `..['name']`                                              |\n| `..*`              | shorthand for `..[*]`                                                   |\n| `'name'`           | name selector: selects a named child of an object                       |\n| `*`                | wildcard selector: selects all children of a node                       |\n| `3`                | index selector: selects an indexed child of an array (from 0)           |\n| `0:100:5`          | array slice selector: `start:end:step` for arrays                       |\n| `?\u003clogical-expr\u003e`  | filter selector: selects particular children using a logical expression |\n| `length(@.foo)`    | function extension: invokes  a function in a filter expression          |\n\n## Dependencies\n\nThis package has no runtime dependencies, only testing dependencies.\n\n## Copyright\n\nCopyright © 2024-2025 David E. Wheeler\n\n  [⚖️ MIT]: https://img.shields.io/badge/License-MIT-blue.svg \"⚖️ MIT License\"\n  [mit]: https://opensource.org/license/MIT \"⚖️ MIT License\"\n  [📚 Docs]: https://godoc.org/github.com/theory/jsonpath?status.svg \"📚 Documentation\"\n  [docs]: https://pkg.go.dev/github.com/theory/jsonpath \"📄 Documentation\"\n  [🗃️ Report Card]: https://goreportcard.com/badge/github.com/theory/jsonpath\n    \"🗃️ Report Card\"\n  [card]: https://goreportcard.com/report/github.com/theory/jsonpath\n    \"🗃️ Report Card\"\n  [🛠️ Build Status]: https://github.com/theory/jsonpath/actions/workflows/ci.yml/badge.svg\n    \"🛠️ Build Status\"\n  [ci]: https://github.com/theory/jsonpath/actions/workflows/ci.yml\n    \"🛠️ Build Status\"\n  [📊 Coverage]: https://codecov.io/gh/theory/jsonpath/graph/badge.svg?token=UB1UJ95NIK\n    \"📊 Code Coverage\"\n  [cov]: https://codecov.io/gh/theory/jsonpath \"📊 Code Coverage\"\n  [RFC 9535 JSONPath]: https://www.rfc-editor.org/rfc/rfc9535.html\n    \"RFC 9535 JSONPath: Query Expressions for JSON\"\n  [Playground]: https://theory.github.io/jsonpath/ \"Go JSONPath Playground\"\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftheory%2Fjsonpath","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftheory%2Fjsonpath","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftheory%2Fjsonpath/lists"}