edit request, skills list, position list

This commit is contained in:
2023-04-13 01:09:35 +03:00
parent 8bc601aa6a
commit 7f46dc1346
6 changed files with 247 additions and 11 deletions

View File

@ -18,6 +18,23 @@ namespace frontend\modules\api\models;
* description="Название позиции"
* ),
*)
*
* @OA\Schema(
* schema="PositionsExample",
* type="array",
* example={{"id": 1, "name": "Back end - разработчик"}, {"id": 2, "name": "Front end - разработчик"}},
* @OA\Items(
* type="object",
* @OA\Property(
* property="id",
* type="integer",
* ),
* @OA\Property(
* property="name",
* type="string",
* ),
* ),
*)
*/
class Position extends \common\models\Position
{