0
我定義了一個將MyObject作爲參數的路徑。 MyObject具有貓和狗的屬性。這些都有默認值。 在swagger編輯器中,示例不顯示默認值,但嘗試使用正確的默認值創建MyObject。swagger-ui中可以作爲參數傳遞的swagger對象是否有默認值?
在swagger-ui中,我可以在Models下看到默認值,但在API中看不到。有沒有辦法設置這些默認設置? 招搖: '2.0' 信息: 標題:使用默認屬性作爲參數 描述通對象:等 版本: 「草稿0.1.1」 宿主:example.com 基本路徑:/ 生產: - 應用/ JSON
paths:
/myobject:
post:
summary: |
post an object.
parameters:
- name: myObject
in: body
required: true
schema:
type: array
items:
$ref: '#/definitions/MyObject'
responses:
200:
description: OK
definitions:
MyObject: # move to/models/model.yml
type: object
description: Contains default properties
required:
- cats
- dogs
properties:
cats:
type: number
default: 9
dogs:
type: string
default: "fido"