如何在swagger中声明具有未命名基元的对象?

时间:2016-03-05 02:52:43

标签: swagger swagger-2.0

我需要在swagger-2.0中表示以下数组,但我不确定如何做,因为我无法弄清楚如何声明'未命名'属性。

例如,这是我需要定义的内容:

coords:[     [       37.782984,       -122.420973     ]     [       37.772309,       -122.418555     ] ... ]

如何在swagger中定义这些数组条目?

1 个答案:

答案 0 :(得分:2)

如果您将其建模为包含两个项目的数组数组,则它应如下所示:

parameters:
  - name: coords
    in: body
    schema:
      type: array
      items:
        type: array
        items:
          type: number
        maxItems: 2
        minItems: 2