当前位置:  开发笔记 > 编程语言 > 正文

Swagger PHP:如何声明属性以使用模式定义?

如何解决《SwaggerPHP:如何声明属性以使用模式定义?》经验,为你挑选了1个好方法。

我的应用程序的响应如下所示:

{
  "status": "success",
  "data": {
      "status": "ready"
   },
  "request_id": "string"
}

我试图在Swagger中定义响应

 *           @SWG\Response (
 *              response=200,
 *              description="Success response",
 *              @SWG\Schema (
 *                  @SWG\Property(
 *                      property="status",
 *                      type="string",
 *                      default="success"
 *                  ),
 *                  @SWG\Property(
 *                      property="data",
 *                      @SWG\Schema(
 *                          ref="#/definitions/Service/models/Status"
 *                      )
 *                  ),
 *                  @SWG\Property(
 *                      property="request_id",
 *                      type="string"
 *                  ),
 *              )
 *          ),

但它没有使用状态的Schema定义,所以我的响应实际上看起来像:

{
  "status": "success",
  "data": {},
  "request_id": "string"
}

如何定义数据属性以使用模式定义?或者它可以以不同的方式完成吗?



1> JJHunter..:

有趣的是,人们有时会在发布问题后找到答案.

答案是:

*           @SWG\Response (
 *              response=200,
 *              description="Success response",
 *              @SWG\Schema (
 *                  @SWG\Property(
 *                      property="status",
 *                      type="string",
 *                      default="success"
 *                  ),
 *                  @SWG\Property(
 *                      property="data",
 *                      ref="#/definitions/Service/models/Status"
 *                  ),
 *                  @SWG\Property(
 *                      property="request_id",
 *                      type="string"
 *                  ),
 *              )
 *          ),

推荐阅读
周扒pi
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有