格式招摇文档文本样式解决方案

时间:2017-11-13 13:25:14

标签: swagger

我有一个像这样的招摇片段

responses: { '200': { description: 'Agent data', schema: { type: object, properties: { agentRecord: { type: object, properties: { username: { type: string }, vpnname: { type: string }, google_id: { type: string } } }, googleRecord: { type: object }, agentACLs: { type: object } } } }, default: { description: 'Unexpected error', schema: { $ref: '#/definitions/Error' } } }

但我希望它像

    "responses": {
      "200": {
        "description": "Successful response",
        "schema": {
          "$ref": "#/definitions/Success"
        }
      }, 

如何将文字样式从(1)转换为(2)?我无法在互联网上找到任何解决方案。

更新

我不是在开发一个程序,我只想删除方便的工作并将一种文本样式转换为另一种样式的文本。

1 个答案:

答案 0 :(得分:0)

将您的YAML粘贴到http://editor.swagger.io,然后选择菜单项编辑>转换为YAML 。这将打印你的YAML。