Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/hiltontj/serde_json_path

Query serde_json Values with JSONPath
https://github.com/hiltontj/serde_json_path

json json-path jsonpath rust serde serde-json

Last synced: 5 days ago
JSON representation

Query serde_json Values with JSONPath

Awesome Lists containing this project

README

        

# serde_json_path

`serde_json_path` allows you to use JSONPath ([RFC 9535][rfc]) to query the [`serde_json::Value`][serde_json_value] type.

[![Build status](https://github.com/hiltontj/serde_json_path/actions/workflows/ci.yml/badge.svg?branch=main)](https://github.com/hiltontj/serde_json_path/actions/workflows/ci.yml)
[![Crates.io](https://img.shields.io/crates/v/serde_json_path)](https://crates.io/crates/serde_json_path)
[![Documentation](https://docs.rs/serde_json_path/badge.svg)][docs]
[![CTS Submodule Update and Test](https://github.com/hiltontj/serde_json_path/actions/workflows/cts.yml/badge.svg)](https://github.com/hiltontj/serde_json_path/actions/workflows/cts.yml)

## Learn More

* See the [Crate Documentation][docs] for usage and examples.
* See the JSONPath standard ([RFC 9535][rfc]) for more details about JSONPath query syntax and examples of its usage.
* Try it out in the [Sandbox](https://serdejsonpath.live)

## License

This project is licensed under the [MIT license][license].

### Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted
for inclusion in `serde_json_path` by you, shall be licensed as MIT, without any
additional terms or conditions.

[rfc]: https://www.rfc-editor.org/rfc/rfc9535.html
[docs]: https://docs.rs/serde_json_path
[serde_json_value]: https://docs.rs/serde_json/latest/serde_json/enum.Value.html
[license]: https://github.com/hiltontj/serde_json_path/blob/main/LICENSE-MIT