要求 JSON Schema 中两个字段具有相同的值

问题描述 投票:0回答:1

我的 JSON 架构中需要两个不同的字段具有相同的值。只要两个值不同,验证就会失败。仅使用 JSON Schema 可以吗?

jsonschema
1个回答
0
投票

当然,您可以使用

const

{
    "$schema": "https://json-schema.org/draft-2020-12/schema",
    "type": "object",
    "properties": {
        "one": {
            "const": "same_value"
        },
        "two": {
            "const": "same_value"
        }
    }
}
© www.soinside.com 2019 - 2024. All rights reserved.