JSON 奇数模式

JSON schema for odd numbers

如何使用 JSON 模式来验证奇数正整数?乍一看似乎不可能,但也许有什么技巧?

此架构应该有效

type: integer
not:
  multipleOf: 2
minimum: 0