Skip to main content

trailbase_schema/
error.rs

1use std::sync::Arc;
2
3#[derive(Debug, Clone, thiserror::Error)]
4pub enum Error {
5  #[error("JSONSchema validation error: {0}")]
6  JsonSchema(Arc<jsonschema::ValidationError<'static>>),
7  #[error("Cannot update builtin schemas")]
8  BuiltinSchema,
9  #[error("Missing name")]
10  MissingName,
11}