如何定义至少需要多个属性之一的JSON模式

时间:2015-08-05 17:56:55

标签: json jsonschema

我想知道我是否可以定义一个JSON模式(草案4),该模式至少需要一个对象的许多属性中的一个。我已经知道allOfanyOfoneOf,但却无法弄清楚如何以我想要的方式使用它们。

以下是一些示例JSON:

// Test Data 1 - Should pass
{

    "email": "hello@example.com",
    "name": "John Doe"
}
// Test Data 2 - Should pass
{
    "id": 1,
    "name": "Jane Doe"
}
// Test Data 3 - Should pass
{
    "id": 1,
    "email": "hello@example.com",
    "name": "John Smith"
}
// Test Data 4 - Should fail, invalid email
{
    "id": 1,
    "email": "thisIsNotAnEmail",
    "name": "John Smith"
}

// Test Data 5 - Should fail, missing one of required properties
{
    "name": "John Doe"
}

我想要求至少idemail(同时接受它们)并仍然根据格式通过验证。如果我同时提供(测试3),则oneOf验证失败,anyOf通过验证,即使其中一个无效(测试4)

这是我的架构:

{
    "$schema": "http://json-schema.org/draft-04/schema#",
    "id": "https://example.com",
    "properties": {
        "name": {
            "type": "string"
        }
    },
    "anyOf": [
        {
            "properties": {
                "email": {
                    "type": "string",
                    "format": "email"
                }
            }
        },
        {
            "properties": {
                "id": {
                    "type": "integer"
                }
            }
        }
    ]
}

您能帮助我如何为我的用例实现正确的验证吗?

2 个答案:

答案 0 :(得分:55)

要求至少一组属性,请在一系列required选项中使用anyOf

{
    "type": "object",
    "anyOf": [
        {"required": ["id"]},
        {"required": ["email"]}
        // any other properties, in a similar way
    ],
    "properties": {
        // Your actual property definitions here
    }
{

如果您想要的任何属性("id""email"),则会传递allOf中的相应选项。

答案 1 :(得分:3)

您可以使用minProperties: number(如果需要,可以使用maxProperties: number)。 这样会缩短模式定义:

{
     type: "object",
     minProperties: 1,
     properties: [/* your actual properties definitions */],
}

文档链接:https://json-schema.org/understanding-json-schema/reference/object.html#size