如何在 Swagger 中指定列

How to specify columns in Swagger

如何在 swagger 编辑器中指定 3 列以便输出应如下所示:

a            b            c
x            y            z

swagger: '2.0'
info:
  description: >
    This is a sample server Petstore server.



    [Learn about Swagger](http://swagger.io) or join the IRC channel `#swagger`
    on irc.freenode.net.



    For this sample, you can use the api key `special-key` to test the
    authorization filters

    **Here I want to specify 3 columns** 

这本质上是一道 Markdown 题。要在 Markdown 中制作 table,请使用 this 之类的工具或以下语法:

| One | Two | Three |
|-----|-----|-------|
| a   | b   | c     |