File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -463,19 +463,19 @@ pub struct EnumSchema {
463463
464464 /// Allowed enum values (string values only per MCP spec)
465465 #[ serde( rename = "enum" ) ]
466- pub enum_values : Vec < String > ,
466+ enum_values : Vec < String > ,
467467
468468 /// Optional human-readable names for each enum value
469469 #[ serde( skip_serializing_if = "Option::is_none" ) ]
470- pub enum_names : Option < Vec < String > > ,
470+ enum_names : Option < Vec < String > > ,
471471
472472 /// Optional title for the schema
473473 #[ serde( skip_serializing_if = "Option::is_none" ) ]
474- pub title : Option < Cow < ' static , str > > ,
474+ title : Option < Cow < ' static , str > > ,
475475
476476 /// Human-readable description
477477 #[ serde( skip_serializing_if = "Option::is_none" ) ]
478- pub description : Option < Cow < ' static , str > > ,
478+ description : Option < Cow < ' static , str > > ,
479479}
480480
481481impl EnumSchema {
You can’t perform that action at this time.
0 commit comments