テキスト文字列の検索と置換のためのJSONファイルの例

次に、テキスト文字列の検索と置換のためのJSONファイルの例を部分的に示します。

{
  "Items": [
    {
      "oldValue": "Text1"
      "newValue": "New Value1"
      "ignoreCase": true
    },
    {
      "oldValue": "text2",
      "newValue": "New Value2",
      "ignoreCase": false
    }
  ]
}