私は次のjsonを持っています
{
"Dettype": "QTY",
"Details": [
{
"12568": {
"Id": 12568,
"qty":1,
"Freq":"2",
"Option": 0,
"promote":"yes"
},
"22456": {
"Id": 22456,
"qty":2,
"Freq":"3",
"Option": 1,
"promote":"no"
}
}
]
}
上記の json の場合、リクエストを検証する json スキーマ ファイルを作成する必要があります。
しかし問題は、各項目のキー値が動的に変化する配列にあります。それが何らかの定数値である場合、私は書くことができますが、動的パターンを行う方法はありません
取得した JSON スキーマ
{
"type": "object",
"additionalProperties": true,
"properties": {
"Dettype": {
"type": "string"
},
"Details": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": true,
"properties": {
"**DYNAMIC VALUE**": {
"type": "object",
"additionalProperties": true,
"properties": {
"Id": {
"type": "integer"
},
"qty": {
"type": "integer"
},
"Freq": {
"type": "string"
},
"Option": {
"type": "integer"
},
"promote": {
"type": "string"
}
}
}
}
}
}
}
}
スキーマに対してどのような変更を行う必要があるかを誰かが教えてもらえますか