json模式,以确保字符串与数组的任何元素都不匹配

时间:2018-11-16 12:35:54

标签: jsonschema json-schema-validator

{
  "title":"x",
  "type:"string",
  "doesNotMatch":["element1","element2"]
}

是否存在JSON模式,以确保JSON数据与element1和element2不匹配。

  • {"x":element1}无效
  • {"x":"daf"}有效,前提是“ daf”不等于element1和element2

1 个答案:

答案 0 :(得分:2)

not enum应该为您提供帮助:

{
  "title":"x",
  "type:"string",
  "not": {"enum":["element1","element2"]}
}