如何大摇大摆地重用另一个定义中的示例?

How to reuse example from another definition in swagger?

我有一个 report 对象的定义。我有另一个 reports 对象的定义,它有一个 report 对象数组(通过 $ref)。

report 定义中,我定义了一个示例,它在 swagger UI.

中运行良好

reports 定义中,我希望它使用 report 定义中的示例。

我该怎么做?我已经使用 $ref 尝试了几件事,我得到的最接近的是我在以下 YAML 中拥有的...

definitions:
  report:
    type: object
    properties:
      ID:
        type: number
        format: int
        description: "DB record ID of the report."
        readOnly: true
      ErrorContent:
        type: string
        description: "The actual problem or error infomation for this report. This can be exception stack, etc."
        readOnly: true
      UserComments:
        type: string
        description: "Any user comments collected by the app and submitted with the report."
        readOnly: true
      ReportedBy:
        type: string
        description: "The person using the app when it triggered the error this report is for."
        readOnly: true
      ReportedDateTime:
        type: string
        description: "The date/time the report was submitted."
        readOnly: true
    required:
      - ID
      - ErrorContent
      - ErrorType
      - UserComments
      - ReportedBy
      - ReportedDateTime
    example:
      ID: 11367
      ErrorContent: "Operation is not valid due to the current state of the object."
      ErrorType: "Exception"
      UserComments: "Was clicking this and that and then Boom!"
      ReportedBy: "domain\name"
      ReportedDateTime: "2016-01-19 14:07:00"
  reports:
    properties:
      message:
        type: string
      reports:
        type: array
        items:
          $ref: '#/definitions/report'
    example:
      message: "success"
      reports:
        - $ref: '#/definitions/report'

但是,在 Swagger UI 中,上述结果...

{
  "message": "success",
  "reports": [
    {
      "$ref": "#/definitions/report"
    }
  ]
}

一个有趣的注意事项,在 Swagger UI 中,当我查看模型视图时,它确实包含所有 报告 ,甚至还有描述。

此行为是正确的——examples 节不能用 JSON 指针引用。查看 OAI Specification 当前支持的内容。

如果您觉得这是一个常见的用例,请在规范存储库中提出问题。