Pattern Designer: Parse Variable - JSON File gives error "Custom strategy, JSON File, failed due to incorrect text highlighting"SummaryWhen building a pattern that using Operation = Parse Variable and Define Parsing = JSON File, you might encounter error "Custom strategy, JSON File, failed due to incorrect text highlighting". The reason is that the JSON output that the logic tried to parse might contain invalid syntax. Example:Nested Key-Pair value should have the following syntax:===="keyname1":{"keyname2":"yourvalue"}==== The JSON parser will not be able to parse the following syntax:===="keyname1": "{\"keyname2\":\"yourvalue\"}"==== You would need to fix the source data to use the proper syntax.