14
我在需要返回pdf文件的Swagger REST API中有一個get call。沒有清楚的示例/文檔說明如何在不引起語法錯誤的情況下執行此操作。如何指定pdf在swagger中返回?
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]
全部失敗。這甚至有可能嗎?