Как указать столбцы в Swagger

Как указать 3 столбца в редакторе swagger, чтобы вывод выглядел так:

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** 


person Roshan Mehta    schedule 09.09.2015    source источник


Ответы (1)


По сути, это вопрос Markdown. Чтобы создать таблицу в Markdown, используйте инструмент наподобие этот или следующий синтаксис:

| One | Two | Three |
|-----|-----|-------|
| a   | b   | c     |
person Mohsen    schedule 15.09.2015