21 lines
309 B
Python
21 lines
309 B
Python
get_products_swagger = {
|
|
"methods": ["GET"],
|
|
"tags": ["Products"],
|
|
"parameters": [
|
|
|
|
],
|
|
"responses":
|
|
{
|
|
"200":
|
|
{
|
|
"description": "Get a page of products",
|
|
"schema":
|
|
{
|
|
"type": "object",
|
|
"properties": {
|
|
"message": {"type": "string", "example": "Hello, Flask!"}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |