Skip to content
Snippets Groups Projects
Commit f5aa68e2 authored by Ján Macháček's avatar Ján Macháček
Browse files

feat: Airplane report

parent b9c054dc
No related branches found
No related tags found
No related merge requests found
......@@ -66,6 +66,36 @@ paths:
description: |
Return the report of airport by its id in the PDF format
operationId: getReportAirportById
parameters:
- name: id
in: path
required: true
schema:
type: integer
format: int64
responses:
'200':
description: A PDF file
content:
application/pdf:
schema:
type: string
format: binary
"404":
description: Not Found
content:
application/json:
schema:
$ref: '../core/openapi.yaml#/components/schemas/ErrorMessage'
/api/reports/airplane/{id}:
get:
tags:
- Report
summary: Get the report of airplane.
description: |
Return the report of airplane by its id in the PDF format
operationId: getReportAirplaneById
parameters:
- name: id
in: path
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment