0

次のようなオブジェクトの配列を追加したい

    "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
                        }
                    }
                }
            }
        }
    }

これを達成する方法。親切に私を助けてください。

前もって感謝します。

4

2 に答える 2

0

回答ありがとうございます。

余分なオブジェクト パラメーターを追加して間違いを犯しました。次のような余分なオブジェクトを削除して修正しました

"identifiers": {
    "title": "Identifiers",
    "type": "array",
    "location": "body",
    "items": {
        "title": "Identifier Fields",
        "type": "object",
                "properties": {
                    "primary": {
                        "title": "primary",
                        "required": true,
                        "type": "boolean",
                        "description": "",
                        "default": true
                    }
                }
            }
}
于 2015-08-17T07:36:50.460 に答える