The JSON I am getting back from the API is nested FIRST by field (i.e. table columns), THEN by record(i.e. table rows). So, the JSON looks like this:
myJSON = {
You can just iterate over one of the arrays and use $index to get the corresponding elements in any other arrays:
$index
<tbody ng-repeat="id in myJSON.data.id"> <tr> <td>{{id}}</td> <td>{{myJSON.data.gorks[$index]}}</td> </tr> </tbody>