stac-validate 0.1.2

Validate STAC objects with jsonschema
Documentation

stac-validate

GitHub Workflow Status docs.rs Crates.io Crates.io Contributor Covenant

Validate STAC with jsonschema.

Usage

To use the library in your project:

[dependencies]
stac-validate = "0.1"

Examples

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.

Other info

This crate is part of the stac-rs monorepo, see its README for contributing and license information.