0
0
FastAPIframework~10 mins

OpenAPI schema customization in FastAPI - Step-by-Step Execution

Choose your learning style9 modes available
Concept Flow - OpenAPI schema customization
Start FastAPI app
Define API endpoints
Customize OpenAPI schema function
Assign custom schema to app.openapi
Run app and access /openapi.json
See customized schema output
This flow shows how FastAPI lets you replace the default OpenAPI schema with your own custom version.
Execution Sample
FastAPI
from fastapi import FastAPI
app = FastAPI()

@app.get("/items")
async def read_items():
    return [{"item_id": "foo"}]

# Custom OpenAPI schema
original_openapi = app.openapi

def custom_openapi():
    if app.openapi_schema:
        return app.openapi_schema
    openapi_schema = original_openapi()
    openapi_schema["info"]["title"] = "Custom API"
    app.openapi_schema = openapi_schema
    return app.openapi_schema

app.openapi = custom_openapi
This code creates a FastAPI app with one endpoint and replaces the OpenAPI schema to change the API title.
Execution Table
StepActionFunction CalledSchema StateOutput
1Start appFastAPI()NoneApp instance created
2Define /items endpoint@app.getNoneEndpoint registered
3Save original openapiapp.openapiNoneOriginal schema function saved
4Define custom_openapicustom_openapi()NoneFunction ready to override
5Assign custom_openapiapp.openapi = custom_openapiNoneOverride set
6Call app.openapi()custom_openapi()NoneCalls original_openapi()
7Generate default schemaoriginal_openapi()NoneDefault schema dict created
8Modify schema titlecustom_openapi()Default schemaTitle changed to 'Custom API'
9Cache schemacustom_openapi()Modified schemaSchema cached in app.openapi_schema
10Return schemacustom_openapi()Modified schemaCustom schema returned
11Subsequent callscustom_openapi()Cached schemaCached schema returned
12Access /openapi.jsonFastAPI internalCached schemaCustom schema JSON served
💡 Custom schema cached and served instead of default after first call
Variable Tracker
VariableStartAfter Step 6After Step 8After Step 9Final
app.openapi_schemaNoneNoneNoneModified schema dictModified schema dict
original_openapiFunctionFunctionFunctionFunctionFunction
openapi_schemaNoneDefault schema dictModified schema dictModified schema dictModified schema dict
Key Moments - 3 Insights
Why does the custom_openapi function check if app.openapi_schema exists before generating the schema?
To avoid regenerating the schema multiple times, it returns the cached schema if available, as shown in step 6 and 11 of the execution_table.
How does assigning app.openapi = custom_openapi change the behavior of the FastAPI app?
It replaces the default schema generator with the custom function, so when the schema is requested (step 6), the custom logic runs instead of the default.
What happens if you don't cache the modified schema in app.openapi_schema?
The schema would be regenerated on every request, causing unnecessary computation and possibly inconsistent results, unlike the caching shown in step 9.
Visual Quiz - 3 Questions
Test your understanding
Look at the execution_table at step 8, what change is made to the schema?
AThe API title is changed to 'Custom API'
BThe endpoint path is removed
CThe schema is deleted
DThe schema version is changed
💡 Hint
Check the 'Schema State' and 'Output' columns at step 8 in the execution_table
At which step does the custom schema get cached to avoid regeneration?
AStep 6
BStep 9
CStep 3
DStep 11
💡 Hint
Look for when app.openapi_schema is assigned in the execution_table
If you remove the line 'app.openapi = custom_openapi', what happens when accessing /openapi.json?
AAn error occurs
BNo schema is served
CThe default schema is served
DThe custom schema is still served
💡 Hint
Refer to step 5 where the override is assigned and what happens if it is missing
Concept Snapshot
FastAPI lets you replace the default OpenAPI schema by assigning a custom function to app.openapi.
This function can call the original schema generator, modify the schema dict, and cache it.
The custom schema is then served at /openapi.json instead of the default.
Caching the schema avoids repeated computation.
This is useful to change titles, descriptions, or add metadata.
Full Transcript
This visual execution trace shows how to customize the OpenAPI schema in FastAPI. First, you create a FastAPI app and define endpoints. Then you save the original openapi function. Next, you define a custom function that calls the original, modifies the schema (like changing the title), caches it, and returns it. You assign this custom function to app.openapi. When the app runs and the schema is requested, the custom function runs, returning the modified schema. The schema is cached to avoid regenerating it on every request. This process lets you change how the API schema looks without changing endpoint code.