次のようなオブジェクトの配列を追加したい
"identifiers": [
{
"primary": true
},
{
"primary": false
},
]
ただし、配列内のオブジェクトには、作成するための名前が常に必要です
"identifiers": [
{
"IDENTIFIER": {
"primary": true
}
}
]
構成ファイルで次の JSON コードを使用しました。
"identifiers": {
"title": "Identifiers",
"type": "array",
"location": "body",
"items": {
"title": "Identifier Fields",
"type": "object",
"properties": {
"IDENTIFIER": {
"type": "object",
"properties": {
"primary": {
"title": "primary",
"required": true,
"type": "boolean",
"description": "",
"default": true
}
}
}
}
}
}
これを達成する方法。親切に私を助けてください。
前もって感謝します。