Though the response are in correct format I am not able to pass the following tests:
The response returned from POST /api/users/:_id/exercises will be the user object with the exercise fields added.
You can make a GET request to /api/users/:_id/logs to retrieve a full exercise log of any user.
A request to a user’s log GET /api/users/:_id/logs returns a user object with a count property representing the number of exercises that belong to that user.
A GET request to /api/users/:_id/logs will return the user object with a log array of all the exercises added.
There ain’t any problem with the tests you mentioned they are getting accepted , the main problem starts with this test:
The response returned from POST /api/users/:_id/exercises will be the user object with the exercise fields added.
However if you will try those that are failing the response seems to be matching the one which is required yet it fails