我有一个像这样的招摇片段
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)?我无法在互联网上找到任何解决方案。
更新
我不是在开发一个程序,我只想删除方便的工作并将一种文本样式转换为另一种样式的文本。