PDF ファイルを返す必要がある、swagger REST API に get 呼び出しがあります。構文エラーを発生させずにこれを行う方法に関する明確な例/ドキュメントはありません。
responses:
200:
description: Returns PDF
schema: [application/pdf]
と
responses:
200:
description: Returns PDF
schema:
type: file
と
responses:
200:
description: Returns PDF
schema:
type: [application/pdf]
すべて失敗します。これは可能ですか?