Parsing JSON

I get a JSON as a response, from an ajax call, contents of which I then want to be loaded in the grid.

The response I get looks like this:

How can I make this kind of JSON response work with the parse method of dhtmlxGridObject?
Something like:
result = {“rows”:{“Added to index”:[“file1”, “file2”,…"], “Conflicting”:[“file3”, “file4”,…"], “Removed”:[“file5”, “file6”,…"]}}

importConfigurationStatusGrid.parse(result, "json");

The only solution is to create a custom loading type to be loaded to your grid.
Here you can find a tutorial with the example:
docs.dhtmlx.com/grid__data_form … dataformat