yaml-validator 0.2.0

A library for validating YAML against YAML-defined schemas
Documentation
1
2
3
4
5
6
7
8
9
pub(crate) mod all_of;
pub(crate) mod any_of;
pub(crate) mod not;
pub(crate) mod one_of;

pub(crate) use all_of::SchemaAllOf;
pub(crate) use any_of::SchemaAnyOf;
pub(crate) use not::SchemaNot;
pub(crate) use one_of::SchemaOneOf;