web-dev-qa-db-ja.com

あるフィールドまたは別のフィールド(または他の2つのうちの1つ)を必要としますが、すべてではありません。

JSONに次のいずれかが含まれているかどうかを検証するJSONスキーマを思い付くことができません。

  • 1つのフィールドのみ
  • 別のフィールドのみ
  • (他の2つのフィールドの1つ)のみ

ただし、それらが複数存在する場合は一致しません。

私の場合、具体的には、

  • copyAll
  • fileNames
  • matchesFilesおよび/またはdoesntMatchFiles

検証しますが、それ以上ある場合は受け入れたくありません。

ここに私がこれまでに得たものがあります:

{
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "required": [ "unrelatedA" ],
    "properties": {
    "unrelatedA": {
        "type": "string"
    },
    "fileNames": {
        "type": "array"
    },
    "copyAll": {
        "type": "boolean"
    },
    "matchesFiles": {
        "type": "array"
    },
    "doesntMatchFiles": {
        "type": "array"
        }
    },
    "oneOf": [
         {"required": ["copyAll"], "not":{"required":["matchesFiles"]}, "not":{"required":["doesntMatchFiles"]}, "not":{"required":["fileNames"]}},
         {"required": ["fileNames"], "not":{"required":["matchesFiles"]}, "not":{"required":["doesntMatchFiles"]}, "not":{"required":["copyAll"]}},
         {"anyOf": [
               {"required": ["matchesFiles"], "not":{"required":["copyAll"]}, "not":{"required":["fileNames"]}},
               {"required": ["doesntMatchFiles"], "not":{"required":["copyAll"]}, "not":{"required":["fileNames"]}}]}
    ]
} ;

これは、私が望む以上に一致します。これが次のすべてに一致するようにします。

{"copyAll": true, "unrelatedA":"xxx"}
{"fileNames": ["aab", "cab"], "unrelatedA":"xxx"}
{"matchesFiles": ["a*"], "unrelatedA":"xxx"}
{"doesntMatchFiles": ["a*"], "unrelatedA":"xxx"}
{"matchesFiles": ["a*"], "doesntMatchFiles": ["*b"], "unrelatedA":"xxx"}

一致しない:

{"copyAll": true, "matchesFiles":["a*"], "unrelatedA":"xxx"}
{"fileNames": ["a"], "matchesFiles":["a*"], "unrelatedA":"xxx"}
{"copyAll": true, "doesntMatchFiles": ["*b"], "matchesFiles":["a*"], "unrelatedA":"xxx"}
{"fileNames": ["a"], "matchesFiles":["a*"], "unrelatedA":"xxx"}
{"unrelatedA":"xxx"}

私は行方不明の明らかなものがあると推測しています-それが何であるかを知りたいです。

40
user3486184

問題は「ない」セマンティクスです。 「必須ではない」とは、「包含を禁止する」という意味ではありません。そのスキーマを検証するために追加する必要がないことを意味します。

ただし、「oneOf」を使用して、より簡単な方法で仕様を満たすことができます。 「これらのスキーマの1つだけが検証できる」ことを意味することを忘れないでください。次のスキーマは、解決しようとしているプロパティの切り替えを実現します。

{
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "required": [
        "unrelatedA"
    ],
    "properties": {
        "unrelatedA": {
            "type": "string"
        },
        "fileNames": {
            "type": "array"
        },
        "copyAll": {
            "type": "boolean"
        },
        "matchesFiles": {
            "type": "array"
        },
        "doesntMatchFiles": {
            "type": "array"
        }
    },
    "oneOf": [
        {
            "required": [
                "copyAll"
            ]
        },
        {
            "required": [
                "fileNames"
            ]
        },
        {
            "anyOf": [
                {
                    "required": [
                        "matchesFiles"
                    ]
                },
                {
                    "required": [
                        "doesntMatchFiles"
                    ]
                }
            ]
        }
    ]
}
83
jruizaranguren