0

以下のモデルでは、「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" ]
}
4

1 に答える 1

1

が存在するか、存在して少なくとも 1 つのアイテムがanyOfあるかを確認するために使用できます。category_iddetail

{
  "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"]
    }
  ]
}
于 2015-07-06T07:24:31.610 に答える