stac-validate

Crates.iostac-validate
lib.rsstac-validate
version0.1.2
sourcesrc
created_at2023-06-27 14:06:08.311425
updated_at2024-04-29 20:30:08.422269
descriptionValidate STAC objects with jsonschema
homepagehttps://github.com/stac-utils/stac-rs
repositoryhttps://github.com/stac-utils/stac-rs
max_upload_size
id901325
size108,029
Pete Gadomski (gadomski)

documentation

README

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.

Commit count: 501

cargo fmt