This is a great package. One issues stands out to me for the example below:
It seems that any alphanumberic character in a string value that is preceded by a period gets highlighted with the jsonNoQuotes tag.
So for "USER_ID": ".response.body.id.value" // write instruction: response, body, id, and value are all highlighted with an error tag
EDIT: it looks like the jsonStringMatch is not matching on those two lines. Perhaps a lookahead is needed for the comment section?
{ "protocol": "gRPC", // communication protocol "cut": { // cut instruction set "to": { "USER_ID": ".response.body.id.value" // write instruction } }, "request": { // request payload "body": { "email": "[email protected]" }, "uri": "user_api.User/CreateUser" // request uri }, "response": { // response payload "body": "created user: ${USER_ID}", "status": 0 // response status code } }