diff --git a/rust/src/api_explorer/search.rs b/rust/src/api_explorer/search.rs index 1538c07..8ccfacb 100644 --- a/rust/src/api_explorer/search.rs +++ b/rust/src/api_explorer/search.rs @@ -34,15 +34,15 @@ pub(super) fn command() -> RuntimeCommandSpec { RuntimeCommandSpec::new_typed::( CommandSpec::from_args::("search", "Search API endpoints by keyword") .with_long( - "Full-text searches across all API domains, matching against operation IDs, \ - paths, summaries, and descriptions. Returns matching endpoints with domain, \ - method, path, and summary. Use `api operation get ` \ - to inspect a result in full detail.", + "Full-text searches across all API domains, matching against \ + operation IDs, paths, summaries, and descriptions. Use \ + `api operation get ` to inspect a result in full \ + detail.", ) .with_system("api") .with_tier(Tier::Read) .no_auth(true) - .with_default_fields("domain,method,path,summary") + .with_default_fields("operationId,domain,method,path,summary") .with_output_schema::() .with_pagination(PaginationConfig { max_limit: 100,