swag-shop/app/doc/root_swag.py

18 lines
254 B
Python
Raw Permalink Normal View History

2024-03-13 13:43:34 +01:00
root_swagger = {
2024-03-12 20:12:19 +01:00
"methods": ["GET"],
"responses":
{
"200":
{
"description": "A hello world json",
"schema":
{
"type": "object",
2024-03-13 13:43:34 +01:00
"properties":
{
2024-03-12 20:12:19 +01:00
"message": {"type": "string", "example": "Hello, Flask!"}
}
}
}
}
}