Swagger v3.0.2在anyOf对象和字符串数组中创建对象的示例

时间:2019-12-29 05:17:13

标签: api swagger openapi

我正尝试为我的信息数组创建一个示例,如下所示,但我不太想让它出现在swagger UI中。我不确定该怎么做才能解决它,因为只有一个特定的对象示例才有这个问题。

failure:
  type: object
  properties:
    message:
      type: string
      example: 'Something went wrong'
    errorCode:
      type: string
      example: 'bad url'
    exception:
      type: string
      example: 'null pointer'
    info:
      type: array
      items: 
        anyOf:
          - type: object
            example:
              userId: '2d49a532-29f1-11ea-978f-2e728ce88125'
              #Example in question
          - type: string
            example: 'line 82'
      example:
        sort: 'sort values'
        filter: 'filter values'
        page: 'page values'
      uniqueItems: true
    time:
      type: string
      format: date-time
      example: '2020-05-15T13:45:30'

感谢您的帮助。

0 个答案:

没有答案