//! ServiceNow Schema Module
//! # Description
//! This module contains the schema for the ServiceNow APIs
pub type SnowString = ;
/// # Description
/// Generate `SnowString` from anything that implements Into<String>
/// ```
/// use snow_rs::{snow_string,SnowString};
/// let a_string = snow_string("a str");
/// assert!(a_string.is_some());
/// ```