JSON请求正文示例

时间:2018-11-12 16:23:06

标签: swagger swagger-ui swagger-2.0

有什么方法可以在swagger 2.0中设置请求正文的示例吗?

我的方案与https://petstore.swagger.io/

中的相同

我的json参数:

                "parameters": [
                {
                    "in": "body",
                    "name": "body",
                    "description": "Pet object that needs to be added to the store",
                    "required": true,
                    "schema": {
                        "$ref": "#/definitions/Pet"
                    },
                    "x-example":  "x-example": "{\r\n\"id\":123123123123123123,\r\n\"category\":{\r\n\"id\":44,\r\n\"name\":\"A12312312312312AA\"\r\n},\r\n\"name\":\"X123123123123XX\",\r\n\"photoUrls\":[\r\n\"st123123123ring\"\r\n],\r\n\"tags\":[\r\n{\r\n\"id\":0,\r\n\"name\":\"str123123ing\"\r\n}\r\n],\r\n\"status\":\"avai123123lable\"\r\n}""
                }
            ],

我尽一切努力来设置自己的示例。

x-example: 
 default/(application/json): 

,依此类推。没有结果。

0 个答案:

没有答案