Проблема в том, что мне нужна документация, чтобы показать, что можно перенести столбцы полей в виде массива и в него следующие поля (имя, описание, create_at, updated_at, автор).json успешно сгенерирован, но в документации редактора swagger эти поля не видны
/**
* @SWG\Get(path="/articles",
* tags={"Article"},
* summary="Get all Articles",
* description="Show list of Articles",
* operationId="all",
* produces={"application/json"},
* @SWG\Parameter(
* name="columns",
* in="query",
* description="get specific columns",
* required=false,
* type="array",
* collectionFormat="multi",
* @SWG\Items(
* type="string",
* @SWG\Property(property="name", type="string"),
* @SWG\Property(property="description", type="string"),
* @SWG\Property(property="author", type="string"),
* @SWG\Property(property="created_at", type="string"),
* @SWG\Property(property="updated_at)", type="string")
* )
* ),
* @SWG\Response(response="200"),
* @SWG\Response(response=500)
* ),
* )
*/