Returns a list of statistics leaders for a competition.
			GET /v1/{sport}/competitions/{competitionId}/leaders/{statisticCode}
             
         | Parameter Name | Value | Description | 
|---|---|---|
| Required Parameters | ||
| sport | string | The sport for which you are making the request | 
| competitionId | integer | Unique identifier for the competition. | 
| statisticCode | text | Unique identifier for the statistic. The codes depend upon the sport: | 
| Optional Parameters | ||
| teamId | integer | Unique identifier for the team. | 
| personId | integer | Unique identifier for the person. | 
| periodNumber | integer | Display leaders for only this period. | 
| periodType | string | The type of period. 
 | 
| homeAway | string | Is this value for when the team is playing at home/away or either. If not provided, then 'ALL' is assumed. 
 | 
| winLoss | string | Is this value for when the team has won or loss or either. If not provided, then 'ALL' is assumed. 
 | 
| inConference | string | Is this value for when the team is in or out of it's own conference or either. If not provided, then 'ALL' is assumed. 
 | 
| matchType | string | Is this value for what type of matches the team was in. If not provided, then 'ALL' is assumed. 
 | 
| useExternalForLeague | integer | If this value is set to the leagueId, then the URL parameters personId,competitionIdandteamIdwill instead refer to theexternalIdfields of their respective entities in that league. | 
Do not supply a request body with this method.
If successful this method returns an array of Leaders resources. This call returns all statistics for each person in the Leaders resource.
Returns a summary of statistics leaders for a competition for multiple statistics.
The summary is method is different from the list method above, in that it returns the leaders for a number of statistics in the one call. This call also only returns the one statistic for each leaders resource, whereas the list call returns all possible statistics.
			GET /v1/{sport}/competitions/{competitionId}/leaders/summary
             
         | Parameter Name | Value | Description | 
|---|---|---|
| Required Parameters | ||
| sport | string | The sport for which you are making the request | 
| competitionId | integer | Unique identifier for the competition. | 
| statisticCodes | text | A comma separated list of statistic codes for which leaders will be returned. e.g. sAssists,sBlocksThe codes depend upon the sport: | 
| Optional Parameters | ||
| teamId | integer | Unique identifier for the team. | 
| personId | integer | Unique identifier for the person. | 
| periodNumber | integer | Display leaders for only this period. | 
| periodType | string | The type of period. 
 | 
| homeAway | string | Is this value for when the team is playing at home/away or either. If not provided, then 'ALL' is assumed. 
 | 
| winLoss | string | Is this value for when the team has won or loss or either. If not provided, then 'ALL' is assumed. 
 | 
| inConference | string | Is this value for when the team is in or out of it's own conference or either. If not provided, then 'ALL' is assumed. 
 | 
| matchType | string | Is this value for what type of matches the team was in. If not provided, then 'ALL' is assumed. 
 | 
Do not supply a request body with this method.
If successful this method returns an array of the following structure.
| Parameter Name | Value | Description | 
|---|---|---|
| statisticCode | text | The code for the statistic | 
| leaders | array | An array of Leaders resources. |