/// JSON `str` typically for JavaScript Object Notation.
///
/// Example:
///
/// ```
/// let s: JsonStr = "{ \"alfa\": \"bravo\" }";
/// ```
///
pub type JsonStr = str;
/// JSON `String` typically for JavaScript Object Notation.
///
/// Example:
///
/// ```
/// let s: JsonString = JsonString::from("{ \"alfa\": \"bravo\" }");
/// ```
///
pub type JsonString = String;