根据https://swagger.io/docs/specification/describing-responses/,
典型的端点响应规范是:
paths:
/ping:
get:
responses:
'200':
description: OK
content:
text/plain:
schema:
type: string
example: pong
被pong
放入该example
部分。
有什么方法可以在 OpenAPI 规范本身中定义这种固定响应吗?
您可以将您的
string
响应限制为枚举值