Example JSON File for Searching for and Replacing Text Strings

The following is a partial example of an JSON file for searching for and replacing a text string.

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