位置响应 header 中的参考服务器 URL
Reference server URL in Location response header
在服务器object中我定义了一个URL:
servers:
- url: https://localhost:8088/abc
并且在响应定义中我想引用此服务器 URL:
/test-sub-url:
post:
requestBody:
required: true
content:
application/json:
schema:
type: object
properties:
id:
description: Some ID
type: string
responses:
'201':
description: Created
headers:
Location:
required: true
schema:
type: string
format: url
example: $reference server URL here$
是否可以从位置响应 header 的示例中引用服务器 URL?
example
关键字需要文字示例值,所以不可以,您不能在那里引用其他关键字。
在服务器object中我定义了一个URL:
servers:
- url: https://localhost:8088/abc
并且在响应定义中我想引用此服务器 URL:
/test-sub-url:
post:
requestBody:
required: true
content:
application/json:
schema:
type: object
properties:
id:
description: Some ID
type: string
responses:
'201':
description: Created
headers:
Location:
required: true
schema:
type: string
format: url
example: $reference server URL here$
是否可以从位置响应 header 的示例中引用服务器 URL?
example
关键字需要文字示例值,所以不可以,您不能在那里引用其他关键字。