indy_data_types/identifiers/
mod.rs

1/// Credential definition identifiers
2pub mod cred_def;
3/// Revocation registry identifiers
4pub mod rev_reg;
5/// V1 schema identifiers
6pub mod schema;
7
8#[cfg(any(feature = "rich_schema", test))]
9/// Rich schema identifiers
10pub mod rich_schema;
11
12/// The standard delimiter used in identifier strings
13pub const DELIMITER: &str = ":";