使用 PatternProprties 和 tv4 进行 JSON 模式验证



我有一个像这样的json:

{"post": {"someKey": {"anotherKey":"anotherValue"}}}

其中第一个键是有效的 HTTP 方法,并且可以是 - 发布、获取等在运行时所有有效的 HTTP 方法中的任何一个。

这是我的架构

var schema = {
"type": "object",
"patternProperties": {
"^[a-z]+$": {
'properties': {
"type": "object",
'properties': {
'someKey':{
'type': 'object',
'properties': {
'anotherKey': {'type': 'string'},
}
}
}
}
}
}
}
var valid = { "post": {"mkey":"myvalue"}}; //This is getting passed but I know that is wrong
var invalid = { "1": {"mkey":"myvalue"}}; //This is passed but actually it should fail
console.log(tv4.validateMultiple(invalid, schema));

有人可以帮忙吗?

我想通了:

{
'type': 'object',
'patternProperties': {
'^(POST|GET|DELETE|HEAD|PATCH|HEAD|PUT)$': {
'additionalProperties': false,
'type': 'object',
'required': ['someKey'],
'properties': {
'someKey': {
'type': 'string'
}
}
}
}
}

在这里,需要注意的事项: 1."附加属性":假对于模式属性很重要 2. 根据 JSON 架构规范,您不能具有不区分大小写的匹配,因此所有匹配都是大写的

相关内容

  • 没有找到相关文章

最新更新