验证有效的json

时间:2019-03-02 13:16:31

标签: json schema ajv

我有以下架构:

 {
      "$schema": "http://json-schema.org/schema#",
      "$id": "http://api.hobnob.social/schemas/users/create.json",
      "title": "Create User Schema",
      "description": "For validating client-provided create user object",
      "type": "object",
      "properties": {
          "email": {
              "type": "string",
              "format": "email"
          },
          "password": { "type": "string" },
          "profile": { "$ref": "profile.json#" }
      },
      "required": ["email", "password"],
      "additionalProperties": false
}
{
      "$schema": "http://json-schema.org/schema#",
      "$id": "http://api.hobnob.social/schemas/users/profile.json",
      "title": "User Profile Schema",
      "description": "For validating client-provided user profile object when creating and/or updating an user",
      "type": "object",
      "properties": {
          "bio": { "type": "string" },
          "summary": { "type": "string" },
          "name": {
              "type": "object",
              "properties": {
                  "first": { "type": "string" },
                  "last": { "type": "string" },
                  "middle": { "type": "string" }
              },
              "additionalProperties": false
          }
      },
      "additionalProperties": false
}

我正在使用ajv对其进行验证。在几乎所有情况下,我都能获得预期的结果。但是,当使用包含生物或摘要字段(带有字符串类型)的json进行验证时,ajv根本没有响应。

例如我试图验证

{
    "email": "e@ma.il",
    "password": "password",
    "profile": {
        "name": {
            "first": "firstname"
        },
        "bio":"this is a bio"
    }
}

没有任何回应。

我尝试合并架构,但是没有任何区别。我希望我犯了一些简单的初学者错误,可能有人发现!我花了很多时间试图找出问题所在,但是经过全部调试之后,我再也没有前进了。

1 个答案:

答案 0 :(得分:0)

我以某种方式使它工作了,但是不确定为什么它开始工作。

在测试脚本中,我添加了一行以从elasticsearch中删除测试索引。之后,所有测试均通过。然后,我从测试脚本中删除了新行,以查看它是否会再次停止工作,但没有成功。

我猜这个问题与弹性搜索有关...