答案 0 :(得分:0)
错误正是它所声明的,"操作不能有多个身体参数"。在您的示例中,错误位于POST /company/fastbill/customers
操作中。
body
参数表示请求正文。因此,如果要POST多个数据对象,则需要将它们组合到单个对象有效内容中。例如:
- name: body
in: body
required: true
schema:
type: object
properties:
customer_details:
$ref: '#/definitions/Customer'
bank_account:
type: object
properties:
sources:
type: array
items:
$ref: '#/definitions/BankAccount'