]> git.ipfire.org Git - thirdparty/fastapi/fastapi.git/commitdiff
:art: Improve automatic naming of path operations in API docs (#155)
authorSebastián Ramírez <tiangolo@gmail.com>
Fri, 12 Apr 2019 17:25:26 +0000 (21:25 +0400)
committerGitHub <noreply@github.com>
Fri, 12 Apr 2019 17:25:26 +0000 (21:25 +0400)
* :art: Improve operation summary naming

* :memo: Update names in README

* :truck: Improve names of security tutorial

77 files changed:
README.md
docs/index.md
docs/src/handling_errors/tutorial001.py
docs/src/handling_errors/tutorial002.py
docs/src/security/tutorial004.py
docs/src/security/tutorial005.py
fastapi/openapi/utils.py
tests/test_additional_properties.py
tests/test_additional_response_extra.py
tests/test_additional_responses_router.py
tests/test_application.py
tests/test_extra_routes.py
tests/test_multi_body_errors.py
tests/test_multi_query_errors.py
tests/test_put_no_body.py
tests/test_security_api_key_cookie.py
tests/test_security_api_key_cookie_optional.py
tests/test_security_api_key_header.py
tests/test_security_api_key_header_optional.py
tests/test_security_api_key_query.py
tests/test_security_api_key_query_optional.py
tests/test_security_http_base.py
tests/test_security_http_base_optional.py
tests/test_security_http_basic.py
tests/test_security_http_basic_optional.py
tests/test_security_http_bearer.py
tests/test_security_http_bearer_optional.py
tests/test_security_http_digest.py
tests/test_security_http_digest_optional.py
tests/test_security_oauth2.py
tests/test_security_oauth2_optional.py
tests/test_security_oauth2_password_bearer_optional.py
tests/test_security_openid_connect.py
tests/test_security_openid_connect_optional.py
tests/test_starlette_exception.py
tests/test_tutorial/test_additional_responses/test_tutorial001.py
tests/test_tutorial/test_additional_responses/test_tutorial002.py
tests/test_tutorial/test_additional_responses/test_tutorial003.py
tests/test_tutorial/test_additional_responses/test_tutorial004.py
tests/test_tutorial/test_application_configuration/test_tutorial001.py
tests/test_tutorial/test_async_sql_databases/test_tutorial001.py
tests/test_tutorial/test_bigger_applications/test_main.py
tests/test_tutorial/test_body/test_tutorial001.py
tests/test_tutorial/test_body_multiple_params/test_tutorial001.py
tests/test_tutorial/test_body_schema/test_tutorial001.py
tests/test_tutorial/test_cookie_params/test_tutorial001.py
tests/test_tutorial/test_custom_response/test_tutorial001.py
tests/test_tutorial/test_custom_response/test_tutorial004.py
tests/test_tutorial/test_dependencies/test_tutorial001.py
tests/test_tutorial/test_dependencies/test_tutorial004.py
tests/test_tutorial/test_events/test_tutorial001.py
tests/test_tutorial/test_events/test_tutorial002.py
tests/test_tutorial/test_extending_openapi/test_tutorial001.py
tests/test_tutorial/test_extra_data_types/test_tutorial001.py
tests/test_tutorial/test_extra_models/test_tutorial003.py
tests/test_tutorial/test_extra_models/test_tutorial004.py
tests/test_tutorial/test_first_steps/test_tutorial001.py
tests/test_tutorial/test_handling_errors/test_tutorial001.py
tests/test_tutorial/test_handling_errors/test_tutorial002.py
tests/test_tutorial/test_header_params/test_tutorial001.py
tests/test_tutorial/test_path_operation_advanced_configurations/test_tutorial001.py
tests/test_tutorial/test_path_operation_configurations/test_tutorial006.py
tests/test_tutorial/test_query_params/test_tutorial005.py
tests/test_tutorial/test_query_params/test_tutorial006.py
tests/test_tutorial/test_query_params_str_validations/test_tutorial001.py
tests/test_tutorial/test_query_params_str_validations/test_tutorial011.py
tests/test_tutorial/test_request_files/test_tutorial001.py
tests/test_tutorial/test_request_forms/test_tutorial001.py
tests/test_tutorial/test_request_forms_and_files/test_tutorial001.py
tests/test_tutorial/test_response_model/test_tutorial003.py
tests/test_tutorial/test_security/test_tutorial001.py
tests/test_tutorial/test_security/test_tutorial003.py
tests/test_tutorial/test_security/test_tutorial005.py
tests/test_tutorial/test_sql_databases/test_tutorial001.py
tests/test_tutorial/test_sub_applications/test_tutorial001.py
tests/test_tutorial/test_testing/test_main.py
tests/test_tutorial/test_testing/test_tutorial001.py

index 2588b8de73a26ff1bb436bd729450ba0619f4e5b..7c6224087cb5fd6557c3bc62e6aeee69f234c8a9 100644 (file)
--- a/README.md
+++ b/README.md
@@ -220,7 +220,7 @@ def read_item(item_id: int, q: str = None):
 
 
 @app.put("/items/{item_id}")
-def create_item(item_id: int, item: Item):
+def update_item(item_id: int, item: Item):
     return {"item_name": item.name, "item_id": item_id}
 ```
 
index 2588b8de73a26ff1bb436bd729450ba0619f4e5b..7c6224087cb5fd6557c3bc62e6aeee69f234c8a9 100644 (file)
@@ -220,7 +220,7 @@ def read_item(item_id: int, q: str = None):
 
 
 @app.put("/items/{item_id}")
-def create_item(item_id: int, item: Item):
+def update_item(item_id: int, item: Item):
     return {"item_name": item.name, "item_id": item_id}
 ```
 
index 8d02940fc6449db4309e4a457880682a52edb5ba..e5f32aac29e33ea8861bdf76e63977b4654d5789 100644 (file)
@@ -6,7 +6,7 @@ items = {"foo": "The Foo Wrestlers"}
 
 
 @app.get("/items/{item_id}")
-async def create_item(item_id: str):
+async def read_item(item_id: str):
     if item_id not in items:
         raise HTTPException(status_code=404, detail="Item not found")
     return {"item": items[item_id]}
index bbc38533132317447f8fcdefbb33a9e5f73239ee..e48c295c9c2691ad7be1c1247c1c4c494435aef6 100644 (file)
@@ -6,7 +6,7 @@ items = {"foo": "The Foo Wrestlers"}
 
 
 @app.get("/items-header/{item_id}")
-async def create_item_header(item_id: str):
+async def read_item_header(item_id: str):
     if item_id not in items:
         raise HTTPException(
             status_code=404,
index bac77a4b114085b16cb6bf8e35b52a898ef96d98..2b8eb624f787b6654628f10f573d9d805a245a3b 100644 (file)
@@ -112,7 +112,7 @@ async def get_current_active_user(current_user: User = Depends(get_current_user)
 
 
 @app.post("/token", response_model=Token)
-async def route_login_access_token(form_data: OAuth2PasswordRequestForm = Depends()):
+async def login_for_access_token(form_data: OAuth2PasswordRequestForm = Depends()):
     user = authenticate_user(fake_users_db, form_data.username, form_data.password)
     if not user:
         raise HTTPException(status_code=400, detail="Incorrect username or password")
index f13e2310e667bba13477739af104574d60c9c0c4..a9704b1923ea951f4bfcd8665eaa7852ff6c871e 100644 (file)
@@ -138,7 +138,7 @@ async def get_current_active_user(
 
 
 @app.post("/token", response_model=Token)
-async def route_login_access_token(form_data: OAuth2PasswordRequestForm = Depends()):
+async def login_for_access_token(form_data: OAuth2PasswordRequestForm = Depends()):
     user = authenticate_user(fake_users_db, form_data.username, form_data.password)
     if not user:
         raise HTTPException(status_code=400, detail="Incorrect username or password")
index 78175d841d44c6965a328fb80acdbffea40da018..5c4f0884b894ca07670ed0ff75507ad86b594832 100644 (file)
@@ -124,7 +124,7 @@ def generate_operation_id(*, route: routing.APIRoute, method: str) -> str:
 def generate_operation_summary(*, route: routing.APIRoute, method: str) -> str:
     if route.summary:
         return route.summary
-    return route.name.replace("_", " ").title() + " " + method.title()
+    return route.name.replace("_", " ").title()
 
 
 def get_openapi_operation_metadata(*, route: routing.APIRoute, method: str) -> Dict:
index cf39c8e518ebf7977bb6e965d8e32f329e86edfa..54cc74fa6a229f0f3c6779b1b5383eefea94cd48 100644 (file)
@@ -41,7 +41,7 @@ openapi_schema = {
                         },
                     },
                 },
-                "summary": "Foo Post",
+                "summary": "Foo",
                 "operationId": "foo_foo_post",
                 "requestBody": {
                     "content": {
index 45afcc0e5c798ad359801b716cc27bc205194cda..e2381cd7dce1d4c860b49abac4de2814c2c9d492 100644 (file)
@@ -30,7 +30,7 @@ openapi_schema = {
                         "content": {"application/json": {"schema": {}}},
                     }
                 },
-                "summary": "Read Item Get",
+                "summary": "Read Item",
                 "operationId": "read_item_items__get",
             }
         }
index e97bb625256188a31f45ac6558356fbdcc05756f..49ef5f04992f4e68961aeaf345b076dbf11ce651 100644 (file)
@@ -35,7 +35,7 @@ openapi_schema = {
                         "content": {"application/json": {"schema": {}}},
                     },
                 },
-                "summary": "A Get",
+                "summary": "A",
                 "operationId": "a_a_get",
             }
         },
@@ -48,7 +48,7 @@ openapi_schema = {
                         "content": {"application/json": {"schema": {}}},
                     },
                 },
-                "summary": "B Get",
+                "summary": "B",
                 "operationId": "b_b_get",
             }
         },
@@ -61,7 +61,7 @@ openapi_schema = {
                         "content": {"application/json": {"schema": {}}},
                     },
                 },
-                "summary": "C Get",
+                "summary": "C",
                 "operationId": "c_c_get",
             }
         },
index fb0f539751f15361f16b33e83806f81b3c1fa9cf..d459587e63a8f05d844ab734a75f487d25c59de3 100644 (file)
@@ -17,7 +17,7 @@ openapi_schema = {
                         "content": {"application/json": {"schema": {}}},
                     }
                 },
-                "summary": "Non Operation Get",
+                "summary": "Non Operation",
                 "operationId": "non_operation_api_route_get",
             }
         },
@@ -29,7 +29,7 @@ openapi_schema = {
                         "content": {"application/json": {"schema": {}}},
                     }
                 },
-                "summary": "Non Decorated Route Get",
+                "summary": "Non Decorated Route",
                 "operationId": "non_decorated_route_non_decorated_route_get",
             }
         },
@@ -41,7 +41,7 @@ openapi_schema = {
                         "content": {"application/json": {"schema": {}}},
                     }
                 },
-                "summary": "Get Text Get",
+                "summary": "Get Text",
                 "operationId": "get_text_text_get",
             }
         },
@@ -63,7 +63,7 @@ openapi_schema = {
                         },
                     },
                 },
-                "summary": "Get Id Get",
+                "summary": "Get Id",
                 "operationId": "get_id_path__item_id__get",
                 "parameters": [
                     {
@@ -93,7 +93,7 @@ openapi_schema = {
                         },
                     },
                 },
-                "summary": "Get Str Id Get",
+                "summary": "Get Str Id",
                 "operationId": "get_str_id_path_str__item_id__get",
                 "parameters": [
                     {
@@ -123,7 +123,7 @@ openapi_schema = {
                         },
                     },
                 },
-                "summary": "Get Int Id Get",
+                "summary": "Get Int Id",
                 "operationId": "get_int_id_path_int__item_id__get",
                 "parameters": [
                     {
@@ -153,7 +153,7 @@ openapi_schema = {
                         },
                     },
                 },
-                "summary": "Get Float Id Get",
+                "summary": "Get Float Id",
                 "operationId": "get_float_id_path_float__item_id__get",
                 "parameters": [
                     {
@@ -183,7 +183,7 @@ openapi_schema = {
                         },
                     },
                 },
-                "summary": "Get Bool Id Get",
+                "summary": "Get Bool Id",
                 "operationId": "get_bool_id_path_bool__item_id__get",
                 "parameters": [
                     {
@@ -213,7 +213,7 @@ openapi_schema = {
                         },
                     },
                 },
-                "summary": "Get Path Param Id Get",
+                "summary": "Get Path Param Id",
                 "operationId": "get_path_param_id_path_param__item_id__get",
                 "parameters": [
                     {
@@ -243,7 +243,7 @@ openapi_schema = {
                         },
                     },
                 },
-                "summary": "Get Path Param Required Id Get",
+                "summary": "Get Path Param Required Id",
                 "operationId": "get_path_param_required_id_path_param-required__item_id__get",
                 "parameters": [
                     {
@@ -273,7 +273,7 @@ openapi_schema = {
                         },
                     },
                 },
-                "summary": "Get Path Param Min Length Get",
+                "summary": "Get Path Param Min Length",
                 "operationId": "get_path_param_min_length_path_param-minlength__item_id__get",
                 "parameters": [
                     {
@@ -307,7 +307,7 @@ openapi_schema = {
                         },
                     },
                 },
-                "summary": "Get Path Param Max Length Get",
+                "summary": "Get Path Param Max Length",
                 "operationId": "get_path_param_max_length_path_param-maxlength__item_id__get",
                 "parameters": [
                     {
@@ -341,7 +341,7 @@ openapi_schema = {
                         },
                     },
                 },
-                "summary": "Get Path Param Min Max Length Get",
+                "summary": "Get Path Param Min Max Length",
                 "operationId": "get_path_param_min_max_length_path_param-min_maxlength__item_id__get",
                 "parameters": [
                     {
@@ -376,7 +376,7 @@ openapi_schema = {
                         },
                     },
                 },
-                "summary": "Get Path Param Gt Get",
+                "summary": "Get Path Param Gt",
                 "operationId": "get_path_param_gt_path_param-gt__item_id__get",
                 "parameters": [
                     {
@@ -410,7 +410,7 @@ openapi_schema = {
                         },
                     },
                 },
-                "summary": "Get Path Param Gt0 Get",
+                "summary": "Get Path Param Gt0",
                 "operationId": "get_path_param_gt0_path_param-gt0__item_id__get",
                 "parameters": [
                     {
@@ -444,7 +444,7 @@ openapi_schema = {
                         },
                     },
                 },
-                "summary": "Get Path Param Ge Get",
+                "summary": "Get Path Param Ge",
                 "operationId": "get_path_param_ge_path_param-ge__item_id__get",
                 "parameters": [
                     {
@@ -478,7 +478,7 @@ openapi_schema = {
                         },
                     },
                 },
-                "summary": "Get Path Param Lt Get",
+                "summary": "Get Path Param Lt",
                 "operationId": "get_path_param_lt_path_param-lt__item_id__get",
                 "parameters": [
                     {
@@ -512,7 +512,7 @@ openapi_schema = {
                         },
                     },
                 },
-                "summary": "Get Path Param Lt0 Get",
+                "summary": "Get Path Param Lt0",
                 "operationId": "get_path_param_lt0_path_param-lt0__item_id__get",
                 "parameters": [
                     {
@@ -546,7 +546,7 @@ openapi_schema = {
                         },
                     },
                 },
-                "summary": "Get Path Param Le Get",
+                "summary": "Get Path Param Le",
                 "operationId": "get_path_param_le_path_param-le__item_id__get",
                 "parameters": [
                     {
@@ -580,7 +580,7 @@ openapi_schema = {
                         },
                     },
                 },
-                "summary": "Get Path Param Lt Gt Get",
+                "summary": "Get Path Param Lt Gt",
                 "operationId": "get_path_param_lt_gt_path_param-lt-gt__item_id__get",
                 "parameters": [
                     {
@@ -615,7 +615,7 @@ openapi_schema = {
                         },
                     },
                 },
-                "summary": "Get Path Param Le Ge Get",
+                "summary": "Get Path Param Le Ge",
                 "operationId": "get_path_param_le_ge_path_param-le-ge__item_id__get",
                 "parameters": [
                     {
@@ -650,7 +650,7 @@ openapi_schema = {
                         },
                     },
                 },
-                "summary": "Get Path Param Lt Int Get",
+                "summary": "Get Path Param Lt Int",
                 "operationId": "get_path_param_lt_int_path_param-lt-int__item_id__get",
                 "parameters": [
                     {
@@ -684,7 +684,7 @@ openapi_schema = {
                         },
                     },
                 },
-                "summary": "Get Path Param Gt Int Get",
+                "summary": "Get Path Param Gt Int",
                 "operationId": "get_path_param_gt_int_path_param-gt-int__item_id__get",
                 "parameters": [
                     {
@@ -718,7 +718,7 @@ openapi_schema = {
                         },
                     },
                 },
-                "summary": "Get Path Param Le Int Get",
+                "summary": "Get Path Param Le Int",
                 "operationId": "get_path_param_le_int_path_param-le-int__item_id__get",
                 "parameters": [
                     {
@@ -752,7 +752,7 @@ openapi_schema = {
                         },
                     },
                 },
-                "summary": "Get Path Param Ge Int Get",
+                "summary": "Get Path Param Ge Int",
                 "operationId": "get_path_param_ge_int_path_param-ge-int__item_id__get",
                 "parameters": [
                     {
@@ -786,7 +786,7 @@ openapi_schema = {
                         },
                     },
                 },
-                "summary": "Get Path Param Lt Gt Int Get",
+                "summary": "Get Path Param Lt Gt Int",
                 "operationId": "get_path_param_lt_gt_int_path_param-lt-gt-int__item_id__get",
                 "parameters": [
                     {
@@ -821,7 +821,7 @@ openapi_schema = {
                         },
                     },
                 },
-                "summary": "Get Path Param Le Ge Int Get",
+                "summary": "Get Path Param Le Ge Int",
                 "operationId": "get_path_param_le_ge_int_path_param-le-ge-int__item_id__get",
                 "parameters": [
                     {
@@ -856,7 +856,7 @@ openapi_schema = {
                         },
                     },
                 },
-                "summary": "Get Query Get",
+                "summary": "Get Query",
                 "operationId": "get_query_query_get",
                 "parameters": [
                     {
@@ -886,7 +886,7 @@ openapi_schema = {
                         },
                     },
                 },
-                "summary": "Get Query Optional Get",
+                "summary": "Get Query Optional",
                 "operationId": "get_query_optional_query_optional_get",
                 "parameters": [
                     {
@@ -916,7 +916,7 @@ openapi_schema = {
                         },
                     },
                 },
-                "summary": "Get Query Type Get",
+                "summary": "Get Query Type",
                 "operationId": "get_query_type_query_int_get",
                 "parameters": [
                     {
@@ -946,7 +946,7 @@ openapi_schema = {
                         },
                     },
                 },
-                "summary": "Get Query Type Optional Get",
+                "summary": "Get Query Type Optional",
                 "operationId": "get_query_type_optional_query_int_optional_get",
                 "parameters": [
                     {
@@ -976,7 +976,7 @@ openapi_schema = {
                         },
                     },
                 },
-                "summary": "Get Query Type Optional Get",
+                "summary": "Get Query Type Optional",
                 "operationId": "get_query_type_optional_query_int_default_get",
                 "parameters": [
                     {
@@ -1006,7 +1006,7 @@ openapi_schema = {
                         },
                     },
                 },
-                "summary": "Get Query Param Get",
+                "summary": "Get Query Param",
                 "operationId": "get_query_param_query_param_get",
                 "parameters": [
                     {
@@ -1036,7 +1036,7 @@ openapi_schema = {
                         },
                     },
                 },
-                "summary": "Get Query Param Required Get",
+                "summary": "Get Query Param Required",
                 "operationId": "get_query_param_required_query_param-required_get",
                 "parameters": [
                     {
@@ -1066,7 +1066,7 @@ openapi_schema = {
                         },
                     },
                 },
-                "summary": "Get Query Param Required Type Get",
+                "summary": "Get Query Param Required Type",
                 "operationId": "get_query_param_required_type_query_param-required_int_get",
                 "parameters": [
                     {
index 6147c3414b13efb4d5843bb2a5107f4d843197ac..812a48fea3f40389fd3086fbe1c6ad89c1dd85ee 100644 (file)
@@ -72,7 +72,7 @@ openapi_schema = {
                         },
                     },
                 },
-                "summary": "Get Items Get",
+                "summary": "Get Items",
                 "operationId": "get_items_items__item_id__get",
                 "parameters": [
                     {
@@ -100,7 +100,7 @@ openapi_schema = {
                         },
                     },
                 },
-                "summary": "Delete Item Delete",
+                "summary": "Delete Item",
                 "operationId": "delete_item_items__item_id__delete",
                 "parameters": [
                     {
@@ -136,7 +136,7 @@ openapi_schema = {
                         },
                     },
                 },
-                "summary": "Options Item Options",
+                "summary": "Options Item",
                 "operationId": "options_item_items__item_id__options",
                 "parameters": [
                     {
@@ -164,7 +164,7 @@ openapi_schema = {
                         },
                     },
                 },
-                "summary": "Head Item Head",
+                "summary": "Head Item",
                 "operationId": "head_item_items__item_id__head",
                 "parameters": [
                     {
@@ -192,7 +192,7 @@ openapi_schema = {
                         },
                     },
                 },
-                "summary": "Patch Item Patch",
+                "summary": "Patch Item",
                 "operationId": "patch_item_items__item_id__patch",
                 "parameters": [
                     {
@@ -228,7 +228,7 @@ openapi_schema = {
                         },
                     },
                 },
-                "summary": "Trace Item Trace",
+                "summary": "Trace Item",
                 "operationId": "trace_item_items__item_id__trace",
                 "parameters": [
                     {
@@ -258,7 +258,7 @@ openapi_schema = {
                         },
                     },
                 },
-                "summary": "Get Not Decorated Get",
+                "summary": "Get Not Decorated",
                 "operationId": "get_not_decorated_items-not-decorated__item_id__get",
                 "parameters": [
                     {
index fc85631dc2640b5f8c6913ada75d24a7f77f3480..ef07c2a870a8ba955b90b8b5a2c72f801ba8c1df 100644 (file)
@@ -42,7 +42,7 @@ openapi_schema = {
                         },
                     },
                 },
-                "summary": "Save Item No Body Post",
+                "summary": "Save Item No Body",
                 "operationId": "save_item_no_body_items__post",
                 "requestBody": {
                     "content": {
index 4cb97da92c1aee90f8dde2a4561bb3d3f7ff128d..1e722dc06ab14b94ba308caa01780340a54b2485 100644 (file)
@@ -36,7 +36,7 @@ openapi_schema = {
                         },
                     },
                 },
-                "summary": "Read Items Get",
+                "summary": "Read Items",
                 "operationId": "read_items_items__get",
                 "parameters": [
                     {
index 47800ebf188484eb4e3d6b482f8f750b8de4ee32..f70d6773e06829f0a7389306c1e7e457b931df0e 100644 (file)
@@ -34,7 +34,7 @@ openapi_schema = {
                         },
                     },
                 },
-                "summary": "Save Item No Body Put",
+                "summary": "Save Item No Body",
                 "operationId": "save_item_no_body_items__item_id__put",
                 "parameters": [
                     {
index 88b3eef01194afe4a671633c6e6339b98a08687e..e5577350e8cdf0a4a7ae464b548c59dc8023ec5f 100644 (file)
@@ -36,7 +36,7 @@ openapi_schema = {
                         "content": {"application/json": {"schema": {}}},
                     }
                 },
-                "summary": "Read Current User Get",
+                "summary": "Read Current User",
                 "operationId": "read_current_user_users_me_get",
                 "security": [{"APIKeyCookie": []}],
             }
index 3a962d8fe93ec86556733c1e1267b7ed5d522c89..95f0f2c685efb65a21373e5c591fc71a348fc6a4 100644 (file)
@@ -43,7 +43,7 @@ openapi_schema = {
                         "content": {"application/json": {"schema": {}}},
                     }
                 },
-                "summary": "Read Current User Get",
+                "summary": "Read Current User",
                 "operationId": "read_current_user_users_me_get",
                 "security": [{"APIKeyCookie": []}],
             }
index 2d6114d3e0a8c5794020c02f67969cb06b779fae..376ae5337fcb9cd6027a22f87944e8d7bf958f10 100644 (file)
@@ -36,7 +36,7 @@ openapi_schema = {
                         "content": {"application/json": {"schema": {}}},
                     }
                 },
-                "summary": "Read Current User Get",
+                "summary": "Read Current User",
                 "operationId": "read_current_user_users_me_get",
                 "security": [{"APIKeyHeader": []}],
             }
index 6dcb7b2888a2f2a5f5247d0ccc7592439f8be7e6..07629253af3141f54921b4b875169477fc789fa2 100644 (file)
@@ -42,7 +42,7 @@ openapi_schema = {
                         "content": {"application/json": {"schema": {}}},
                     }
                 },
-                "summary": "Read Current User Get",
+                "summary": "Read Current User",
                 "operationId": "read_current_user_users_me_get",
                 "security": [{"APIKeyHeader": []}],
             }
index 599b2540c637355b04cc95fd7546bb7fbf673c8d..13eb7abcca8ce2d19c04bdb747c0ab6d1415ff4a 100644 (file)
@@ -36,7 +36,7 @@ openapi_schema = {
                         "content": {"application/json": {"schema": {}}},
                     }
                 },
-                "summary": "Read Current User Get",
+                "summary": "Read Current User",
                 "operationId": "read_current_user_users_me_get",
                 "security": [{"APIKeyQuery": []}],
             }
index 0edc502e079acdf83b703bffa50fb498692caa19..2a80c14b1678b2bad3f0700a0c575859c8b94b00 100644 (file)
@@ -42,7 +42,7 @@ openapi_schema = {
                         "content": {"application/json": {"schema": {}}},
                     }
                 },
-                "summary": "Read Current User Get",
+                "summary": "Read Current User",
                 "operationId": "read_current_user_users_me_get",
                 "security": [{"APIKeyQuery": []}],
             }
index d37248e03e61d751ac8267960b12a566a9ab7122..b02407ca3f126af27ba8e36f2756b93359ef2d4b 100644 (file)
@@ -26,7 +26,7 @@ openapi_schema = {
                         "content": {"application/json": {"schema": {}}},
                     }
                 },
-                "summary": "Read Current User Get",
+                "summary": "Read Current User",
                 "operationId": "read_current_user_users_me_get",
                 "security": [{"HTTPBase": []}],
             }
index b42b63b2ab102b027a8623b9ce91fe84157b44ba..e53874be96902b3e1995825a144cc66a44333023 100644 (file)
@@ -32,7 +32,7 @@ openapi_schema = {
                         "content": {"application/json": {"schema": {}}},
                     }
                 },
-                "summary": "Read Current User Get",
+                "summary": "Read Current User",
                 "operationId": "read_current_user_users_me_get",
                 "security": [{"HTTPBase": []}],
             }
index c0c94dadffcca63d374b8682238bdd0099b34bb3..dd289301d4fd3dbfbcb8a617ec4a6072974c1d65 100644 (file)
@@ -29,7 +29,7 @@ openapi_schema = {
                         "content": {"application/json": {"schema": {}}},
                     }
                 },
-                "summary": "Read Current User Get",
+                "summary": "Read Current User",
                 "operationId": "read_current_user_users_me_get",
                 "security": [{"HTTPBasic": []}],
             }
index c5ee51a4df72cbefff9269a2e4bc93592f876efb..40d64d4124528a3f782dfe7a27c1e822cde76fc5 100644 (file)
@@ -32,7 +32,7 @@ openapi_schema = {
                         "content": {"application/json": {"schema": {}}},
                     }
                 },
-                "summary": "Read Current User Get",
+                "summary": "Read Current User",
                 "operationId": "read_current_user_users_me_get",
                 "security": [{"HTTPBasic": []}],
             }
index ad1bef38961b1575e7870e9bfce3fc7aabc2e00f..6689a5fc69973a0bf6ccce49f3bc89f1f67c3f27 100644 (file)
@@ -26,7 +26,7 @@ openapi_schema = {
                         "content": {"application/json": {"schema": {}}},
                     }
                 },
-                "summary": "Read Current User Get",
+                "summary": "Read Current User",
                 "operationId": "read_current_user_users_me_get",
                 "security": [{"HTTPBearer": []}],
             }
index 426793216dbf3840110a659ce3e0c35cc3f6af72..5a690c521f113f6842224365817423d2fb32e03f 100644 (file)
@@ -32,7 +32,7 @@ openapi_schema = {
                         "content": {"application/json": {"schema": {}}},
                     }
                 },
-                "summary": "Read Current User Get",
+                "summary": "Read Current User",
                 "operationId": "read_current_user_users_me_get",
                 "security": [{"HTTPBearer": []}],
             }
index d9be2d45edffdae9e72d8e8e5134680f4e3d192f..8de7dd065789fed6501ed43858c3c8fb9776696d 100644 (file)
@@ -26,7 +26,7 @@ openapi_schema = {
                         "content": {"application/json": {"schema": {}}},
                     }
                 },
-                "summary": "Read Current User Get",
+                "summary": "Read Current User",
                 "operationId": "read_current_user_users_me_get",
                 "security": [{"HTTPDigest": []}],
             }
index 072a564f537328e2fcfd36a0dac2232063b3aeb3..52ee0484fe384bfa455eaf273e2c3515bff0ca01 100644 (file)
@@ -32,7 +32,7 @@ openapi_schema = {
                         "content": {"application/json": {"schema": {}}},
                     }
                 },
-                "summary": "Read Current User Get",
+                "summary": "Read Current User",
                 "operationId": "read_current_user_users_me_get",
                 "security": [{"HTTPDigest": []}],
             }
index 050f17da3e51759182efa69e7d8235c095eb40aa..08f610f937c8cd98b15da3319b60f1a392ee66a9 100644 (file)
@@ -60,7 +60,7 @@ openapi_schema = {
                         },
                     },
                 },
-                "summary": "Read Current User Post",
+                "summary": "Read Current User",
                 "operationId": "read_current_user_login_post",
                 "requestBody": {
                     "content": {
@@ -82,7 +82,7 @@ openapi_schema = {
                         "content": {"application/json": {"schema": {}}},
                     }
                 },
-                "summary": "Read Current User Get",
+                "summary": "Read Current User",
                 "operationId": "read_current_user_users_me_get",
                 "security": [{"OAuth2": []}],
             }
index 7c245a0b40795066e9812fc4331426a90c60abfd..e585e29274192959d9b02dcd9e135f5e6fcd4a3e 100644 (file)
@@ -67,7 +67,7 @@ openapi_schema = {
                         },
                     },
                 },
-                "summary": "Read Current User Post",
+                "summary": "Read Current User",
                 "operationId": "read_current_user_login_post",
                 "requestBody": {
                     "content": {
@@ -89,7 +89,7 @@ openapi_schema = {
                         "content": {"application/json": {"schema": {}}},
                     }
                 },
-                "summary": "Read Current User Get",
+                "summary": "Read Current User",
                 "operationId": "read_current_user_users_me_get",
                 "security": [{"OAuth2": []}],
             }
index b50ff943b0d1775b64943046296fb288ee404727..bdd69d1992c239ca99c21425e412a28149d18505 100644 (file)
@@ -30,7 +30,7 @@ openapi_schema = {
                         "content": {"application/json": {"schema": {}}},
                     }
                 },
-                "summary": "Read Items Get",
+                "summary": "Read Items",
                 "operationId": "read_items_items__get",
                 "security": [{"OAuth2PasswordBearer": []}],
             }
index ce19dd92e3bedda49d1dd76bb251aeb80924af68..5a26eb5759511e44bf7719927d98e0852da5acfb 100644 (file)
@@ -36,7 +36,7 @@ openapi_schema = {
                         "content": {"application/json": {"schema": {}}},
                     }
                 },
-                "summary": "Read Current User Get",
+                "summary": "Read Current User",
                 "operationId": "read_current_user_users_me_get",
                 "security": [{"OpenIdConnect": []}],
             }
index a373826036d13783c626706125963298c1584516..76b9c6de1d18a5fbd7fa26f6f3b2ec43a3bc734b 100644 (file)
@@ -42,7 +42,7 @@ openapi_schema = {
                         "content": {"application/json": {"schema": {}}},
                     }
                 },
-                "summary": "Read Current User Get",
+                "summary": "Read Current User",
                 "operationId": "read_current_user_users_me_get",
                 "security": [{"OpenIdConnect": []}],
             }
index 87fdfc9353340e0bb479460846adeeae2f612766..74db57142f38cee7497985b316a2b0ee0423abee 100644 (file)
@@ -49,7 +49,7 @@ openapi_schema = {
                         },
                     },
                 },
-                "summary": "Create Item Get",
+                "summary": "Create Item",
                 "operationId": "create_item_items__item_id__get",
                 "parameters": [
                     {
@@ -79,7 +79,7 @@ openapi_schema = {
                         },
                     },
                 },
-                "summary": "Create Item Get",
+                "summary": "Create Item",
                 "operationId": "create_item_starlette-items__item_id__get",
                 "parameters": [
                     {
index e1ec1ed8cd0825d9530ad3ca7386d58597bc3e49..7ab350e8dc40c70eac56f844216dadbf3f60db53 100644 (file)
@@ -38,7 +38,7 @@ openapi_schema = {
                         },
                     },
                 },
-                "summary": "Read Item Get",
+                "summary": "Read Item",
                 "operationId": "read_item_items__item_id__get",
                 "parameters": [
                     {
index b45a148d4b081b994eb5149a48d0e0ded5cb6959..ac63ff2edf222e1c78cc71532a5c27ed993c941b 100644 (file)
@@ -34,7 +34,7 @@ openapi_schema = {
                         },
                     },
                 },
-                "summary": "Read Item Get",
+                "summary": "Read Item",
                 "operationId": "read_item_items__item_id__get",
                 "parameters": [
                     {
index 09dc8fd3c746f5ba2b346b95e6206d1aa316127b..aa90fff1709a6e93bfd19effd08a2762c9a1f0d6 100644 (file)
@@ -39,7 +39,7 @@ openapi_schema = {
                         },
                     },
                 },
-                "summary": "Read Item Get",
+                "summary": "Read Item",
                 "operationId": "read_item_items__item_id__get",
                 "parameters": [
                     {
index 91b5ca959315d3b88234bc00a47a5070fb9c13e4..d26183961fc8a76796759a0f38b557781761016b 100644 (file)
@@ -37,7 +37,7 @@ openapi_schema = {
                         },
                     },
                 },
-                "summary": "Read Item Get",
+                "summary": "Read Item",
                 "operationId": "read_item_items__item_id__get",
                 "parameters": [
                     {
index 577e9829cd83c22ec6e468b5088aaa89a2193919..ab79a089521cda76bfdbe368aa22ce8f247a4066 100644 (file)
@@ -20,7 +20,7 @@ openapi_schema = {
                         "content": {"application/json": {"schema": {}}},
                     }
                 },
-                "summary": "Read Items Get",
+                "summary": "Read Items",
                 "operationId": "read_items_items__get",
             }
         }
index 0293a6dfb159ef5e42fb75480478787d0513d670..d7ceb6642146c5a8b66f97e981ba6f09cfd86a7f 100644 (file)
@@ -22,7 +22,7 @@ openapi_schema = {
                         },
                     }
                 },
-                "summary": "Read Notes Get",
+                "summary": "Read Notes",
                 "operationId": "read_notes_notes__get",
             },
             "post": {
@@ -46,7 +46,7 @@ openapi_schema = {
                         },
                     },
                 },
-                "summary": "Create Note Post",
+                "summary": "Create Note",
                 "operationId": "create_note_notes__post",
                 "requestBody": {
                     "content": {
index fd11a77a91d1036c28e195383f55fa9803a55010..db094df7d4c7780b374eb7e378da5782372c7a75 100644 (file)
@@ -18,7 +18,7 @@ openapi_schema = {
                     }
                 },
                 "tags": ["users"],
-                "summary": "Read Users Get",
+                "summary": "Read Users",
                 "operationId": "read_users_users__get",
             }
         },
@@ -31,7 +31,7 @@ openapi_schema = {
                     }
                 },
                 "tags": ["users"],
-                "summary": "Read User Me Get",
+                "summary": "Read User Me",
                 "operationId": "read_user_me_users_me_get",
             }
         },
@@ -54,7 +54,7 @@ openapi_schema = {
                     },
                 },
                 "tags": ["users"],
-                "summary": "Read User Get",
+                "summary": "Read User",
                 "operationId": "read_user_users__username__get",
                 "parameters": [
                     {
@@ -76,7 +76,7 @@ openapi_schema = {
                     },
                 },
                 "tags": ["items"],
-                "summary": "Read Items Get",
+                "summary": "Read Items",
                 "operationId": "read_items_items__get",
             }
         },
@@ -100,7 +100,7 @@ openapi_schema = {
                     },
                 },
                 "tags": ["items"],
-                "summary": "Read Item Get",
+                "summary": "Read Item",
                 "operationId": "read_item_items__item_id__get",
                 "parameters": [
                     {
@@ -131,7 +131,7 @@ openapi_schema = {
                     },
                 },
                 "tags": ["custom", "items"],
-                "summary": "Update Item Put",
+                "summary": "Update Item",
                 "operationId": "update_item_items__item_id__put",
                 "parameters": [
                     {
index 4c71d1dcd4be2eadb3736bca8ce95287ae274a46..2ae0714e6e1da41f3136b56e065fc53ffbc0808c 100644 (file)
@@ -27,7 +27,7 @@ openapi_schema = {
                         },
                     },
                 },
-                "summary": "Create Item Post",
+                "summary": "Create Item",
                 "operationId": "create_item_items__post",
                 "requestBody": {
                     "content": {
index e0e6237e76710a8609b2003e39032dcfbb4511b4..b7c06dc708ee1e444ed92d130981939ec9bf1086 100644 (file)
@@ -27,7 +27,7 @@ openapi_schema = {
                         },
                     },
                 },
-                "summary": "Update Item Put",
+                "summary": "Update Item",
                 "operationId": "update_item_items__item_id__put",
                 "parameters": [
                     {
index 15f10653ab381c537e24f3da1a6e337e27008836..c213fab1ca3f606adf40455ae3b9e7d0c6cfa5fa 100644 (file)
@@ -28,7 +28,7 @@ openapi_schema = {
                         },
                     },
                 },
-                "summary": "Update Item Put",
+                "summary": "Update Item",
                 "operationId": "update_item_items__item_id__put",
                 "parameters": [
                     {
index 088ad9bef53854dd355df08840807304cdf24d2e..1cf1b492b6f756f6f4afeaf19a4f8a8213fe0490 100644 (file)
@@ -27,7 +27,7 @@ openapi_schema = {
                         },
                     },
                 },
-                "summary": "Read Items Get",
+                "summary": "Read Items",
                 "operationId": "read_items_items__get",
                 "parameters": [
                     {
index c13602e4acfbea9405c8314246eb4608b9389ca1..3cab97fdfb26f26afc3cc75e3a21379cf5c8dd6f 100644 (file)
@@ -16,7 +16,7 @@ openapi_schema = {
                         "content": {"application/json": {"schema": {}}},
                     }
                 },
-                "summary": "Read Items Get",
+                "summary": "Read Items",
                 "operationId": "read_items_items__get",
             }
         }
index 0d4c2e46d617482936d02ef2a6048f856d64f51a..8558e421387ee464ab1b1c7bae06980dd9da5c14 100644 (file)
@@ -16,7 +16,7 @@ openapi_schema = {
                         "content": {"text/html": {"schema": {"type": "string"}}},
                     }
                 },
-                "summary": "Read Items Get",
+                "summary": "Read Items",
                 "operationId": "read_items_items__get",
             }
         }
index b15ceb90164ab21cf028fc443d75457363fa6e24..9c193cd309bc34b32413ec1b45a1d0eed1a7bd77 100644 (file)
@@ -27,7 +27,7 @@ openapi_schema = {
                         },
                     },
                 },
-                "summary": "Read Items Get",
+                "summary": "Read Items",
                 "operationId": "read_items_items__get",
                 "parameters": [
                     {
@@ -69,7 +69,7 @@ openapi_schema = {
                         },
                     },
                 },
-                "summary": "Read Users Get",
+                "summary": "Read Users",
                 "operationId": "read_users_users__get",
                 "parameters": [
                     {
index b55e780ee1999887a19d1f4a62faff19eefda787..434c0504aede690d718773f7674d6aa193da9fce 100644 (file)
@@ -27,7 +27,7 @@ openapi_schema = {
                         },
                     },
                 },
-                "summary": "Read Items Get",
+                "summary": "Read Items",
                 "operationId": "read_items_items__get",
                 "parameters": [
                     {
index 2fedbc3c3f8d77b5ca83993bd1db1eca87ed5554..32f0b56ce087e7bf5b3f840427e6b8669cc18e73 100644 (file)
@@ -24,7 +24,7 @@ openapi_schema = {
                         },
                     },
                 },
-                "summary": "Read Items Get",
+                "summary": "Read Items",
                 "operationId": "read_items_items__item_id__get",
                 "parameters": [
                     {
index edcf9944cf577e7b1608566ce84c0e77d945077d..49652094444d8a35d729dcb89f42f6c055c14a0d 100644 (file)
@@ -14,7 +14,7 @@ openapi_schema = {
                         "content": {"application/json": {"schema": {}}},
                     }
                 },
-                "summary": "Read Items Get",
+                "summary": "Read Items",
                 "operationId": "read_items_items__get",
             }
         }
index 86000961444f962d9b611759ae26d4c3901b7dd8..8023bbb75a5c20af2427c7fad69db035fbf3f1ec 100644 (file)
@@ -21,7 +21,7 @@ openapi_schema = {
                         "content": {"application/json": {"schema": {}}},
                     }
                 },
-                "summary": "Read Items Get",
+                "summary": "Read Items",
                 "operationId": "read_items_items__get",
             }
         }
index c925a9af65dfeb927196aca1899840da5cf2371e..921b24aadc41abe371e8a130b9136439f8f767d4 100644 (file)
@@ -27,7 +27,7 @@ openapi_schema = {
                         },
                     },
                 },
-                "summary": "Read Items Put",
+                "summary": "Read Items",
                 "operationId": "read_items_items__item_id__put",
                 "parameters": [
                     {
index 76e124cb82e386a05a7b0a6a0f3cd342e386742c..9a1c8a146c043007a552ff311e185314529f348b 100644 (file)
@@ -36,7 +36,7 @@ openapi_schema = {
                         },
                     },
                 },
-                "summary": "Read Item Get",
+                "summary": "Read Item",
                 "operationId": "read_item_items__item_id__get",
                 "parameters": [
                     {
index ac91922918090234cf2f1f98b6a7f61fe4148706..82a609e01e997773c2ec190b2ad4ec7b7c4c2c42 100644 (file)
@@ -24,7 +24,7 @@ openapi_schema = {
                         },
                     }
                 },
-                "summary": "Read Items Get",
+                "summary": "Read Items",
                 "operationId": "read_items_items__get",
             }
         }
index 39f5311c27ea42f0b5de0aa9671cfa96de3cbf36..3f89d90d477c35d34bd1b7948d4c10847be1cdd9 100644 (file)
@@ -17,7 +17,7 @@ openapi_schema = {
                         "content": {"application/json": {"schema": {}}},
                     }
                 },
-                "summary": "Root Get",
+                "summary": "Root",
                 "operationId": "root__get",
             }
         }
index fba16b25a54769c4aa36f80aecab4123e3094178..93cd6c12e81179ead909fad986ffd6afc37c4278 100644 (file)
@@ -26,8 +26,8 @@ openapi_schema = {
                         },
                     },
                 },
-                "summary": "Create Item Get",
-                "operationId": "create_item_items__item_id__get",
+                "summary": "Read Item",
+                "operationId": "read_item_items__item_id__get",
                 "parameters": [
                     {
                         "required": True,
index 7c2534ac1b4d23242544d2b24061f9ebd0d861ad..7d9039e8852890e33cb39af07964ede89c5a4011 100644 (file)
@@ -26,8 +26,8 @@ openapi_schema = {
                         },
                     },
                 },
-                "summary": "Create Item Header Get",
-                "operationId": "create_item_header_items-header__item_id__get",
+                "summary": "Read Item Header",
+                "operationId": "read_item_header_items-header__item_id__get",
                 "parameters": [
                     {
                         "required": True,
index 28cafd63d3931fdb0474a146aef6b716a5660447..811ccb35293d0b8d732ca23b46f5ddb4d4fdac61 100644 (file)
@@ -28,7 +28,7 @@ openapi_schema = {
                         },
                     },
                 },
-                "summary": "Read Items Get",
+                "summary": "Read Items",
                 "operationId": "read_items_items__get",
                 "parameters": [
                     {
index 872fd6b411911e81a427e85aced9ea4458ff6519..574e21b5a2cebc152416c372b522d4a6db947d6b 100644 (file)
@@ -16,7 +16,7 @@ openapi_schema = {
                         "content": {"application/json": {"schema": {}}},
                     }
                 },
-                "summary": "Read Items Get",
+                "summary": "Read Items",
                 "operationId": "some_specific_id_you_define",
             }
         }
index 2ddfcddb4f14fc7c34ec4a2068b65dcf14166d43..dbf1f8d04213fe03a03f1adbd58dcd5bfb5dfca9 100644 (file)
@@ -18,7 +18,7 @@ openapi_schema = {
                     }
                 },
                 "tags": ["items"],
-                "summary": "Read Items Get",
+                "summary": "Read Items",
                 "operationId": "read_items_items__get",
             }
         },
@@ -31,7 +31,7 @@ openapi_schema = {
                     }
                 },
                 "tags": ["users"],
-                "summary": "Read Users Get",
+                "summary": "Read Users",
                 "operationId": "read_users_users__get",
             }
         },
@@ -44,7 +44,7 @@ openapi_schema = {
                     }
                 },
                 "tags": ["items"],
-                "summary": "Read Elements Get",
+                "summary": "Read Elements",
                 "operationId": "read_elements_elements__get",
                 "deprecated": True,
             }
index b20921922509f86ec6168dcfa0b3adebb7216546..16d04afa29f9c6bddb67d78c2e149200aa647845 100644 (file)
@@ -27,7 +27,7 @@ openapi_schema = {
                         },
                     },
                 },
-                "summary": "Read User Item Get",
+                "summary": "Read User Item",
                 "operationId": "read_user_item_items__item_id__get",
                 "parameters": [
                     {
index b29295ef763d0d2b59074d9ad4140c8b185150ab..bbe5afc55073c17f1526d22eddc0dd7a7e32824f 100644 (file)
@@ -27,7 +27,7 @@ openapi_schema = {
                         },
                     },
                 },
-                "summary": "Read User Item Get",
+                "summary": "Read User Item",
                 "operationId": "read_user_item_items__item_id__get",
                 "parameters": [
                     {
index 47c88e523cf71dc5f3ec825871be4c2551e51aa1..875c6efd69cc6322b6966b3c6db94b3c45f44e57 100644 (file)
@@ -27,7 +27,7 @@ openapi_schema = {
                         },
                     },
                 },
-                "summary": "Read Items Get",
+                "summary": "Read Items",
                 "operationId": "read_items_items__get",
                 "parameters": [
                     {
index ff38574bcd7a367c0ed59fda45d32a0bb23e81a4..b75727f0c6238971f07e4b35a4a5c65072e522cc 100644 (file)
@@ -26,7 +26,7 @@ openapi_schema = {
                         },
                     },
                 },
-                "summary": "Read Items Get",
+                "summary": "Read Items",
                 "operationId": "read_items_items__get",
                 "parameters": [
                     {
index 66a2c137399f18b1a2c4d50365484a37a9c4bc22..726691662e09bc2bd352940ee3e8fa39a46836dd 100644 (file)
@@ -28,7 +28,7 @@ openapi_schema = {
                         },
                     },
                 },
-                "summary": "Create File Post",
+                "summary": "Create File",
                 "operationId": "create_file_files__post",
                 "requestBody": {
                     "content": {
@@ -58,7 +58,7 @@ openapi_schema = {
                         },
                     },
                 },
-                "summary": "Create Upload File Post",
+                "summary": "Create Upload File",
                 "operationId": "create_upload_file_uploadfile__post",
                 "requestBody": {
                     "content": {
index bd3bfc3c8b148d08b2cf37754da00d5483acfb7c..fe85628acdd2928716d6e9ab3dec1e0df504ca76 100644 (file)
@@ -27,7 +27,7 @@ openapi_schema = {
                         },
                     },
                 },
-                "summary": "Login Post",
+                "summary": "Login",
                 "operationId": "login_login__post",
                 "requestBody": {
                     "content": {
index d444e0fc007b41fd2fe4f42680d43848908da7e3..eea94593764cccb074918d40c00a9306151a4e86 100644 (file)
@@ -29,7 +29,7 @@ openapi_schema = {
                         },
                     },
                 },
-                "summary": "Create File Post",
+                "summary": "Create File",
                 "operationId": "create_file_files__post",
                 "requestBody": {
                     "content": {
index 52d54f913da4cf97783fa6b1a593f0e264abaf7e..569e96e141155d0ad5f52d1c127da465ffdbb834 100644 (file)
@@ -30,7 +30,7 @@ openapi_schema = {
                         },
                     },
                 },
-                "summary": "Create User Post",
+                "summary": "Create User",
                 "operationId": "create_user_user__post",
                 "requestBody": {
                     "content": {
index d6db2743020f12bdc85c76256b197b9f27bbdaad..ce4890ee48814b08a59958443d5474464418c06b 100644 (file)
@@ -16,7 +16,7 @@ openapi_schema = {
                         "content": {"application/json": {"schema": {}}},
                     }
                 },
-                "summary": "Read Items Get",
+                "summary": "Read Items",
                 "operationId": "read_items_items__get",
                 "security": [{"OAuth2PasswordBearer": []}],
             }
index ddfdf0ee26ff53995c60fc01ea79d6f74d56e26d..2ed226debebc7ceaee438e2ac6855f267e5a5a8f 100644 (file)
@@ -26,7 +26,7 @@ openapi_schema = {
                         },
                     },
                 },
-                "summary": "Login Post",
+                "summary": "Login",
                 "operationId": "login_token_post",
                 "requestBody": {
                     "content": {
@@ -46,7 +46,7 @@ openapi_schema = {
                         "content": {"application/json": {"schema": {}}},
                     }
                 },
-                "summary": "Read Users Me Get",
+                "summary": "Read Users Me",
                 "operationId": "read_users_me_users_me_get",
                 "security": [{"OAuth2PasswordBearer": []}],
             }
index d0f0bdf04496194699904ff6fe68c570d06cf591..75e1b6eb46673d2fb32ef7e0f1cd78cc3cd2b7b6 100644 (file)
@@ -36,13 +36,13 @@ openapi_schema = {
                         },
                     },
                 },
-                "summary": "Route Login Access Token Post",
-                "operationId": "route_login_access_token_token_post",
+                "summary": "Login For Access Token",
+                "operationId": "login_for_access_token_token_post",
                 "requestBody": {
                     "content": {
                         "application/x-www-form-urlencoded": {
                             "schema": {
-                                "$ref": "#/components/schemas/Body_route_login_access_token"
+                                "$ref": "#/components/schemas/Body_login_for_access_token"
                             }
                         }
                     },
@@ -62,7 +62,7 @@ openapi_schema = {
                         },
                     }
                 },
-                "summary": "Read Users Me Get",
+                "summary": "Read Users Me",
                 "operationId": "read_users_me_users_me__get",
                 "security": [{"OAuth2PasswordBearer": ["me"]}],
             }
@@ -75,7 +75,7 @@ openapi_schema = {
                         "content": {"application/json": {"schema": {}}},
                     }
                 },
-                "summary": "Read Own Items Get",
+                "summary": "Read Own Items",
                 "operationId": "read_own_items_users_me_items__get",
                 "security": [{"OAuth2PasswordBearer": ["items", "me"]}],
             }
@@ -83,8 +83,8 @@ openapi_schema = {
     },
     "components": {
         "schemas": {
-            "Body_route_login_access_token": {
-                "title": "Body_route_login_access_token",
+            "Body_login_for_access_token": {
+                "title": "Body_login_for_access_token",
                 "required": ["username", "password"],
                 "type": "object",
                 "properties": {
index 583c233ee733b606d3a2e47755721312a1d45f95..5c3226fe816231cf9684280cd76539a1f220384e 100644 (file)
@@ -26,7 +26,7 @@ openapi_schema = {
                         },
                     },
                 },
-                "summary": "Read User Get",
+                "summary": "Read User",
                 "operationId": "read_user_users__user_id__get",
                 "parameters": [
                     {
index 87b44abbe83c40460000b9bc868ba48e9af1ec2a..3663770fe56ea85376b1441f2dcd02c891560750 100644 (file)
@@ -16,7 +16,7 @@ openapi_schema_main = {
                         "content": {"application/json": {"schema": {}}},
                     }
                 },
-                "summary": "Read Main Get",
+                "summary": "Read Main",
                 "operationId": "read_main_app_get",
             }
         }
@@ -34,7 +34,7 @@ openapi_schema_sub = {
                         "content": {"application/json": {"schema": {}}},
                     }
                 },
-                "summary": "Read Sub Get",
+                "summary": "Read Sub",
                 "operationId": "read_sub_sub_get",
             }
         }
index cdd4bbc730622eab644914ee8273bae736bb1689..9e234d796b245d5022a6c9c209a89918c8370683 100644 (file)
@@ -12,7 +12,7 @@ openapi_schema = {
                         "content": {"application/json": {"schema": {}}},
                     }
                 },
-                "summary": "Read Main Get",
+                "summary": "Read Main",
                 "operationId": "read_main__get",
             }
         }
index a0b8df401f25b24820fe834011c45033363a2338..1414cfddd58d437c008a0cbaef928bbf35266725 100644 (file)
@@ -12,7 +12,7 @@ openapi_schema = {
                         "content": {"application/json": {"schema": {}}},
                     }
                 },
-                "summary": "Read Main Get",
+                "summary": "Read Main",
                 "operationId": "read_main__get",
             }
         }