Files
brk/crates/brk_bindgen/src/openapi/parameter.rs
T
2026-08-05 14:50:47 +02:00

13 lines
301 B
Rust

use serde_json::Value;
/// Parameter information.
#[derive(Debug, Clone)]
pub struct Parameter {
pub name: String,
pub required: bool,
pub param_type: String,
pub description: Option<String>,
/// Original OpenAPI/JSON Schema for schema-driven generators.
pub schema: Value,
}