1 2 3 4 5 6 7 8 9 10 11 12
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, }