//! Version handling for ODCS documents.
/// Supported upstream ODCS `apiVersion` values for this implementation.
pubconstSUPPORTED_API_VERSIONS:&[&str]=&["v3.1.0"];/// Returns `true` when the API version is supported by this crate.
#[must_use]pubfnis_supported_api_version(api_version:&str)->bool{SUPPORTED_API_VERSIONS.contains(&api_version)}