标签: arrays null swagger swagger-3.0
是否可以定义一个不能包含空值的数组?
我正在使用Open API 3.0将其编译为Java
例如
A: type: array minItems: 1 items: $ref: "#/components/schemas/B" B: type: string pattern: ^[a-z]+$
我认为[null]或[“ abc”,null]无效
预先感谢