1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
use super::*;

/// ## The numeric format authorized by the OAPI specs
#[derive(Debug, Serialize, Deserialize, Clone, PartialEq, Sparsable, OApiCheck)]
#[serde(rename_all = "camelCase")]
pub enum OApiNumericFormat {
    Int32,
    Int64,
    Float,
    Double,
}