Files
brk/crates/brk_bindgen/src/openapi/text_schema.rs
T
2026-05-01 19:14:15 +02:00

9 lines
291 B
Rust

/// Schema metadata for a typed `text/plain` response.
#[derive(Debug, Clone)]
pub struct TextSchema {
/// Schema name, e.g. "Height", "Hex".
pub name: String,
/// True when the underlying primitive is `integer`/`number` (body needs numeric parsing).
pub is_numeric: bool,
}