diff --git a/fastapi/openapi/utils.py b/fastapi/openapi/utils.py index 58a748d04..46b685198 100644 --- a/fastapi/openapi/utils.py +++ b/fastapi/openapi/utils.py @@ -393,6 +393,7 @@ def get_openapi( terms_of_service: Optional[str] = None, contact: Optional[Dict[str, Union[str, Any]]] = None, license_info: Optional[Dict[str, Union[str, Any]]] = None, + prefix: Optional[str] = None, ) -> Dict[str, Any]: info: Dict[str, Any] = {"title": title, "version": version} if description: @@ -421,6 +422,8 @@ def get_openapi( ) if result: path, security_schemes, path_definitions = result + if prefix: + route.path_format= prefix + route.path_format if path: paths.setdefault(route.path_format, {}).update(path) if security_schemes: