swagger spec response множественный массив

Мой swagger.yaml здесь

  responses:
    200:
      description: An array of Students
      schema:
        type: array
        items:
          $ref: '#/definitions/Students'
definitions:
  Students:
    type: array
    items:
      $ref: '#/definitions/Student'
  Student:
    properties:
      name:
        type: string

но результат

это изображение

я хочу измениться так

{
  "Students":
  [
     [1, 2, "tom", true]
  ],
  "OtherOne":[true, 1, "test"]
}

спасибо, что прочитали @__@

0 ответов

Другие вопросы по тегам