0

我正在尝试构建一个模型对象,其中包含一个“字符串列表”键值对。有没有办法将列表默认为 null 而不是空列表?

目前这是模型的设置方式:

Filter:
type: "object"
properties:
  and:
    type: "array"
    items:
      $ref: "#/FilterField"
  or:
    type: "array"
    items:
      $ref: "#/FilterField"

当该or字段为空时,它只会生成一个空列表or: [],有没有办法生成or: null而不是or: []

4

1 回答 1

0

根据这篇文章https://github.com/swagger-api/swagger-codegen/issues/5240 它已经在 2.2.2 中修复

于 2019-01-11T19:01:28.837 回答