• Register

API Data Dictionary - Statistic Types

Statistic Types

Statistic are built up of a outer statistics type and inner statistics.

<cricket>
    <team id="f7f611a1-e667-2aa2-c3e0-6dbc6981cfa4">
        <name>Australia</name>
        <player id="856aff95-2b12-424f-4485-188f8c627fdf">
            <name>A J Finch</name>
            <statistics type="batting">
                <statistic type="matches">3</statistic>
                <statistic type="innings">3</statistic>
                <statistic type="balls-faced">78</statistic>
                <statistic type="not-outs">0</statistic>
                <statistic type="runs">71</statistic> 
                <statistic type="best-runs">45</statistic>
                <statistic type="best-runs-not-out">false</statistic>
                <statistic type="average">23.67</statistic>
                <statistic type="hundreds">0</statistic>
                <statistic type="fifties">0</statistic>
                <statistic type="fours">10</statistic>
                <statistic type="sixes">1</statistic>
                <statistic type="dismissals">3</statistic>
                <statistic type="caught">2</statistic>
                <statistic type="stumped">0</statistic>
                <statistic type="strike-rate">91.03</statistic>
            </statistics>
            <statistics type="bowling">
                <statistic type="overs">0</statistic>
                <statistic type="balls">0</statistic>
                <statistic type="maidens">0</statistic>
                <statistic type="runs">0</statistic>
                <statistic type="wickets">0</statistic>
                <statistic type="average"/>
                <statistic type="best-runs"/>
                <statistic type="best-wickets"/>
                <statistic type="five-wickets">0</statistic> 
                <statistic type="ten-wickets">0</statistic>
                <statistic type="strike-rate"/>
                <statistic type="economy-rate"/>
            </statistics>
        </player>
        ...
    </team> 
</cricket>    

List of available statistics types for statistics (Line 6).

Type(s) Description
batting
 Statistics for type batting.
bowling
 Statistics for type bowling.

 

Batting Statistics

List of available 'batting' statistic types (Line 7 - 22).

Type(s) Description
matches
 Number of matches in the statistics selection.
innings
 Number of Innings played in the statistics selection.
balls-faced  Number of balls faced in the statistics selection.
not-outs  Number of not outs in the statistics selection.
runs  Total number of runs in the statistics selection.
best-runs  Highest number of runs in a innings in the statistics selection.
best-runs-not-out  'best-runs' statistic gained whilst not out.
average  Average runs in the statistics selection.
hundreds  Number of hundreds scored in the statistics selection.
fifties  Number of fifties scored in the statistics selection.
fours  Number of fours scored in the statistics selection.
sixes  Number of sixes scored in the statistics selection.
dismissals  Number of dismissals in the statistics selection.
caught  Number of caught outs in the statistics selection.
stumped  Number of stumped outs in the statistics selection.
strike-rate  Calculated strike rate across the statistics selection.

 

Bowling Statistics

List of available 'bowling' statistic types (Line 25 - 36).

Type(s) Description
overs
 Number of overs bowled in the statistics selection.
balls
 Number of balls bowled in the statistics seleciton. 
maidens
 Number of maidens bowled in the statistics selection.
runs  Number of runs scored against in the statistics selection.
wickets
 Number of wickets gained in the statistics selection.
average  Bowling average for the statistics selection.
best-runs  Runs taken from the best wickets from the statistics selection.
best-wickets  Most wickets taken in a innings from the statistics selection.
five-wickets  Number of five wickets taken in an innings from the statistics selection.
ten-wickets  Number of ten wickets taken in an innings from the statistics selection.
strike-rate  Calculated strike rate across the statistics selection.
economy-rate  Calculated economy rate across the statistics selection.

Docs Navigation