如何在特定路径中隐藏 swagger ref 属性?

问题描述

我在 swagger 文档中有这个结构:

  FunctionTitle:
    type: object
    required:
    - funcId
    - czechName
    - priority
    properties:
      funcId:
        type: number
        format: id
        example: 1226
      czechName:
        type: string
        example: Guvernér
      priority:
        type: number
        example: 21
      org:
        $ref: '#/deFinitions/Organ'
      funcType:
        $ref: '#/deFinitions/FunctionType' 

在某些路径中,我想返回此结构,但没有属性 org 和 funcType。所以我的回答应该是这样的:

{
"funcId" : 1226,"czechName" : "Guvernér",priority: 21
}

我没有找到如何选择不返回属性 org 和 funcType。我知道我可以为它创建另一个模型,但是我最好只根据需要隐藏属性而不是创建另一个模型。这是我的路径示例:

  /periods:
    get:
      tags:
      - developers & users
      summary: Periods
      operationId: periods
      description: |
        By passing in the appropriate options,you can search for
        available inventory in the system
      produces:
      - application/json
      responses:
        200:
          description: search  matching criteria
          schema:
            type: object
            properties:
              periods:
                type: array
                items:
                  $ref: '#/deFinitions/FunctionTitle'
        400:
          description: bad input parameter

感谢您的回答!

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)