@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}
```
@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}
```
@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]}
@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,
@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")
@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")
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:
},
},
},
- "summary": "Foo Post",
+ "summary": "Foo",
"operationId": "foo_foo_post",
"requestBody": {
"content": {
"content": {"application/json": {"schema": {}}},
}
},
- "summary": "Read Item Get",
+ "summary": "Read Item",
"operationId": "read_item_items__get",
}
}
"content": {"application/json": {"schema": {}}},
},
},
- "summary": "A Get",
+ "summary": "A",
"operationId": "a_a_get",
}
},
"content": {"application/json": {"schema": {}}},
},
},
- "summary": "B Get",
+ "summary": "B",
"operationId": "b_b_get",
}
},
"content": {"application/json": {"schema": {}}},
},
},
- "summary": "C Get",
+ "summary": "C",
"operationId": "c_c_get",
}
},
"content": {"application/json": {"schema": {}}},
}
},
- "summary": "Non Operation Get",
+ "summary": "Non Operation",
"operationId": "non_operation_api_route_get",
}
},
"content": {"application/json": {"schema": {}}},
}
},
- "summary": "Non Decorated Route Get",
+ "summary": "Non Decorated Route",
"operationId": "non_decorated_route_non_decorated_route_get",
}
},
"content": {"application/json": {"schema": {}}},
}
},
- "summary": "Get Text Get",
+ "summary": "Get Text",
"operationId": "get_text_text_get",
}
},
},
},
},
- "summary": "Get Id Get",
+ "summary": "Get Id",
"operationId": "get_id_path__item_id__get",
"parameters": [
{
},
},
},
- "summary": "Get Str Id Get",
+ "summary": "Get Str Id",
"operationId": "get_str_id_path_str__item_id__get",
"parameters": [
{
},
},
},
- "summary": "Get Int Id Get",
+ "summary": "Get Int Id",
"operationId": "get_int_id_path_int__item_id__get",
"parameters": [
{
},
},
},
- "summary": "Get Float Id Get",
+ "summary": "Get Float Id",
"operationId": "get_float_id_path_float__item_id__get",
"parameters": [
{
},
},
},
- "summary": "Get Bool Id Get",
+ "summary": "Get Bool Id",
"operationId": "get_bool_id_path_bool__item_id__get",
"parameters": [
{
},
},
},
- "summary": "Get Path Param Id Get",
+ "summary": "Get Path Param Id",
"operationId": "get_path_param_id_path_param__item_id__get",
"parameters": [
{
},
},
},
- "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": [
{
},
},
},
- "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": [
{
},
},
},
- "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": [
{
},
},
},
- "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": [
{
},
},
},
- "summary": "Get Path Param Gt Get",
+ "summary": "Get Path Param Gt",
"operationId": "get_path_param_gt_path_param-gt__item_id__get",
"parameters": [
{
},
},
},
- "summary": "Get Path Param Gt0 Get",
+ "summary": "Get Path Param Gt0",
"operationId": "get_path_param_gt0_path_param-gt0__item_id__get",
"parameters": [
{
},
},
},
- "summary": "Get Path Param Ge Get",
+ "summary": "Get Path Param Ge",
"operationId": "get_path_param_ge_path_param-ge__item_id__get",
"parameters": [
{
},
},
},
- "summary": "Get Path Param Lt Get",
+ "summary": "Get Path Param Lt",
"operationId": "get_path_param_lt_path_param-lt__item_id__get",
"parameters": [
{
},
},
},
- "summary": "Get Path Param Lt0 Get",
+ "summary": "Get Path Param Lt0",
"operationId": "get_path_param_lt0_path_param-lt0__item_id__get",
"parameters": [
{
},
},
},
- "summary": "Get Path Param Le Get",
+ "summary": "Get Path Param Le",
"operationId": "get_path_param_le_path_param-le__item_id__get",
"parameters": [
{
},
},
},
- "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": [
{
},
},
},
- "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": [
{
},
},
},
- "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": [
{
},
},
},
- "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": [
{
},
},
},
- "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": [
{
},
},
},
- "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": [
{
},
},
},
- "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": [
{
},
},
},
- "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": [
{
},
},
},
- "summary": "Get Query Get",
+ "summary": "Get Query",
"operationId": "get_query_query_get",
"parameters": [
{
},
},
},
- "summary": "Get Query Optional Get",
+ "summary": "Get Query Optional",
"operationId": "get_query_optional_query_optional_get",
"parameters": [
{
},
},
},
- "summary": "Get Query Type Get",
+ "summary": "Get Query Type",
"operationId": "get_query_type_query_int_get",
"parameters": [
{
},
},
},
- "summary": "Get Query Type Optional Get",
+ "summary": "Get Query Type Optional",
"operationId": "get_query_type_optional_query_int_optional_get",
"parameters": [
{
},
},
},
- "summary": "Get Query Type Optional Get",
+ "summary": "Get Query Type Optional",
"operationId": "get_query_type_optional_query_int_default_get",
"parameters": [
{
},
},
},
- "summary": "Get Query Param Get",
+ "summary": "Get Query Param",
"operationId": "get_query_param_query_param_get",
"parameters": [
{
},
},
},
- "summary": "Get Query Param Required Get",
+ "summary": "Get Query Param Required",
"operationId": "get_query_param_required_query_param-required_get",
"parameters": [
{
},
},
},
- "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": [
{
},
},
},
- "summary": "Get Items Get",
+ "summary": "Get Items",
"operationId": "get_items_items__item_id__get",
"parameters": [
{
},
},
},
- "summary": "Delete Item Delete",
+ "summary": "Delete Item",
"operationId": "delete_item_items__item_id__delete",
"parameters": [
{
},
},
},
- "summary": "Options Item Options",
+ "summary": "Options Item",
"operationId": "options_item_items__item_id__options",
"parameters": [
{
},
},
},
- "summary": "Head Item Head",
+ "summary": "Head Item",
"operationId": "head_item_items__item_id__head",
"parameters": [
{
},
},
},
- "summary": "Patch Item Patch",
+ "summary": "Patch Item",
"operationId": "patch_item_items__item_id__patch",
"parameters": [
{
},
},
},
- "summary": "Trace Item Trace",
+ "summary": "Trace Item",
"operationId": "trace_item_items__item_id__trace",
"parameters": [
{
},
},
},
- "summary": "Get Not Decorated Get",
+ "summary": "Get Not Decorated",
"operationId": "get_not_decorated_items-not-decorated__item_id__get",
"parameters": [
{
},
},
},
- "summary": "Save Item No Body Post",
+ "summary": "Save Item No Body",
"operationId": "save_item_no_body_items__post",
"requestBody": {
"content": {
},
},
},
- "summary": "Read Items Get",
+ "summary": "Read Items",
"operationId": "read_items_items__get",
"parameters": [
{
},
},
},
- "summary": "Save Item No Body Put",
+ "summary": "Save Item No Body",
"operationId": "save_item_no_body_items__item_id__put",
"parameters": [
{
"content": {"application/json": {"schema": {}}},
}
},
- "summary": "Read Current User Get",
+ "summary": "Read Current User",
"operationId": "read_current_user_users_me_get",
"security": [{"APIKeyCookie": []}],
}
"content": {"application/json": {"schema": {}}},
}
},
- "summary": "Read Current User Get",
+ "summary": "Read Current User",
"operationId": "read_current_user_users_me_get",
"security": [{"APIKeyCookie": []}],
}
"content": {"application/json": {"schema": {}}},
}
},
- "summary": "Read Current User Get",
+ "summary": "Read Current User",
"operationId": "read_current_user_users_me_get",
"security": [{"APIKeyHeader": []}],
}
"content": {"application/json": {"schema": {}}},
}
},
- "summary": "Read Current User Get",
+ "summary": "Read Current User",
"operationId": "read_current_user_users_me_get",
"security": [{"APIKeyHeader": []}],
}
"content": {"application/json": {"schema": {}}},
}
},
- "summary": "Read Current User Get",
+ "summary": "Read Current User",
"operationId": "read_current_user_users_me_get",
"security": [{"APIKeyQuery": []}],
}
"content": {"application/json": {"schema": {}}},
}
},
- "summary": "Read Current User Get",
+ "summary": "Read Current User",
"operationId": "read_current_user_users_me_get",
"security": [{"APIKeyQuery": []}],
}
"content": {"application/json": {"schema": {}}},
}
},
- "summary": "Read Current User Get",
+ "summary": "Read Current User",
"operationId": "read_current_user_users_me_get",
"security": [{"HTTPBase": []}],
}
"content": {"application/json": {"schema": {}}},
}
},
- "summary": "Read Current User Get",
+ "summary": "Read Current User",
"operationId": "read_current_user_users_me_get",
"security": [{"HTTPBase": []}],
}
"content": {"application/json": {"schema": {}}},
}
},
- "summary": "Read Current User Get",
+ "summary": "Read Current User",
"operationId": "read_current_user_users_me_get",
"security": [{"HTTPBasic": []}],
}
"content": {"application/json": {"schema": {}}},
}
},
- "summary": "Read Current User Get",
+ "summary": "Read Current User",
"operationId": "read_current_user_users_me_get",
"security": [{"HTTPBasic": []}],
}
"content": {"application/json": {"schema": {}}},
}
},
- "summary": "Read Current User Get",
+ "summary": "Read Current User",
"operationId": "read_current_user_users_me_get",
"security": [{"HTTPBearer": []}],
}
"content": {"application/json": {"schema": {}}},
}
},
- "summary": "Read Current User Get",
+ "summary": "Read Current User",
"operationId": "read_current_user_users_me_get",
"security": [{"HTTPBearer": []}],
}
"content": {"application/json": {"schema": {}}},
}
},
- "summary": "Read Current User Get",
+ "summary": "Read Current User",
"operationId": "read_current_user_users_me_get",
"security": [{"HTTPDigest": []}],
}
"content": {"application/json": {"schema": {}}},
}
},
- "summary": "Read Current User Get",
+ "summary": "Read Current User",
"operationId": "read_current_user_users_me_get",
"security": [{"HTTPDigest": []}],
}
},
},
},
- "summary": "Read Current User Post",
+ "summary": "Read Current User",
"operationId": "read_current_user_login_post",
"requestBody": {
"content": {
"content": {"application/json": {"schema": {}}},
}
},
- "summary": "Read Current User Get",
+ "summary": "Read Current User",
"operationId": "read_current_user_users_me_get",
"security": [{"OAuth2": []}],
}
},
},
},
- "summary": "Read Current User Post",
+ "summary": "Read Current User",
"operationId": "read_current_user_login_post",
"requestBody": {
"content": {
"content": {"application/json": {"schema": {}}},
}
},
- "summary": "Read Current User Get",
+ "summary": "Read Current User",
"operationId": "read_current_user_users_me_get",
"security": [{"OAuth2": []}],
}
"content": {"application/json": {"schema": {}}},
}
},
- "summary": "Read Items Get",
+ "summary": "Read Items",
"operationId": "read_items_items__get",
"security": [{"OAuth2PasswordBearer": []}],
}
"content": {"application/json": {"schema": {}}},
}
},
- "summary": "Read Current User Get",
+ "summary": "Read Current User",
"operationId": "read_current_user_users_me_get",
"security": [{"OpenIdConnect": []}],
}
"content": {"application/json": {"schema": {}}},
}
},
- "summary": "Read Current User Get",
+ "summary": "Read Current User",
"operationId": "read_current_user_users_me_get",
"security": [{"OpenIdConnect": []}],
}
},
},
},
- "summary": "Create Item Get",
+ "summary": "Create Item",
"operationId": "create_item_items__item_id__get",
"parameters": [
{
},
},
},
- "summary": "Create Item Get",
+ "summary": "Create Item",
"operationId": "create_item_starlette-items__item_id__get",
"parameters": [
{
},
},
},
- "summary": "Read Item Get",
+ "summary": "Read Item",
"operationId": "read_item_items__item_id__get",
"parameters": [
{
},
},
},
- "summary": "Read Item Get",
+ "summary": "Read Item",
"operationId": "read_item_items__item_id__get",
"parameters": [
{
},
},
},
- "summary": "Read Item Get",
+ "summary": "Read Item",
"operationId": "read_item_items__item_id__get",
"parameters": [
{
},
},
},
- "summary": "Read Item Get",
+ "summary": "Read Item",
"operationId": "read_item_items__item_id__get",
"parameters": [
{
"content": {"application/json": {"schema": {}}},
}
},
- "summary": "Read Items Get",
+ "summary": "Read Items",
"operationId": "read_items_items__get",
}
}
},
}
},
- "summary": "Read Notes Get",
+ "summary": "Read Notes",
"operationId": "read_notes_notes__get",
},
"post": {
},
},
},
- "summary": "Create Note Post",
+ "summary": "Create Note",
"operationId": "create_note_notes__post",
"requestBody": {
"content": {
}
},
"tags": ["users"],
- "summary": "Read Users Get",
+ "summary": "Read Users",
"operationId": "read_users_users__get",
}
},
}
},
"tags": ["users"],
- "summary": "Read User Me Get",
+ "summary": "Read User Me",
"operationId": "read_user_me_users_me_get",
}
},
},
},
"tags": ["users"],
- "summary": "Read User Get",
+ "summary": "Read User",
"operationId": "read_user_users__username__get",
"parameters": [
{
},
},
"tags": ["items"],
- "summary": "Read Items Get",
+ "summary": "Read Items",
"operationId": "read_items_items__get",
}
},
},
},
"tags": ["items"],
- "summary": "Read Item Get",
+ "summary": "Read Item",
"operationId": "read_item_items__item_id__get",
"parameters": [
{
},
},
"tags": ["custom", "items"],
- "summary": "Update Item Put",
+ "summary": "Update Item",
"operationId": "update_item_items__item_id__put",
"parameters": [
{
},
},
},
- "summary": "Create Item Post",
+ "summary": "Create Item",
"operationId": "create_item_items__post",
"requestBody": {
"content": {
},
},
},
- "summary": "Update Item Put",
+ "summary": "Update Item",
"operationId": "update_item_items__item_id__put",
"parameters": [
{
},
},
},
- "summary": "Update Item Put",
+ "summary": "Update Item",
"operationId": "update_item_items__item_id__put",
"parameters": [
{
},
},
},
- "summary": "Read Items Get",
+ "summary": "Read Items",
"operationId": "read_items_items__get",
"parameters": [
{
"content": {"application/json": {"schema": {}}},
}
},
- "summary": "Read Items Get",
+ "summary": "Read Items",
"operationId": "read_items_items__get",
}
}
"content": {"text/html": {"schema": {"type": "string"}}},
}
},
- "summary": "Read Items Get",
+ "summary": "Read Items",
"operationId": "read_items_items__get",
}
}
},
},
},
- "summary": "Read Items Get",
+ "summary": "Read Items",
"operationId": "read_items_items__get",
"parameters": [
{
},
},
},
- "summary": "Read Users Get",
+ "summary": "Read Users",
"operationId": "read_users_users__get",
"parameters": [
{
},
},
},
- "summary": "Read Items Get",
+ "summary": "Read Items",
"operationId": "read_items_items__get",
"parameters": [
{
},
},
},
- "summary": "Read Items Get",
+ "summary": "Read Items",
"operationId": "read_items_items__item_id__get",
"parameters": [
{
"content": {"application/json": {"schema": {}}},
}
},
- "summary": "Read Items Get",
+ "summary": "Read Items",
"operationId": "read_items_items__get",
}
}
"content": {"application/json": {"schema": {}}},
}
},
- "summary": "Read Items Get",
+ "summary": "Read Items",
"operationId": "read_items_items__get",
}
}
},
},
},
- "summary": "Read Items Put",
+ "summary": "Read Items",
"operationId": "read_items_items__item_id__put",
"parameters": [
{
},
},
},
- "summary": "Read Item Get",
+ "summary": "Read Item",
"operationId": "read_item_items__item_id__get",
"parameters": [
{
},
}
},
- "summary": "Read Items Get",
+ "summary": "Read Items",
"operationId": "read_items_items__get",
}
}
"content": {"application/json": {"schema": {}}},
}
},
- "summary": "Root Get",
+ "summary": "Root",
"operationId": "root__get",
}
}
},
},
},
- "summary": "Create Item Get",
- "operationId": "create_item_items__item_id__get",
+ "summary": "Read Item",
+ "operationId": "read_item_items__item_id__get",
"parameters": [
{
"required": True,
},
},
},
- "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,
},
},
},
- "summary": "Read Items Get",
+ "summary": "Read Items",
"operationId": "read_items_items__get",
"parameters": [
{
"content": {"application/json": {"schema": {}}},
}
},
- "summary": "Read Items Get",
+ "summary": "Read Items",
"operationId": "some_specific_id_you_define",
}
}
}
},
"tags": ["items"],
- "summary": "Read Items Get",
+ "summary": "Read Items",
"operationId": "read_items_items__get",
}
},
}
},
"tags": ["users"],
- "summary": "Read Users Get",
+ "summary": "Read Users",
"operationId": "read_users_users__get",
}
},
}
},
"tags": ["items"],
- "summary": "Read Elements Get",
+ "summary": "Read Elements",
"operationId": "read_elements_elements__get",
"deprecated": True,
}
},
},
},
- "summary": "Read User Item Get",
+ "summary": "Read User Item",
"operationId": "read_user_item_items__item_id__get",
"parameters": [
{
},
},
},
- "summary": "Read User Item Get",
+ "summary": "Read User Item",
"operationId": "read_user_item_items__item_id__get",
"parameters": [
{
},
},
},
- "summary": "Read Items Get",
+ "summary": "Read Items",
"operationId": "read_items_items__get",
"parameters": [
{
},
},
},
- "summary": "Read Items Get",
+ "summary": "Read Items",
"operationId": "read_items_items__get",
"parameters": [
{
},
},
},
- "summary": "Create File Post",
+ "summary": "Create File",
"operationId": "create_file_files__post",
"requestBody": {
"content": {
},
},
},
- "summary": "Create Upload File Post",
+ "summary": "Create Upload File",
"operationId": "create_upload_file_uploadfile__post",
"requestBody": {
"content": {
},
},
},
- "summary": "Login Post",
+ "summary": "Login",
"operationId": "login_login__post",
"requestBody": {
"content": {
},
},
},
- "summary": "Create File Post",
+ "summary": "Create File",
"operationId": "create_file_files__post",
"requestBody": {
"content": {
},
},
},
- "summary": "Create User Post",
+ "summary": "Create User",
"operationId": "create_user_user__post",
"requestBody": {
"content": {
"content": {"application/json": {"schema": {}}},
}
},
- "summary": "Read Items Get",
+ "summary": "Read Items",
"operationId": "read_items_items__get",
"security": [{"OAuth2PasswordBearer": []}],
}
},
},
},
- "summary": "Login Post",
+ "summary": "Login",
"operationId": "login_token_post",
"requestBody": {
"content": {
"content": {"application/json": {"schema": {}}},
}
},
- "summary": "Read Users Me Get",
+ "summary": "Read Users Me",
"operationId": "read_users_me_users_me_get",
"security": [{"OAuth2PasswordBearer": []}],
}
},
},
},
- "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"
}
}
},
},
}
},
- "summary": "Read Users Me Get",
+ "summary": "Read Users Me",
"operationId": "read_users_me_users_me__get",
"security": [{"OAuth2PasswordBearer": ["me"]}],
}
"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"]}],
}
},
"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": {
},
},
},
- "summary": "Read User Get",
+ "summary": "Read User",
"operationId": "read_user_users__user_id__get",
"parameters": [
{
"content": {"application/json": {"schema": {}}},
}
},
- "summary": "Read Main Get",
+ "summary": "Read Main",
"operationId": "read_main_app_get",
}
}
"content": {"application/json": {"schema": {}}},
}
},
- "summary": "Read Sub Get",
+ "summary": "Read Sub",
"operationId": "read_sub_sub_get",
}
}
"content": {"application/json": {"schema": {}}},
}
},
- "summary": "Read Main Get",
+ "summary": "Read Main",
"operationId": "read_main__get",
}
}
"content": {"application/json": {"schema": {}}},
}
},
- "summary": "Read Main Get",
+ "summary": "Read Main",
"operationId": "read_main__get",
}
}