1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
# serde_json_path
`serde_json_path` allows you to use JSONPath ([RFC 9535][rfc]) to query the [`serde_json::Value`][serde_json_value] type.
[](https://github.com/hiltontj/serde_json_path/actions/workflows/ci.yml)
[](https://crates.io/crates/serde_json_path)
[][docs]
[](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
|