Swagger 2.0 Сделать группу собственности - PullRequest
0 голосов
/ 28 сентября 2018

Я хотел бы создать общую группу свойств и использовать ее, когда этого требует #ref (put / post) и любой другой метод.Swagger 2.0

POST METHOD
 @SWG\Property(property="name",        type="string", description="group name"),
 *  @SWG\Property(property="type",        type="string", description="group type"),
 *  @SWG\Property(property="status",      type="integer",description="status active or inactive"),
 *  @SWG\Property(property="description", type="string", description="name"),
 *  @SWG\Property(property="created_by",  type="string", description="group created by"),
 *  @SWG\Property(property="updated_by",  type="string", description="group updated by"),
PUT METHOD
 @SWG\Property(property="name",        type="string", description="group name"),
 *  @SWG\Property(property="type",        type="string", description="group type"),
 *  @SWG\Property(property="status",      type="integer",description="status active or inactive"),
 *  @SWG\Property(property="description", type="string", description="name"),
 *  @SWG\Property(property="updated_by",  type="string", description="group updated by"),

Здесь я не хочу использовать определение ...

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...