yaml-schema 0.9.1

A YAML schema validator
Documentation
//! The schemas defined in YAML Schema

mod all_of;
mod any_of;
mod array;
mod r#enum;
mod format;
mod if_then_else;
mod integer;
mod not;
mod number;
mod numeric;
mod object;
mod one_of;
mod root_schema;
mod string;
mod yaml_schema;

pub use all_of::AllOfSchema;
pub use any_of::AnyOfSchema;
pub use array::ArraySchema;
pub use r#enum::EnumSchema;
pub use format::StringFormat;
pub use if_then_else::IfThenElseSchema;
pub use integer::IntegerSchema;
pub use not::NotSchema;
pub use number::NumberSchema;
pub use numeric::NumericBounds;
pub use object::ObjectSchema;
pub use object::PatternProperty;
pub use one_of::OneOfSchema;
pub use root_schema::RootSchema;
pub use string::StringSchema;
pub use yaml_schema::BooleanOrSchema;
pub use yaml_schema::SchemaType;
pub use yaml_schema::YamlSchema;