Validate STAC with jsonschema.
To use the library in your project:
toml
[dependencies]
stac = "0.5"
stac-validate = "0.1"
rust
use stac_validate::Validate;
let item: stac::Item = stac::read("data/simple-item.json").unwrap();
item.validate().unwrap();
Please see the documentation for more usage examples.