Ionic json file read HELP!

I am trying to read a json file with ionic. But I got stuck in some places. can you help me?
How do I extract the json file from the sample code?
sample json :
{"MatchLiveInfoEvents":[{"elapsed":0,"elapsed_plus":0,"elapsed_text":0,"event_desc":"Maç saat 20:30 başlayacaktır","incident_code":"Comment","comment":"","event_incident_typeFK":1,"EventTypeText":"","ExtraIncidentInfo":""}]}

my codes :

  $http.get('deneme.json').success(function(data){
   $scope.results = data;
  });

Your code seems correct as long as you refer the json file path correctly and it is a valid json.
What errors are you getting