I have a JSON object which I would like to templatize in lua. For example:
{
  "type":"email",
  "version":"1.0",
  "account":"%emailId%"
}
I would like to substitute the %emailId% with a list of e-mail ids. Is there a templatization support for JSON in lua?