在Swagger OpenAPI批注中定义数组

时间:2019-08-05 12:14:36

标签: openapi swagger-php

我将Swagger Editor与OpenAPI 3.0结合使用,并安装了swagger-php库。现在,我有了一个带有数组参数之一的php函数,例如:

array[(1,2),(2,3),(6,9)]

如何编写此数组的注释才能调用此函数。

1 个答案:

答案 0 :(得分:0)

有不同的解决方案。我建议使用文档中的对象数组来实现它。

arrayOfObjects
    description: 'basic array of objects in OpenAPI'
    type: array
    items:
      type: object
      properties:
        num:
          type: integer

更多信息,请点击此处:

Data Types - Arrays