1//! Syntaxes for the VC data model.
2//! JSON syntax for Credentials and Presentations.
3use super::V1;
45mod credential;
6mod presentation;
78pub use credential::*;
9pub use presentation::*;
1011pub type Context<C = ()> = crate::syntax::Context<V1, C>;