/test:
post:
consumes:
- "application/json"
parameters:
- in: "body"
name: "TestEntity"
schema:
$ref: "#/definitions/TestEntity"
produces:
- "application/json"
responses:
200:
description: "200 response"
schema:
$ref: "#/definitions/TestEntity"
/user/login:
get:
produces:
- "application/json"
parameters:
- name: "username"
in: "query"
default: 'John Smith'
required: true
type: "string"
definitions:
TestEntity:
properties:
address:
type: string
default: '1 street'
required:
- address
字符串
嗨,我已经得到了这个Swagger 2.0配置的路径和TestEntity的定义。
地址/用户名属性的值可以显式硬编码吗?除非使用default选项
我的意思是用户不能指定这个值,它应该由Swagger自己设置。
1条答案
按热度按时间iszxjhcz1#
地址/用户名属性的值可以显式硬编码吗?
不,你不能硬编码swagger中定义的模式的值。你的选择是:
是否可以通过使用默认选项对标头的值进行硬编码?
是的,这样做是可以的。例如,
字符串