如何修复ErrorException:当@OA \ Property()类型为“数组”时,需要@OA \ Items()?

时间:2018-12-27 15:03:54

标签: php openapi swagger-php

我尝试添加任意类型的嵌套数组。 这些是我的注释:

* @OA\Property(
*      @OA\Schema(
*          type="array",
*          @OA\Items(
*              type="array",
*              @OA\Items(type={})
*          )
*      ),
*      description="bla bla bla"
* )

1 个答案:

答案 0 :(得分:4)

我找到了解决方法:

 * @OA\Property(
 *      type="array",
 *      @OA\Items(
 *          type="array",
 *          @OA\Items()
 *      ),
 *      description="bla bla bla"
 * )

问题是@OA \ Schema