dpp/identity/fields.rs
1pub mod property_names {
2 pub const PUBLIC_KEYS: &str = "publicKeys";
3 pub const ID_JSON: &str = "$id";
4 pub const ID_RAW_OBJECT: &str = "id";
5}
6
7pub const IDENTITY_MAX_KEYS: u16 = 15000;
8
9pub const IDENTIFIER_FIELDS_JSON: [&str; 1] = [property_names::ID_JSON];
10pub const IDENTIFIER_FIELDS_RAW_OBJECT: [&str; 1] = [property_names::ID_RAW_OBJECT];