swag-shop/app/doc/product_swag.py

21 lines
309 B
Python
Raw Normal View History

2024-03-13 13:43:34 +01:00
get_products_swagger = {
2024-03-12 20:12:19 +01:00
"methods": ["GET"],
2024-03-13 13:43:34 +01:00
"tags": ["Products"],
2024-03-12 20:12:19 +01:00
"parameters": [
],
"responses":
{
"200":
{
2024-03-13 13:43:34 +01:00
"description": "Get a page of products",
2024-03-12 20:12:19 +01:00
"schema":
{
"type": "object",
"properties": {
"message": {"type": "string", "example": "Hello, Flask!"}
}
}
}
}
}