我正在尝试构建一个模型对象,其中包含一个“字符串列表”键值对。有没有办法将列表默认为 null 而不是空列表?
目前这是模型的设置方式:
Filter:
type: "object"
properties:
and:
type: "array"
items:
$ref: "#/FilterField"
or:
type: "array"
items:
$ref: "#/FilterField"
当该or
字段为空时,它只会生成一个空列表or: []
,有没有办法生成or: null
而不是or: []
?