gpt4 book ai didi

Json Schema - 使用引用使用枚举

转载 作者:行者123 更新时间:2023-12-02 22:44:07 25 4
gpt4 key购买 nike

我正在尝试构建一个 JSON schema对于我的用例,我在单独的文件中有字符串的枚举,并且希望从我的架构中引用它。我怎样才能实现这一目标。

示例架构:

{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"card": {
"type": "object",
"properties": {
"id": {
"type": "integer"
},
"value": {
"type": "string",
"enum": {"$ref" : "reference to a file having list of enums"}
//I want to refer to a specific enum array (say value1's array)
}
}
}
},
"required": [
"card"
]
}

枚举文件如下:

{
"value1": [..],
"value2": [..]
....
}

最佳答案

$ref 只能用于引用模式。所以,你可以做这样的事情。

{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"card": {
"type": "object",
"properties": {
"id": { "type": "integer" },
"value": { "$ref" : "/schemas/valueEnum.json" }
}
}
},
"required": ["card"]
}

/schemas/valueEnum.json

{ "enum": ["foo", "bar"] }

关于Json Schema - 使用引用使用枚举,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39250306/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com