I’m guessing that snapshot testing is checking that the response is identical to a previous saved example. It will check all keys and values.
Have a look at the folder test script that produces this. Its fairly complex and I wouldn’t recommend trying to refactor it to ignore a particular value. If that is even possible. It works against any example from a mock and doesn’t seem to care about what key/values are thrown at it. It will recurse through the mock object and check the request ridgidley against the example. Which is exactly what you would want snapshot testing to do.
If the responseTime value is dynamic, then it doesn’t sound like snapshot testing is an suitable test for this request. You might want to consider JSONSchema tests or another method.