Coverage for docs_src / extending_openapi / tutorial001_py310.py: 100%

14 statements  

« prev     ^ index     » next       coverage.py v7.13.3, created at 2026-02-12 18:15 +0000

1from fastapi import FastAPI 1abcd

2from fastapi.openapi.utils import get_openapi 1abcd

3 

4app = FastAPI() 1abcd

5 

6 

7@app.get("/items/") 1abcd

8async def read_items(): 1abcd

9 return [{"name": "Foo"}] 1hij

10 

11 

12def custom_openapi(): 1abcd

13 if app.openapi_schema: 1efg

14 return app.openapi_schema 1efg

15 openapi_schema = get_openapi( 1efg

16 title="Custom title", 

17 version="2.5.0", 

18 summary="This is a very custom OpenAPI schema", 

19 description="Here's a longer description of the custom **OpenAPI** schema", 

20 routes=app.routes, 

21 ) 

22 openapi_schema["info"]["x-logo"] = { 1efg

23 "url": "https://fastapi.tiangolo.com/img/logo-margin/logo-teal.png" 

24 } 

25 app.openapi_schema = openapi_schema 1efg

26 return app.openapi_schema 1efg

27 

28 

29app.openapi = custom_openapi 1abcd