poc-mvc-ocr/app/docs/invoice_docs.py
2025-03-05 21:35:50 -04:00

15 lines
346 B
Python

invoice_get_doc = {
"tags": ["Invoices"],
"summary": "Lista todas as faturas",
"responses": {
"200": {
"description": "Lista de faturas",
"examples": {
"application/json": [
{"id": 1, "amount": 100.50, "user_id": 1}
]
}
}
}
}