我正在使用Swagger 2.0開發一個定義/文檔優先API的規範。我已經設法將大多數可重用組件分解爲定義部分,但是我無法弄清楚如何爲常量數組創建可重用定義。在Swagger中創建可重用的數組定義
例如,我將返回圖片的一些路徑,像這樣的:
paths:
/resource/{imageId}:
get:
produces:
- image/jpeg
- image/png
- image/gif
parameters:
- in: path
name: imageId
type: string
required: true
responses:
200:
description: Success
schema:
type: file
這工作得很好,但我希望能夠定義值的可重複使用的陣列爲「生成」元素,以便我可以重複使用相同的列表來生成任何圖像的路徑。
下似乎像是一個直觀的方法,但是招搖報告說,imageMimeTypes的定義是無效的:
paths:
/resource/{imageId}:
get:
produces:
$ref: "#/definitions/imageMimeTypes"
parameters:
- in: path
name: imageId
type: string
required: true
responses:
200:
description: Success
schema:
type: file
definitions:
imageMimeTypes:
- image/jpeg
- image/png
- image/gif
是否有可能創建一個定義一個這樣的數組?如果是這樣,應該使用什麼語法?
謝謝你的回答海倫。它看起來像使用YAML錨將適合我們的目的。 關於指定一個全局'produce'定義,我應該提到我已經指定application/json作爲'produce'的全局值,因爲這是我的API的大部分生成的東西,但是我將會有幾個路徑,就像這個,它會返回圖像。 –
另外,謝謝你指出這些應該用x-型而不是定義來定義。 –