gpt4 book ai didi

json - 如何为Map 定义JSON模式?

转载 作者:行者123 更新时间:2023-12-04 01:53:44 25 4
gpt4 key购买 nike

我有一个json:

{
"itemType": {"food":22,"electrical":2},
"itemCount":{"NA":211}
}


在这里,itemType和itemCount将是公用的,但其中的值(食品,NA,电气)将保持不变,但会不断变化,但格式为:Map

如何为此类通用结构定义Json Schema?

我试过了 :

"itemCount":{
"type": "object"
"additionalProperties": {"string", "integer"}

}

最佳答案

您可以:

{
"type": "object",
"properties": {
"itemType": {"$ref": "#/definitions/mapInt"},
"itemCount": {"$ref": "#/definitions/mapInt"}
},
"definitions": {
"mapInt": {
"type": "object",
"additionalProperties": {"type": "integer"}
}
}
}

关于json - 如何为Map <String,Integer>定义JSON模式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40750340/

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