1use crate::Uri; 2 3pub type BaseAny = serde_json::Value; 4pub type BaseObject = serde_json::Map<String, serde_json::Value>; 5pub type BaseArray = Vec<serde_json::Value>; 6pub type URI = Uri; 7pub type DocumentUri = Uri;