我想在数组中添加一个对象。我必须为该对象设置一个名称,例如
"identifiers": [
"IDENTIFIER": {
"primary": true
}
]
这里的“IDENTIFIER”是对象名称。但是数组中的第一个对象总是创建为一个空对象,例如
"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
}
}
}
}
}
}
如何实现这一点。请帮助我。
注意:我可以在 Object 中使用 Object。但我不希望那样。
提前致谢。