Just directly call.
<span ng-repeat="record in records">
name: {{record.models.name}}
Adress: {{record.Address1}}
City: {{record.City}}
</span>
also in angular script
$scope.records = $scope.personDetails.myrecords;
use name: 'Mat' instead "name": "Mat" for all labels in your persondetails object.
or you need convert your json file to javascript object. angular.toJson(obj);