我们的API有这样的端点,通过合并这两组参数,同时支持query
和body
的参数。
例如:
/foo?param1=value1
body: {
param2=value2
}
结果参数集包含两个param1
和param2
。
此端点可用作:
/foo?param1=value1¶m2=value2
OR
/foo
body: {
param1=value1,
param2=value2
}
有没有办法在Swagger中指定这种“二元性”?
UPD
我想我应该将参数定义为:body
和query
in:
- body
- query
答案 0 :(得分:3)
您需要定义查询参数和正文参数,但将所有参数标记为可选。使用操作description
来解释客户端可以在查询字符串或正文中发送参数。
swagger: '2.0'
...
paths:
/foo:
post:
consumes:
- application/json
parameters:
- in: query
name: param1
type: string
required: false
- in: query
name: param2
type: string
required: false
- in: body
name: body
required: false
schema:
type: object
properties:
param1:
type: string
param2:
type: string
使用OpenAPI 3.0,它更加优雅,因为您可以为查询字符串和请求体重用相同的schema
:
openapi: 3.0.0
...
paths:
/foo:
post:
parameters:
# This expands into ?param1=value1¶m2=value2&...
- in: query
name: parameters
required: false
schema:
$ref: '#/components/schemas/Parameters'
style: form
explode: true
requestBody:
required: false
content:
application/json:
schema:
$ref: '#/components/schemas/Parameters'
responses:
'200':
description: OK
components:
schemas:
Parameters:
type: object
properties:
param1:
type: string
param2:
type: string
对于Swagger UI用户的注意事项:从UI v.3.11.0开始,似乎不支持将对象序列化为查询字符串。