在 json 模式中,如何链接定义?

In json schema, how to chain definitions?

我正在尝试构建具有 "chained" 定义的 json 架构。

对于给定的模式:

{
  "$schema": "http://json-schema.org/schema#",
  "id": "http://toto/filter-schema#",
  "title": "filter schema definition",
  "type": "object",
  "description": "filter data",
  "definitions": {
    "timeFilters": {
      "type": "object",
      "oneOf": [
        {
          "properties": {
            "since": {
              "type": "string",
              "format": "date-time",
              "description": "sends only items that have been modified AFTER this"
            }
          },
          "additionalProperties": false,
          "required": [
            "since"
          ]
        },
        {
          "properties": {
            "from": {
              "type": "string",
              "format": "date-time",
              "description": "return only data that have a validity date AFTER this"
            },
            "to": {
              "type": "string",
              "format": "date-time",
              "description": "return only data that have a validity date BEFORE this"
            }
          },
          "additionalProperties": false,
          "required": [
            "from",
            "to"
          ]
        }
      ]
    },
    "objectFilters": {
      "type": "object",
      "properties": {
        "objectFilters": {
          "type": "array",
          "description": "the array of object filter",
          "minItems": 1,
          "uniqueItems": true,
          "items": [
            {
              "type": "object",
              "additionalProperties": false,
              "properties": {
                "targetClass": {
                  "type": "string",
                  "description": "the target class"
                },
                "targetAttribute": {
                  "type": "string",
                  "description": "the target attribute"
                },
                "test": {
                  "type": "string",
                  "description": "the test on the attribute value"
                }
              }
            }
          ]
        }
      },
      "additionalProperties": false
    }
  },
  "anyOf": [
    {
      "additionalProperties": false
    },
    {
      "$ref": "#/definitions/timeFilters",
      "additionalProperties": false
    },
    {
      "$ref": "#/definitions/objectFilters",
      "additionalProperties": false
    }
  ]
}

此架构正在验证

{
  "since": "2016-02-17T01:02:03.1Z"
}

{
  "from": "2016-02-17T01:02:03.1Z",
  "to": "2016-02-17T01:02:03.1Z",
}

{
  "objectFilters": [
    {
      "targetClass": "test",
      "targetAttribute": "test",
      "test": "test"
    }
  ]
}

甚至

{}

但不是

{
  "since": "2016-02-17T01:02:03.1Z",
  "objectFilters": [
    {
      "targetClass": "test",
      "targetAttribute": "test",
      "test": "test"
    }
  ]
}

如何让它验证最后一个 json?

我尝试向 "anyOf" 添加新定义,如下所示:

    {
      "$ref": "#/definitions/timeFilters",
      "$ref": "#/definitions/objectFilters",
      "additionalProperties": false
    }

但它不起作用。

我用的是草稿v4.

编辑: 也试过

{
  "$ref": "#/definitions/timeFilters",
  "additionalProperties": {
    "$ref": "#/definitions/objectFilters",
    "additionalProperties": false
  }
}

也不工作

additionalProperties 的行为在合并模式时可能会令人困惑。我建议采用不同的方法。预先声明所有属性然后单独声明所需的属性约束会更容易。

dependencies 关键字在这种情况下效果很好。

http://json-schema.org/latest/json-schema-validation.html#anchor70

{
  "$schema": "http://json-schema.org/schema#",
  "id": "http://toto/filter-schema#",
  "title": "filter schema definition",
  "description": "filter data",
  "type": "object",
  "properties": {
    "since": {
      "type": "string",
      "format": "date-time",
      "description": "sends only items that have been modified AFTER this"
    },
    "from": {
      "type": "string",
      "format": "date-time",
      "description": "return only data that have a validity date AFTER this"
    },
    "to": {
      "type": "string",
      "format": "date-time",
      "description": "return only data that have a validity date BEFORE this"
    },
    "objectFilters": {
      "type": "array",
      "description": "the array of object filter",
      "minItems": 1,
      "uniqueItems": true,
      "items": [
        {
          "type": "object",
          "additionalProperties": false,
          "properties": {
            "targetClass": {
              "type": "string",
              "description": "the target class"
            },
            "targetAttribute": {
              "type": "string",
              "description": "the target attribute"
            },
            "test": {
              "type": "string",
              "description": "the test on the attribute value"
            }
          }
        }
      ]
    }
  },
  "additionalProperties": false,
  "dependencies": {
    "since": {
      "not": { "required": ["from"] }
    },
    "from": ["to"],
    "to": ["from"]
  }
}