使用 JSON 架构针对另一个验证 属性

Validate property against another with JSON Schema

在下面的模型中,仅当 "detail" 数组为空时才需要 "category_id" 属性。

如果"detail"数组不为空,则不需要"category_id"属性。

如何使用 JSON 架构执行此操作?

{
    "description": "Expense model validation.",
    "type": "object",
    "properties": {
        "description": {
            "type": "string"
        },
        "category_id": {
            "type": "string"
        },
        "detail": {
            "type": "array",
            "items": {
                "description": "Expense detail",
                "type": "object",
                "properties": {
                    "description": {
                        "type": "string"
                    }
                },
                "required": [ "description" ]
            }
        }
    },
    "required": [ "description", "category_id" ]
}

您可以使用 anyOf 检查 category_id 是否存在,或者 detail 是否存在并且至少有一项。

{
  "description": "Expense model validation.",
  "type": "object",
  "properties": {
    "description": { "type": "string" },
    "category_id": { "type": "string" },
    "detail": {
      "type": "array",
      "items": {
        "description": "Expense detail",
        "type": "object",
        "properties": {
          "description": { "type": "string" }
        },
        "required": ["description"]
      }
    }
  },
  "required": ["description"],
  "anyOf": [
    { "required": ["category_id"] },
    {
      "properties": {
        "detail": { "minItems": 1 }
      },
      "required": ["detail"]
    }
  ]
}