Today, we rolled out new field in "Customer Voice survey responses" entity (msfp_surveyresponse) that stores the individual question responses in your survey.

The survey question response continues to be stored to "Customer Voice survey question responses" and the new field provides an alternate way to get to the information. With this new change, for example, you can directly get the response to the survey questions from survey response as follows:

The details of the survey response is stored in JSON format with an example schema as follows:
{
"type": "array",
"items": {
"type": "object",
"properties": {
"questionId": {
"type": "string"
},
"response": {
"type": "string"
}
},
"required": [
"questionId",
"response"
]
}
}
The changes is part of the CDS solution update version 2.0.0.8
Hope this will make it easier for you to create report and follow up workflow for Customer Voice survey responses