Introduction

The livestream read APIs are long running HTTP GET calls. They are designed to be used to receieve a continuous stream of game actions.

They take place over one open TCP socket. Barring network interruption only one connection should be made for the duration of the match. Each match requires its own connection.

More information on using these calls can be found in the Livestream - READ FAQ.

Character Set

All data provided to these API functions is required to be in UTF-8 format.

All responses will be provided as UTF-8 strings.

Authentication

Each API call must include the header parameter x-api-key

It is this API key that identifies each call and applies any permissions or quotas. You will be provided this key on signup and you should keep it secret.

It is still possible to specify your API key via the ak query string parameter, however this is not a safe way to exchange the key and is DEPRECATED. If you set both the header and query string parameter, the header parameter will be taken in preference.

Message Format

Messages are sent in JSON format. Each message content differs depending on the type of the message, but will contain at least the following keys.

  • type This field indicates the type of message. The valid types are each explained in more detail in this documentation.

    {
        "type": "action",
        ...
        ...
    }

The body of the response is a series of messages (defined below). Each message is delimited by a carriage return/line-feed \r\n series of characters (in hex, 0x0D 0x0A).

From time to time new key values/structures will be added to this protocol. Any client consuming this data should ignore anything they do not understand. New fields/values/structures should not cause a failure or crash in the client system.

Not all keys will exist in all messages for all events. No value present for a key can be sent either as a value of null or the key not being present in the data.

Read

The read calls are LONG RUNNING http GET calls. They should be started before the start of the match and shoudd run for the length of the match. Barring network interuptions, there should only be one connection per match.

connection

This message type has the current status of the connection. This message type is always sent regardless of the values of the types URL parameter. If no other message is available, this message type will be sent every 10 seconds to maintain the connection.
type enum

The type of the message

connection
instance string(100)

This unique identifier of the controlling instance for this match.

status enum

This status of the connection to the capture device

NOTCONNECTED
The device has not yet connected
CONNECTED
The device is currently connected
LOST
The device has lost connection
COMPLETE
The device has completed its collection
latency associativearray

Latency information about this connection. Only provided if the latency=1 query parameter is set.

total associativearray

The total latency of the connection. The sum of the the capture device and processing time.

1m float

The average latency (over the last 1 minute) in seconds between the capture device and the data being available.

5m float

The average latency (over the last 5 minutes) in seconds between the capture device and the data being available.

15m float

The average latency (over the last 15 minutes) in seconds between the capture device and the data being available.

process associativearray

The latency of the connection caused by the processing of the messages

1m float

The average latency (over the last 1 minute) in seconds between the capture device and the data being available.

5m float

The average latency (over the last 5 minutes) in seconds between the capture device and the data being available.

15m float

The average latency (over the last 15 minutes) in seconds between the capture device and the data being available.

capture associativearray

The latency of the connection caused by the capture device

1m float

The average latency (over the last 1 minute) in seconds between the capture device and the data being available.

5m float

The average latency (over the last 5 minutes) in seconds between the capture device and the data being available.

15m float

The average latency (over the last 15 minutes) in seconds between the capture device and the data being available.

Example

{
  "type": "connection",
  "status" : "CONNECTED",
  "instance" : "84fdbdb207e13ec48f48225e72739eb2",
  "latency" : {
      "total" : {
          "1m" : 1.2,
          "5m" : 1.41,
          "15m" : 1.3
      },
      "capture" : {
          "1m" : 0.4,
          "5m" : 0.7,
          "15m" : 0.6
      },
      "process" : {
          "1m" : 0.8,
          "5m" : 0.71,
          "15m" : 0.7
      }
  }
}

status

This message type has the current status of the match.
type enum

The type of the message

status
status enum

The status of the match.

ready
warmup
prematch
anthem
oncourt
standby
countdown
inprogress
periodbreak
interrupted
cancelled
finished
protested
complete
rescheduled
abandoned
delayed
period associativearray

What period of the match is this statistic related to. 0 is valid and represents the value for the total match. Overtime periods should start at 1.

current integer

The current period number. Overtime periods start at 1.

periodType enum

The type of period

REGULAR
(Default)
OVERTIME
SHOOTOUT
periodStatus enum

The status of the period.

pending
started
ended
confirmed
clock string

The current time on the clock.

Format is: MM:SS:CC
clockRunning enum

Is the clock running?

0
No
1
Yes
possession integer

The number of the team in the match, 1 or 2 that currently has possession. 0 is valid.

possessionArrow integer

The number of the team in the match, 1 or 2 to which the possession Arrow is currently pointing. 0 is valid.

scores array

An array of team records

teamNumber integer

The number of the team in the match, 1 or 2.

score integer

The total score for that team in the match

secondaryScore integer

Optional. Secondary score for that team in the match.

Example

{
    "type": "status",
    "period": {
        "current": 1,
        "periodType": "REGULAR"
    },
    "clock": "01:55:99",
    "clockRunning": 1,
    "shotClock": "00:00:00",
    "status": "inprogress",
    "periodStatus": "started",
    "scores": [{
        "teamNumber": 1,
        "score": 14
    }, {
        "teamNumber": 2,
        "score": 18
    }]
}

setup

This message type has information about the how the match will be run.
type enum

The type of the message

setup
messageId integer

Unique identifier of the message being sent

periods associativearray

number integer

The number of periods in a match, not including any over/extra time

3
(Default)
length integer

The length of each period (in minutes)

20
(Default)
halfTimeBreak integer

The maximum length of half time break

15
(Default)
18
numberOfOvertimePeriods integer

Number of overtimes. Default = 1

timeoutsPerGame integer

How many timeouts per all game regular periods are available in total. Default = 2

timeoutsPerOvertime integer

How many timeouts per all game overtime periods are available in total. Default = 2

timeoutsPerTeam integer

How many timeouts in total per team per all same type periods. Default = 1

allowOvertime integer

Allow Overtime

1
Yes (Default)
0
No
overtimeLength integer

What is the maximum length of overtime

5
(Default)
20
mediaTimeoutsPerGame integer

Allow unlimited media timeouts for whole game

1
Yes (Default)
0
No
numberOfPlayers integer

The default number of players on field per team 22 (19 players + 3 goalies). Default = 22

minimumAbandonTime integer

Minimum required time for the match to count as officially complete if it is abandoned. Default = 40

onlyGoalieSubs integer

Only goalie substitutions will be counted

1
Yes (Default)
0
No
customEfficiencyFormula string(10000)

A string giving the formula to calculate a custom efficiency value. The formula can use simple mathematical constructs * + - / () and contain a number of variables. Each variable must be the name of a valid Team Match Statistic. For a complete list of allowed statistic names and further formula check the person match statistics.

Example

{
    "type": "setup",
    "timeouts": {
        "extratime": 1,
        "period4": 2,
        "period3": 2,
        "period2": 2,
        "period1": 2,
        "half2": 3,
        "half1": 2,
        "style": "period"
    },
    "periods": {
        "breakPeriod": 2,
        "breakHalftime": 2,
        "length": 10,
        "overtime": 1,
        "number": 4,
        "lengthOvertime": 5
    },
    "messageId": 1,
    "maxFoulsTechnical": 5,
    "shotClock": 25,
    "customEfficiencyFormula": "",
    "foulsBeforeBonus": 4,
    "maxFoulsPersonal": 5
}

matchInformation

This message type has information about the match. It is generally only sent at the start of the connection.
type enum

The type of the message

matchInformation
competition associativearray

competitionName string(100)

The name of the competition

competitionAbbrev string(50)

An abbreviation for this competition

competitionNameInternational string(100)

The name of the competition suitable for international purposes. Latin characters only.

competitionAbbrevInternational string(50)

An abbreviated form of the name of the competition suitable for international purposes. Latin characters only.

standard enum

The level/standard of this competition.

OLYMPICS
Olympics
WORLD_CHAMPIONSHIPS
World Championships
ZONE_CHAMPIONSHIPS
International Zone Championships
NONCONTINENTAL_CHAMPIONSHIPS
Non-continental Championships
FRIENDLIES
International Friendlies
INTERNATIONAL
International
REGION
Regional
ELITE
Professional/elite organisation
TIER2
lesser standard than elite
TIER3
lesser standard than tier 2
GRASS_ROOTS
normal standard (Default)
competitionId integer

Unique identifier for the competition

externalId string(50)

A unique ID for this competition set by the owner of this competition.

twitter string(150)

The public twitter account

gender enum

The gender of the competition.

MALE
Male
FEMALE
Female
MIXED
Both male and female
year integer

The starting year of the competition. 4 digits

ageGroup enum

The rough age group of the competition.

JUNIOR
Child/Teenage (below 18)
SENIOR
Adult; 18+
MASTERS
More senior ages;40+
logo

Only present if this competition has a logo that has been uploaded.

associativearray

An associative array of files, where the key is the 'size name' of the file. See the 'size' parameter for valid options. Not all sizes may be available.

size enum

The name of the size

T1
75x75
S1
200x200
M1
400x400
L1
600x600
bytes integer

The size of the file in bytes

width integer

The width of the file in pixels

height integer

The height of the file in pixels

url url

The url for the image. The URL returned from this call is only valid for 5 hours and may change on subsequent calls.

venue associativearray

  venueName string(100)

The name of the venue

venueCode string(50)

Short Code of the venue

venueNickname string(50)

A non-offical name of the venue

venueId integer

Unique identifier for the venue

venueNameInternational string(100)

The name of the venue suitable for international purposes. Latin characters only.

venueCodeInternational string(50)

A short code for this venue suitable for international purposes. Latin characters only.

venueNicknameInternational string(50)

A non-official name of the venue suitable for international purposes. Latin characters only.

externalId string

A unique ID for this venue set by the owner of this league.

countryCode string(2)

The ISO 3166 two letter country code. Defaults to league value if blank

countryCodeIOC string(3)

The IOC three letter country code. Defaults to league value if blank

country string(100)

The country. Defaults to league value if blank

suburb string(200)

The suburb/town

latitude decimal

Latitude of the venue

longitude decimal

Longitude of the venue

surfaceName string(100)

The name of the surface

seatingCapacity integer

Total number of seats available

timezone string

The timezone location as defined by the IANA time zone database. See http://en.wikipedia.org/wiki/List_of_tz_database_time_zones

league associativearray

leagueName string(100)

The name of the league

leagueAbbrev string(50)

An abbreviated form of the name of the league

leagueNameInternational string(100)

The name of the league suitable for international purposes. Latin characters only.

leagueAbbrevInternational string(50)

An abbreviated form of the name of the league suitable for international purposes. Latin characters only.

leagueId integer

Unique identifier for the league

externalId string(50)

A unique ID for this league set by the owner of this league.

countryCode string(2)

The ISO 3166 two letter country code. Defaults to league value if blank

countryCodeIOC string(3)

The IOC three letter country code. Defaults to league value if blank

country string(100)

The country. Defaults to league value if blank

geographicRegion enum

How geographically widespread is this league.

LOCAL
Only relevant to local area
STATE
Relevant to an entire state
NATIONAL
Relevant to an entire country
INTERNATIONAL
Relevant to multiple countries
logo

Only present if this league has a logo that has been uploaded.

associativearray

An associative array of files, where the key is the 'size name' of the file. See the 'size' parameter for valid options. Not all sizes may be available.

size enum

The name of the size

T1
75x75
S1
200x200
M1
400x400
L1
600x600
bytes integer

The size of the file in bytes

width integer

The width of the file in pixels

height integer

The height of the file in pixels

url url

The url for the image. The URL returned from this call is only valid for 5 hours and may change on subsequent calls.

match associativearray

matchTime datetime

The scheduled start date/time of the match in the timezone of the venue.
Time at midnight "00:00:00" means that match time is unknown.

Format is: YYYY-MM-DD HH:MM:SS
matchName string(100)

The name of the match

matchNumber integer

The number of the match in the competition

phaseName string(100)

The name of the phase

poolNumber integer

The identifier of the pool

roundDescription string(30)

A description of the round. eg. Rivalry Round

roundNumber string(30)

The identifier of the round. Usually a number, but will support a string eg. Grand Final. Defaults to 0

matchType enum

What part of the competition is this match part of. If not specified the value of this field for the round will be checked.

PRESEASON
Pre Season
REGULAR
Regular matches (Default)
FINALS
Finals/Playoffs
twitterHashtag string(50)

A twitter hashtag for the match

matchId integer

Unique identifier for the match

externalId string(50)

A unique ID for this match set by the owner of this league.

pool associativearray

  poolName string(100)

The name of the pool

  poolNumber integer

The number of the pool. This number must be unique for the competition.

externalId string(50)

A unique ID for this pool set by the owner of this league.

Example

{
    "match": {
        "matchName": "",
        "matchTime": "2017-02-24 12:00:00",
        "matchNumber": 89,
        "phaseName": "",
        "poolNumber": 0,
        "matchId": 2,
        "externalId": "89",
        "roundDescription": "1",
        "matchType": "REGULAR",
        "twitterHashtag": "",
        "roundNumber": "1"
    },
    "competition": {
        "competitionName": "National Season 2017",
        "competitionNameInternational": "",
        "competitionAbbrev": "",
        "competitionAbbrevInternational": "",
        "standard": "GRASS_ROOTS",
        "competitionId": 9,
        "externalId": "1",
        "twitter": "",
        "gender": "MALE",
        "year": 2017,
        "ageGroup": "SENIOR"
    },
    "league": {
        "leagueName": "API Test League",
        "leagueNameInternational": "",
        "leagueAbbrev": "ATL",
        "leagueAbbrevInternational": "",
        "leagueId": 1,
        "geographicRegion": "NATIONAL",
        "countryCode": "AU",
        "countryCodeIOC": "AUS",
        "country": "AUSTRALIA",
        "externalId": ""
    },
    "venue": {
        "venueName": "Northhaven",
        "venueCode": "",
        "venueNickname": "",
        "venueNameInternational": "",
        "venueCodeInternational": "",
        "venueNicknameInternational": "",
        "venueId": 4,
        "countryCode": "AU",
        "country": "AUSTRALIA",
        "countryCodeIOC": "AUS",
        "seatingCapacity": 0,
        "latitude": 1.1,
        "longitude": 1.1,
        "timezone": "Australia/Melbourne",
        "surfaceName": "",
        "suburb": "",
        "externalId": "21"
    },
    "type": "matchInformation"
}

teams

This message type contains information about the teams and players involved in this game
type enum

The type of the message

teams
messageId integer

Unique identifier of the message being sent

teams array

An array of team records

teamNumber integer

The number of the team in the match, 1 or 2.

detail associativearray

teamName string(100)

The name of the team

isHomeCompetitor enum

Is this a 'home' match for this competitor.

0
No
1
Yes
teamNameInternational string(100)

The name of the team suitable for international purposes. Latin characters only.

teamId integer

Unique identifier for the team

externalId string

A unique ID for this team set by the owner of this league.

internationalReference string

A unique ID for this team set by the owner of this league.

teamNickname string(50)

A non-offical name of the team

teamCode string(3)

A three letter code for this team

teamCodeInternational string(3)

A three letter code for this team suitable for international purposes. Latin characters only.

teamNicknameInternational string(50)

A non-official name of the team suitable for international purposes. Latin characters only.

countryCode string(2)

The ISO 3166 two letter country code. Defaults to league value if blank

countryCodeIOC string(3)

The IOC three letter country code. Defaults to league value if blank

country string(100)

The country. Defaults to league value if blank

sportClass string(64)

Total team sport class value used for para-sports.

website string(150)

The website for this team

logo

Only present if this team a logo that has been uploaded.

associativearray

An associative array of files, where the key is the 'size name' of the file. See the 'size' parameter for valid options. Not all sizes may be available.

size enum

The name of the size

T1
75x75
S1
200x200
M1
400x400
L1
600x600
bytes integer

The size of the file in bytes

width integer

The width of the file in pixels

height integer

The height of the file in pixels

url url

The url for the image. The URL returned from this call is only valid for 5 hours and may change on subsequent calls.

players array

pno integer

The number of the player in the match. This is a sequence number not a jersey number.

personId integer

Unique identifier for the person

familyName string(50)

The family name of the person

firstName string(50)

The first name of the person

internationalFamilyName string(50)

The family name of the person suitable for international use. Latin characters only.

internationalFirstName string(50)

The first name of the person suitable for international use. Latin characters only.

scoreboardName string(50)

The name of the person suitable for Scoreboard

TVName string(50)

The name of the person suitable for TV or other media

nickName string(50)

A non-official name of the person

website string(150)

The website for this entity

dob date

Date of birth

Format is: YYYY-MM-DD
height double

The height of the person, in cms

sportClass string(64)

A value used to describe the Sport Class for para-sports.

externalId string(50)

A unique ID for this person set by the owner of this league.

internationalReference string(30)

A unique string assigned by the sport's international body for this person.

shirtNumber string

Player's shirt Number for the match.

playingPosition enum

Player's playing position for the match.

G
Goalie
D
Defender
F
Forward
C
Center
LW
Left Wing
RW
Right Wing
RD
Right Defender
LD
Left Defender
XD
Extra Defender
XF
Extra Forward
starter enum

Is the person a starter?

1
Yes
0
No (Default)
captain enum

Is the person the captain?

1
Yes
0
No (Default)
active enum

Is the person currently active/on the field of play?

1
Yes
0
No (Default)
nationalityCode string(2)

The ISO 3166 two letter nationality code

nationalityCodeIOC string(3)

The IOC three letter nationality code

nationality string(100)

The nationality of the person

photo

Only present if this person has a photo that has been uploaded.

associativearray

An associative array of files, where the key is the 'size name' of the file. See the 'size' parameter for valid options. Not all sizes may be available.

size enum

The name of the size

T1
75x75
S1
200x200
M1
400x400
L1
600x600
bytes integer

The size of the file in bytes

width integer

The width of the file in pixels

height integer

The height of the file in pixels

url url

The url for the image. The URL returned from this call is only valid for 5 hours and may change on subsequent calls.

startsAtGoal enum

Is the person started as goalie.

1
Yes
0
No (Default)
lineNumber int

Player line number

coach associativearray

DEPRECATED. Use teamOfficials instead.

personId integer

Unique identifier for the person

familyName string(50)

The family name of the person

firstName string(50)

The first name of the person

internationalFamilyName string(50)

The family name of the person suitable for international use. Latin characters only.

internationalFirstName string(50)

The first name of the person suitable for international use. Latin characters only.

scoreboardName string(50)

The name of the person suitable for Scoreboard

TVName string(50)

The name of the person suitable for TV or other media

nickName string(50)

A non-official name of the person

externalId string(50)

A unique ID for this person set by the owner of this league.

assistcoach1 associativearray

DEPRECATED. Use teamOfficials instead.

personId integer

Unique identifier for the person

familyName string(50)

The family name of the person

firstName string(50)

The first name of the person

internationalFamilyName string(50)

The family name of the person suitable for international use. Latin characters only.

internationalFirstName string(50)

The first name of the person suitable for international use. Latin characters only.

scoreboardName string(50)

The name of the person suitable for Scoreboard

TVName string(50)

The name of the person suitable for TV or other media

nickName string(50)

A non-official name of the person

externalId string(50)

A unique ID for this person set by the owner of this league.

assistcoach2 associativearray

DEPRECATED. Use teamOfficials instead.

personId integer

Unique identifier for the person

familyName string(50)

The family name of the person

firstName string(50)

The first name of the person

internationalFamilyName string(50)

The family name of the person suitable for international use. Latin characters only.

internationalFirstName string(50)

The first name of the person suitable for international use. Latin characters only.

scoreboardName string(50)

The name of the person suitable for Scoreboard

TVName string(50)

The name of the person suitable for TV or other media

nickName string(50)

A non-official name of the person

externalId string(50)

A unique ID for this person set by the owner of this league.

teamOfficials array

A list of team officials

personId integer

Unique identifier for the person

firstName string(100)

The first name of the official

familyName string(100)

The family name of the official

shirtNumber string(30)

Shirt number

  officialType enum

HEAD_COACH
Head Coach
ASSISTANT_COACH
Assistant Coach
MANAGER
Manager
TEAM_LEADER
Team Leader
EQUIPMENT_MANAGER
Equipment Manager
MEDICAL_STAFF
Medical Staff
PHYSIOTHERAPIST
Physiotherapist
externalId string(50)

A unique ID for this person set by the owner of this league.

Example

{
  "message": {
    "messageId": 29,
    "teams": [{
      "players": [{
        "active": 1,
        "pno": 1,
        "firstName": "Brandon",
        "personId": 424206,
        "shirtNumber": "3",
        "playingPosition": "G",
        "height": 0,
        "familyName": "Clark",
        "starter": 1,
        "captain": 0,
        "startsAtGoal": 1
      }, {
        "active": 1,
        "pno": 2,
        "firstName": "Tyler",
        "personId": 8775,
        "shirtNumber": "4",
        "playingPosition": "G",
        "height": 0,
        "familyName": "Bernardini",
        "starter": 1,
        "captain": 1
      }, {
        "active": 0,
        "pno": 3,
        "firstName": "William",
        "personId": 94332,
        "shirtNumber": "5",
        "playingPosition": "F\/C",
        "height": 0,
        "familyName": "Maynard",
        "starter": 0,
        "captain": 0
      }, {
        "active": 1,
        "pno": 4,
        "firstName": "Shane",
        "personId": 248176,
        "shirtNumber": "7",
        "playingPosition": "F",
        "height": 0,
        "familyName": "Walker",
        "starter": 1,
        "captain": 0
      }, {
        "active": 0,
        "pno": 5,
        "firstName": "Andrew",
        "personId": 6678,
        "shirtNumber": "8",
        "playingPosition": "F",
        "height": 0,
        "familyName": "Sullivan",
        "starter": 0,
        "captain": 0
      }, {
        "active": 0,
        "pno": 20,
        "firstName": "Sesan",
        "personId": 309075,
        "shirtNumber": "9",
        "playingPosition": "",
        "height": 0,
        "familyName": "Russell",
        "starter": 0,
        "captain": 0
      }, {
        "active": 0,
        "pno": 6,
        "firstName": "Josh",
        "personId": 562587,
        "shirtNumber": "10",
        "playingPosition": "G",
        "height": 0,
        "familyName": "Ward-Hibbert",
        "starter": 0,
        "captain": 0
      }, {
        "active": 0,
        "pno": 8,
        "firstName": "Harrison",
        "personId": 8540,
        "shirtNumber": "12",
        "playingPosition": "F",
        "height": 0,
        "familyName": "Gamble",
        "starter": 0,
        "captain": 0
      }, {
        "active": 0,
        "pno": 9,
        "firstName": "Conner",
        "personId": 6813,
        "shirtNumber": "13",
        "playingPosition": "PG",
        "height": 0,
        "familyName": "Washington",
        "starter": 0,
        "captain": 0
      }, {
        "active": 1,
        "pno": 11,
        "firstName": "Pierre",
        "personId": 54481,
        "shirtNumber": "15",
        "playingPosition": "F",
        "height": 0,
        "familyName": "Hampton",
        "starter": 1,
        "captain": 0
      }, {
        "active": 0,
        "pno": 12,
        "firstName": "Eric",
        "personId": 424208,
        "shirtNumber": "22",
        "playingPosition": "G",
        "height": 0,
        "familyName": "Robertson",
        "starter": 0,
        "captain": 0
      }, {
        "active": 0,
        "pno": 13,
        "firstName": "Andrew",
        "personId": 6695,
        "shirtNumber": "31",
        "playingPosition": "F",
        "height": 0,
        "familyName": "Thomson",
        "starter": 0,
        "captain": 0
      }, {
        "active": 1,
        "pno": 14,
        "firstName": "Taylor",
        "personId": 40287,
        "shirtNumber": "33",
        "playingPosition": "F",
        "height": 0,
        "familyName": "King",
        "starter": 1,
        "captain": 0
      }],
      "assistcoach2": {
        "firstName": "Mark",
        "personId": 8514,
        "familyName": "Jarram"
      },
      "assistcoach1": {
        "firstName": "Philip",
        "personId": 6756,
        "familyName": "Gleadell"
      },
      "teamNumber": 1,
      "coach": {
        "firstName": "Rob",
        "personId": 6670,
        "familyName": "Paternostro"
      },
      "details": {
        "teamName": "Leicester Riders",
        "teamCode": "LEI",
        "teamNickname": "Riders",
        "teamId": 1081
      }
    }, {
      "players": [{
        "active": 0,
        "pno": 1,
        "firstName": "Christian",
        "personId": 248173,
        "shirtNumber": "1",
        "playingPosition": "F",
        "height": 0,
        "familyName": "Behrens",
        "starter": 0,
        "captain": 0
      }, {
        "active": 0,
        "pno": 2,
        "firstName": "Joe",
        "personId": 480493,
        "shirtNumber": "3",
        "playingPosition": "",
        "height": 0,
        "familyName": "Hart",
        "starter": 0,
        "captain": 0
      }, {
        "active": 1,
        "pno": 3,
        "firstName": "Deandre",
        "personId": 424212,
        "shirtNumber": "6",
        "playingPosition": "G",
        "height": 0,
        "familyName": "Parks",
        "starter": 1,
        "captain": 0
      }, {
        "active": 0,
        "pno": 4,
        "firstName": "Danny",
        "personId": 94329,
        "shirtNumber": "8",
        "playingPosition": "G",
        "height": 0,
        "familyName": "Horta-Darrington",
        "starter": 0,
        "captain": 0
      }, {
        "active": 1,
        "pno": 5,
        "firstName": "Darius",
        "personId": 6690,
        "shirtNumber": "13",
        "playingPosition": "C",
        "height": 0,
        "familyName": "Defoe",
        "starter": 1,
        "captain": 0
      }, {
        "active": 1,
        "pno": 6,
        "firstName": "Scott",
        "personId": 8570,
        "shirtNumber": "14",
        "playingPosition": "F",
        "height": 0,
        "familyName": "Martin",
        "starter": 1,
        "captain": 0
      }, {
        "active": 1,
        "pno": 7,
        "firstName": "Fabulous",
        "personId": 6692,
        "shirtNumber": "20",
        "playingPosition": "G",
        "height": 0,
        "familyName": "Flournoy",
        "starter": 1,
        "captain": 0
      }, {
        "active": 0,
        "pno": 8,
        "firstName": "Andrew",
        "personId": 6808,
        "shirtNumber": "21",
        "playingPosition": "SG",
        "height": 0,
        "familyName": "Lasker",
        "starter": 0,
        "captain": 0
      }, {
        "active": 0,
        "pno": 9,
        "firstName": "Orlan",
        "personId": 263652,
        "shirtNumber": "23",
        "playingPosition": "F",
        "height": 0,
        "familyName": "Jackman",
        "starter": 0,
        "captain": 0
      }, {
        "active": 1,
        "pno": 10,
        "firstName": "Rahmon",
        "personId": 8653,
        "shirtNumber": "44",
        "playingPosition": "PG",
        "height": 0,
        "familyName": "Fletcher",
        "starter": 1,
        "captain": 1
      }],
      "assistcoach2": {
        "firstName": "Ian",
        "personId": 8724,
        "familyName": "Macleod"
      },
      "assistcoach1": {
        "firstName": "David",
        "personId": 6759,
        "familyName": "Forrester"
      },
      "teamNumber": 2,
      "coach": {
        "firstName": "Fabulous",
        "personId": 6692,
        "familyName": "Flournoy"
      },
      "details": {
        "teamName": "Esh Group Eagles Newcastle",
        "teamCode": "NEW",
        "teamNickname": "Eagles",
        "teamId": 1084
      }
    }],
    "type": "teams"
  }
}

officials

This message type contains information about the match officials assigned to the match
type enum

The type of the message

officials
messageId integer

Unique identifier of the message being sent

commissioner associativearray

DEPRECATED. Use matchOfficials property instead

personId integer

Unique identifier for the person

familyName string(50)

The family name of the person

firstName string(50)

The first name of the person

TVName string(50)

The name of the person suitable for TV or other media

nickName string(50)

A non-official name of the person

externalId string(50)

A unique ID for this person set by the owner of this league.

referee1 associativearray

DEPRECATED. Use matchOfficials property instead

personId integer

Unique identifier for the person

familyName string(50)

The family name of the person

firstName string(50)

The first name of the person

TVName string(50)

The name of the person suitable for TV or other media

nickName string(50)

A non-official name of the person

externalId string(50)

A unique ID for this person set by the owner of this league.

referee2 associativearray

DEPRECATED. Use matchOfficials property instead

personId integer

Unique identifier for the person

familyName string(50)

The family name of the person

firstName string(50)

The first name of the person

TVName string(50)

The name of the person suitable for TV or other media

nickName string(50)

A non-official name of the person

externalId string(50)

A unique ID for this person set by the owner of this league.

referee3 associativearray

DEPRECATED. Use matchOfficials property instead

personId integer

Unique identifier for the person

familyName string(50)

The family name of the person

firstName string(50)

The first name of the person

TVName string(50)

The name of the person suitable for TV or other media

nickName string(50)

A non-official name of the person

externalId string(50)

A unique ID for this person set by the owner of this league.

technicaldelegate associativearray

DEPRECATED. Use matchOfficials property instead

personId integer

Unique identifier for the person

familyName string(50)

The family name of the person

firstName string(50)

The first name of the person

TVName string(50)

The name of the person suitable for TV or other media

nickName string(50)

A non-official name of the person

externalId string(50)

A unique ID for this person set by the owner of this league.

statisticians array

An array of statisticians

firstName string(100)

The first name of the statistician

familyName string(100)

The family name of the statistician

statisticianId integer

The unique id given to this statistician

statisticianType enum

The job the statistician is performing for this match

OPERATOR
The person entering the statistics
CALLER
The person calling the statistics
matchOfficials array

A list of match officials

firstName string(100)

The first name of the official

familyName string(100)

The family name of the official

shirtNumber string(30)

Shirt number

personId integer

Unique id of the person

externalId string(50)

A unique ID for this person set by the owner of this league.

  officialType enum

Official Type

HEAD_COACH
Head Coach
ASSISTANT_COACH
Assistant Coach
REFEREE
Referee
TEAM_LEADER
Team Leader
MEDICAL_STAFF
Medical Staff
EQUIPMENT_MANAGER
Equipment manager
MANAGER
Manager
LINESMAN
Linesman
PHYSIOTHERAPIST
Physiotherapist

boxscore

This message type contains box score information.
type enum

The type of the message

boxscore
teams array

An array of teams

teamNumber integer

The number of the team in the match, 1 or 2.

total associativearray

players array

An array of players' boxscore data

pno integer

The number of the player in the match. This is a sequence number not a jersey number.

sAssists integer

Assists are attributed to up to two players of the scoring team who shot, passed or deflected the puck towards the scoring teammate.

sAssistsPowerPlay integer

Assists attributed to player of the scoring team who shot, passed or deflected the puck towards the team mate who scored a power play goal.

sAssistsShortHanded integer

Assists attributed to player of the scoring team who shot, passed or deflected the puck towards the team mate who scored a short handed goal.

sBlocks integer

How many blocks player did.

sBlocksReceived integer

Shot blocked and stopped by an opposing player.

sDrawsAsGoalkeeper integer

Goalkeeper is credited with a tie if game is tied.

sFaceoffs integer

Faceoffs are used to put the puck into play. One player from each team participates in a faceoff.

sFaceoffsLost integer

Player participating in a faceoff loses a faceoff when he does not get a possession of the puck.

sFaceoffsPercentage decimal

Calculated Field. Rate at which player wins faceoff draws.

$sFaceoffsWon / $sFaceoffs
sFaceoffsWon integer

Player participating in a faceoff wins a faceoff when he gains a possession of the puck.

sGoals integer

Goal is scored when the puck entirely crosses the goal line between the two goal posts and below the goal crossbar.

sGoalsAllowed integer

Goals scored against the goalkeeper.

sGoalsAllowedEmptyNet integer

Goals scored against the team while there was no goaltender in the net (empty net situation).

sGoalsAllowedPenalty integer

Penalty shots scored against a goaltender.

sGoalsAllowedPowerPlay integer

Power play goals scored against a goalkeeper.

sGoalsAllowedShortHanded integer

Short handed goals scored against goaltender.

sGoalsEmptyNet integer

Goal scored into a net with no goaltender.

sGoalsEvenStrength integer

Goal scored by a team in a situation when there are the same number of players on the ice for both teams.

sGoalsExtraAttacker integer

Goal scored by a team in a situation where the team has removed the goalie for an extra attacker.

sGoalsFirst integer

First goal of the game.

sGoalsGameTying integer

The last goal scored in a tie game.

sGoalsOvertime integer

Goal scored during an overtime period.

sGoalsPenalty integer

A goal scored as a result of penalty shot awarded.

sGoalsPenaltyDelayed integer

Goal scored during a delayed penalty situation.

sGoalsPowerPlay integer

A goal scored by a team playing in a power play situation (having player number on ice advantage).

sGoalsShortHanded integer

A goal scored by a team playing in a short handed situation (having player number on ice disadvantage).

sGoalsSuddenDeath integer

Sudden death is a form of competition where play ends as soon as one competitor is ahead of the other, with that competitor becoming the winner.

sGoalsUnassisted integer

Goal scored without any assists made.

sHatTricks integer

Three goals scored by the same player during one game.

sLossesAsGoalkeeper integer

If goalie lets in the game winning (losing) goal, he is credited with the loss. If the net is empty, the goalie is the one who just left.

sMinutesAsGoalkeeper decimal

Number of minutes played by the goalkeeper during the game.

sPenalties integer

Punishment for an infringement of the rules. Most penalties are enforced by sending the offending player to a penalty box for a set period of time.

sPenaltiesDelayed integer

Penalty scored by a team not in the possession of the puck. The game is stopped after the team that has fouled gains the possession.

sPenaltiesDisqualification integer

Disqualification penalty results in automatic suspension for the number of games equal to the number of game disqualification penalties the player has been assessed in the season.

sPenaltiesGameMisconduct integer

A game misconduct penalty involves the suspension of player for the balance of the game.

sPenaltiesGoalie integer

Penalty assessed to a goalie.

sPenaltiesGrossMisconduct integer

Not used anymore - required for backwards compatibility.

sPenaltiesMajor integer

5 minute duration penalty given for infraction of game rules.

sPenaltiesMatch integer

Not used anymore - required for backwards compatibility.

sPenaltiesMinor integer

2 minute long penalty for rule infraction.

sPenaltiesMisconduct integer

10 minute long penalty given for game rule infraction.

sPenaltyMinutes integer

Minutes the player has been removed from the game due to rule infractions.

sPenaltyShots integer

A penalty shot is awarded to a player who is deemed to have lost a clear scoring chance by way of a penalty infraction by an opposing player.

sPenaltyShotsGoalieSaves integer

Penalty shot saved by the goalie.

sPenaltyShotsMade integer

Goal scored on an awarded penalty shot.

sPenaltyShotsMissed integer

Unsuccessful players attempt to score a goal on an awarded penalty shot.

sPenaltyShotsOffTarget integer

Penalty shot that has missed the net.

sPenaltyShotsPipe integer

Penalty shot that hit the pipes of the net.

sPenaltyTypeBenchMinor integer

Penalty bench minor

sPenaltyTypeBoarding integer

Penalty called when an offending player pushes, trips or checks an opposing player violently into the boards of the hockey rink.

sPenaltyTypeButtEnding integer

Penalty called for butt-ending an opponent.

sPenaltyTypeChangingGoaltenderInterference integer

Penalty changing goaltender interference

sPenaltyTypeCharging integer

Penalty called for violently checking an opponent in any manner.

sPenaltyTypeChargingTheGoaltender integer

Penalty charging the goaltender

sPenaltyTypeClipping integer

Penalty called for hitting an opposing player at or below the other player's knees.

sPenaltyTypeContactToTheHead integer

Penalty called for the action of a player contacting an opponent in the head, face or neck with any part of the player 's body, equipment or stick.

sPenaltyTypeCrossChecking integer

Penalty called for cross-checking an opponent.

sPenaltyTypeDelayingTheGame integer

Penalty called for holding the puck in any manner for the purpose of delaying the game.

sPenaltyTypeDirectContactToTheHead integer

Penalty - Direct Contact to the Head

sPenaltyTypeDisplaceTheNet integer

Penalty - Displace the Net

sPenaltyTypeDisqualification integer

Penalty Type Disqualification

sPenaltyTypeDivingEmbellishment integer

Penalty called for attempting to draw a penalty through any exaggerated or deceitful action.

sPenaltyTypeElbowing integer

Penalty called when a player delivers a check with the elbow extended or uses the elbow as a means to create separation with the opponent.

sPenaltyTypeEquipment integer

Penalty called for adjusting clothing, equipment, skates or sticks.

sPenaltyTypeFaceMask integer

Penalty called for intentionally placing or pushing with the open hand on the face mask.

sPenaltyTypeFaceoffViolation integer

Penalty - Faceoff Violation

sPenaltyTypeFighting integer

Penalty called for fighting an opponent, participating in a fight

sPenaltyTypeFightingPunching integer

Penalty called for fighting an opponent, participating in a fight or throwing a punch.

sPenaltyTypeForfeitOfGame integer

Penalty called for deliberate change of submitted eligibility list or refusing to start the game.

sPenaltyTypeGoalkeeperHandlingThePuck integer

Penalty called for goalkeeper handling the puck.

sPenaltyTypeGoalkeeperInterference integer

Penalty called for impairing goalkeeper's ability to defend a goal.

sPenaltyTypeHandlingThePuck integer

Penalty called for player handling the puck.

sPenaltyTypeHeadButting integer

Penalty called for head butting an opponent with the face mask or helmet.

sPenaltyTypeHighSticking integer

Penalty called for carrying sticks above the height of the goal cage.

sPenaltyTypeHitAfterWhistle integer

Penalty - Hit after Whistle

sPenaltyTypeHittingFromBehind integer

Penalty called for pushing, charging, cross-checking or body checking an opponent from behind in open ice.

sPenaltyTypeHolding integer

Penalty called for holding or grabbing an opponent in any manner.

sPenaltyTypeHoldingTheStick integer

Penalty called for holding an opponent's stick in any manner.

sPenaltyTypeHooking integer

Penalty called for impeding the progress of an opponent by hooking with the stick.

sPenaltyTypeIllegalSubstitution integer

Penalty called for a player illegally entering a game.

sPenaltyTypeIndirectContactToTheHead integer

Penalty - Indirect Contact to the Head

sPenaltyTypeInterference integer

Penalty called for interfering with or impeding the progress of an opponent who is not in possession of the puck.

sPenaltyTypeKicking integer

Penalty called for kicking another player.

sPenaltyTypeKneeing integer

Penalty called for using a knee in such a manner as to foul an opponent.

sPenaltyTypeLeavingTheBench integer

Penalty called for leaving the player's or penalty bench during an altercation.

sPenaltyTypeMisconduct integer

Penalty misconduct

sPenaltyTypeObstruction integer

Penalty called for interfering with a non-puck carrying player.

sPenaltyTypePrematureSubstitution integer

Penalty called for premature substitutions.

sPenaltyTypeRefusingToPlayThePuck integer

Penalty called for refusing to keep the puck in motion.

sPenaltyTypeRefusingToStartThePlay integer

Penalty called for refusing to obey the decision of the referee.

sPenaltyTypeRoughing integer

Penalty called for pushing or shoving an opponent with unnecessary force.

sPenaltyTypeRoughingAfterWhistle integer

Penalty roughing after the whistle

sPenaltyTypeRoughingTheGoaltender integer

Penalty roughing the goaltender

sPenaltyTypeShotAfterWhistle integer

Penalty - Shot after Whistle

sPenaltyTypeSlashing integer

Penalty called for slashing an opponent with the stick.

sPenaltyTypeSlashingTheGoalie integer

Penalty - Slashing the Goalie

sPenaltyTypeSlewFooting integer

Penalty called for using feet to knock an opponent's skates out from under him with a kicking or leg dragging motion from behind.

sPenaltyTypeSpearing integer

Penalty called for spearing an opponent.

sPenaltyTypeThrowingEquipment integer

Penalty called for throwing a stick or portion of the stick from the playing surface.

sPenaltyTypeTooManyPlayers integer

Penalty called for a team having too many players on the ice.

sPenaltyTypeTripping integer

Penalty called for causing another player to trip or fall.

sPenaltyTypeUnsportsmanlikeConduct integer

Penalty called for using an abusive language, obscene gestures, threatening language or gestures or other unsportsmanlike conduct.

sPercentageShooting decimal

Calculated Field. Measures the rate in which a player shots on goal result in goals for the player.

$sGoals / $sShotsOnTarget
sPercentageShootingPowerPlay decimal

Calculated Field. A statistic that measures the rate in which a player shots on goal result in goals for power play situations.

$sGoalsPowerPlay / $sShotsOnTargetPowerPlay
sPercentageShootingShortHanded decimal

Calculated Field. A statistic that measures the rate in which a player shots on goal result in goals for short handed play situations.

$sGoalsShortHanded / $sShotsOnTargetShortHanded
sPlusMinus integer

Calculated Field. Measures player's impact on the game, represented by the difference between their team's total scoring versus their opponent's when the player is was on the game.

($sPlusMinusPlus * 1) + ($sPlusMinusMinus * (-1))
sPlusMinusMinus integer

Statistic used to measure a player's impact on the game, represented by the difference between their team's total scoring versus their opponent's when the player is in the game.

sPlusMinusPlus integer

Statistic used to measure a player's impact on the game, represented by the difference between their team's total scoring versus their opponent's when the player is in the game.

sPoints integer

Calculated Field. A point is awarded to a player for each goal scored or assist earned.

$sGoals + $sAssists
sPointsPowerPlay integer

Calculated Field. A point is awarded to a player for each power play goal scored or power play assist earned.

$sGoalsPowerPlay + $sAssistsPowerPlay
sPointsShortHanded integer

Calculated Field. A point is awarded to a player for each short handed goal scored or short handed assist earned.

$sGoalsShortHanded + $sAssistsShortHanded
sSaves integer

Save is credited to goalkeeper who stops the puck from entering the net.

sSavesPercentage decimal

Calculated Field. A statistic in hockey that measures the rate at which a goalie generates saves compared to shots on goal.

$sSaves / ($sGoalsAllowed + $sSaves)
sShootouts integer

If the score remains tied after an overtime period, the subsequent shootout consists of a set number of players from each team taking penalty shots.

sShootoutsGoalsAllowed integer

Shootout goal allowed is credited to a goalie who lets in a shootout goal (the stat is not included in the goals allowed for a goalie).

sShootoutsMade integer

Shootouts that player has successfully scored.

sShootoutsMissed integer

Shootouts player has attempted.

sShots integer

Player directing the puck towards the net in an attempt to score a goal.

sShotsOffTarget integer

A shot off target is a shot that goes over or wide of the goal without making contact with another player.

sShotsOnPipe integer

Shot on pipe is a shot that directly hits the frame of the goal and a goal is not scored.

sShotsOnTarget integer

A shot on target is a shot that directs the puck towards the net and either goes into the net for a goal (and is recorded as a goal) or is stopped by the goaltender for a save or is blocked by opposing player.

sShotsOnTargetPowerPlay integer

Shots on target made while playing in power play situation.

sShotsOnTargetShortHanded integer

Shots on target made while playing in short handed situation.

sShutouts integer

Shutout is credited to a goaltender who successfully stops the other team from scoring during the entire game.

sStars integer

Star player of the game selected by the referees.

sWinningGoals integer

After the final score has been determined, the goal which leaves the winning team one goal ahead of its opponent is the game-winning goal (example: if Team A beats Team B 8-3, the player scoring the fourth goal for Team A receives credit).

sWinsAsGoalkeeper integer

If goalie is in the net when his team scores the game winning goal, he is credited with the win. If the net is empty, the goalie is the one who just left.

team associativearray

The team's boxscore statistics

sAssists integer

Assists are attributed to up to two players of the scoring team who shot, passed or deflected the puck towards the scoring teammate.

sAssistsPowerPlay integer

Assists attributed to player of the scoring team who shot, passed or deflected the puck towards the team mate who scored a power play goal.

sAssistsShortHanded integer

Assists attributed to player of the scoring team who shot, passed or deflected the puck towards the team mate who scored a short handed goal.

sBlocks integer

How many blocks team did.

sBlocksReceived integer

Shot blocked and stopped by an opposing player.

sDrawsAsGoalkeeper integer

Goalkeeper is credited with a tie if game is tied.

sFaceoffs integer

Faceoffs are used to put the puck into play. One player from each team participates in a faceoff.

sFaceoffsLost integer

Player participating in a faceoff loses a faceoff when he does not get a possession of the puck.

sFaceoffsPercentage decimal

Calculated Field. Rate at which team wins faceoff draws.

$sFaceoffsWon / $sFaceoffs
sFaceoffsWon integer

Player participating in a faceoff wins a faceoff when he gains a possession of the puck.

sGoals integer

Goal is scored when the puck entirely crosses the goal line between the two goal posts and below the goal crossbar.

sGoalsAgainstAverageTeam decimal

Calculated Field. Number of goals a goaltender allows per 60 minutes of playing time.

(sGoalsAllowed)/((sMinutesAsGoalkeeper)/60)*60
sGoalsAllowed integer

Goals scored against the goaltender.

sGoalsAllowedEmptyNet integer

Goals scored against the team while there was no goaltender in the net (empty net situation).

sGoalsAllowedPenalty integer

Penalty shots scored against a goaltender.

sGoalsAllowedPowerPlay integer

Power play goals scored against a goalkeeper.

sGoalsAllowedShortHanded integer

Short handed goals scored against goaltender.

sGoalsEmptyNet integer

Goal scored into a net with no goaltender.

sGoalsEvenStrength integer

Goal scored by a team in a situation when there are the same number of players on the ice for both teams.

sGoalsExtraAttacker integer

Goal scored by a team in a situation where the team has removed the goalie for an extra attacker.

sGoalsFirst integer

First goal of the game.

sGoalsGameTying integer

The last goal scored in a tie game.

sGoalsOvertime integer

Goal scored during an overtime period.

sGoalsPenalty integer

A goal scored as a result of penalty shot awarded.

sGoalsPenaltyDelayed integer

Goal scored during a delayed penalty situation.

sGoalsPowerPlay integer

A goal scored by a team playing in a power play situation (having player number on ice advantage).

sGoalsShortHanded integer

A goal scored by a team playing in a short handed situation (having player number on ice disadvantage).

sGoalsUnassisted integer

Goal scored without any assists made.

sHatTricks integer

Three goals scored by the same player during one game.

sIcings integer

Occurs when a player shoots the puck from behind the center red line, across the opposing team's goal line, and the puck remains untouched. Game restarts with a faceoff.

sLossesAsGoalkeeper integer

If goalie lets in the game winning (losing) goal, he is credited with the loss. If the net is empty, the goalie is the one who just left.

sMinutesAsGoalkeeper decimal

Number of minutes played by the goalkeeper during the game.

sMinutesEmptyNet decimal

Number of minutes team played with empty net

sMinutesGoalieTotal decimal

Calculated Field. Total number of minutes played by goalkeeper and net being empty during the game.

$sMinutesAsGoalkeeper + $sMinutesEmptyNet
sOffsides integer

Offside is called when a offensive player who enters the attacking zone prior to the puck entering it. Game restarts with a faceoff.

sPenalties integer

Punishment for an infringement of the rules. Most penalties are enforced by sending the offending player to a penalty box for a set period of time.

sPenaltiesBench integer

Penalties Bench

sPenaltiesDelayed integer

Penalty scored by a team not in the possession of the puck. The game is stopped after the team that has fouled gains the possession.

sPenaltiesDisqualification integer

Disqualification penalty results in automatic suspension for the number of games equal to the number of game disqualification penalties the player has been assessed in the season.

sPenaltiesGameMisconduct integer

A game misconduct penalty involves the suspension of player for the balance of the game.

sPenaltiesGoalie integer

Penalty assessed to a goalie.

sPenaltiesGrossMisconduct integer

Not used anymore - required for backwards compatibility.

sPenaltiesMajor integer

5 minute duration penalty given for infraction of game rules.

sPenaltiesMatch integer

Not used anymore - required for backwards compatibility.

sPenaltiesMinor integer

2 minute long penalty for rule infraction.

sPenaltiesMisconduct integer

10 minute long penalty given for game rule infraction.

sPenaltyMinutes integer

Minutes the player has been removed from the game due to rule infractions.

sPenaltyMinutesBench integer

Penalty Bench Minutes

sPenaltyShots integer

A penalty shot is awarded to a player who is deemed to have lost a clear scoring chance by way of a penalty infraction by an opposing player.

sPenaltyShotsGoalieSaves integer

Penalty shot saved by the goalie.

sPenaltyShotsMade integer

Goal scored on an awarded penalty shot.

sPenaltyShotsMissed integer

Unsuccessful player's attempt to score a goal on an awarded penalty shot.

sPenaltyShotsOffTarget integer

Penalty shot that has missed the net.

sPenaltyShotsPipe integer

Penalty shot that hit the pipes of the net.

sPenaltyTypeBenchMinor integer

Penalty bench minor

sPenaltyTypeBoarding integer

Penalty called when an offending player pushes, trips or checks an opposing player violently into the boards of the hockey rink.

sPenaltyTypeButtEnding integer

Penalty called for butt-ending an opponent.

sPenaltyTypeChangingGoaltenderInterference integer

Penalty changing goaltender interference

sPenaltyTypeCharging integer

Penalty called for violently checking an opponent in any manner.

sPenaltyTypeChargingTheGoaltender integer

Penalty charging the goaltender

sPenaltyTypeClipping integer

Penalty called for hitting an opposing player at or below the other player's knees.

sPenaltyTypeContactToTheHead integer

Penalty called for the action of a player contacting an opponent in the head, face or neck with any part of the player 's body, equipment or stick.

sPenaltyTypeCrossChecking integer

Penalty called for cross-checking an opponent.

sPenaltyTypeDelayingTheGame integer

Penalty called for holding the puck in any manner for the purpose of delaying the game.

sPenaltyTypeDirectContactToTheHead integer

Penalty - Direct Contact to the Head

sPenaltyTypeDisplaceTheNet integer

Penalty - Displace the Net

sPenaltyTypeDisqualification integer

Penalty Type Disqualification

sPenaltyTypeDivingEmbellishment integer

Penalty called for attempting to draw a penalty through any exaggerated or deceitful action.

sPenaltyTypeElbowing integer

Penalty called when a player delivers a check with the elbow extended or uses the elbow as a means to create separation with the opponent.

sPenaltyTypeEquipment integer

Penalty called for adjusting clothing, equipment, skates or sticks.

sPenaltyTypeFaceMask integer

Penalty called for intentionally placing or pushing with the open hand on the face mask.

sPenaltyTypeFaceoffViolation integer

Penalty - Faceoff Violation

sPenaltyTypeFighting integer

Penalty called for fighting an opponent, participating in a fight

sPenaltyTypeFightingPunching integer

Penalty called for fighting an opponent, participating in a fight or throwing a punch.

sPenaltyTypeForfeitOfGame integer

Penalty called for deliberate change of submitted eligibility list or refusing to start the game.

sPenaltyTypeGoalkeeperHandlingThePuck integer

Penalty called for goalkeeper handling the puck.

sPenaltyTypeGoalkeeperInterference integer

Penalty called for impairing goalkeeper's ability to defend a goal.

sPenaltyTypeHandlingThePuck integer

Penalty called for player handling the puck.

sPenaltyTypeHeadButting integer

Penalty called for head butting an opponent with the face mask or helmet.

sPenaltyTypeHighSticking integer

Penalty called for carrying sticks above the height of the goal cage.

sPenaltyTypeHitAfterWhistle integer

Penalty - Hit after Whistle

sPenaltyTypeHittingFromBehind integer

Penalty called for pushing, charging, cross-checking or boddy checking an opponent from behind in open ice.

sPenaltyTypeHolding integer

Penalty called for holding or grabbing an opponent in any manner.

sPenaltyTypeHoldingTheStick integer

Penalty called for holding an opponent's stick in any manner.

sPenaltyTypeHooking integer

Penalty called for impeding the progress of an opponent by hooking with the stick.

sPenaltyTypeIllegalSubstitution integer

Penalty called for a player illegally entering a game.

sPenaltyTypeIndirectContactToTheHead integer

Penalty - Indirect Contact to the Head

sPenaltyTypeInterference integer

Penalty called for interfering with or impeding the progress of an opponent who is not in possession of the puck.

sPenaltyTypeKicking integer

Penalty called for kicking another player.

sPenaltyTypeKneeing integer

Penalty called for using a knee in such a manner as to foul an opponent.

sPenaltyTypeLeavingTheBench integer

Penalty called for leaving the player's or penalty bench during an altercation.

sPenaltyTypeLineupRosterViolation integer

Penalty Lineup/Roster violation

sPenaltyTypeMisconduct integer

Penalty misconduct

sPenaltyTypeObstruction integer

Penalty called for interfering with a non-puck carrying player.

sPenaltyTypePrematureSubstitution integer

Penalty called for premature substitutions.

sPenaltyTypeRefusingToPlayThePuck integer

Penalty called for refusing to keep the puck in motion.

sPenaltyTypeRefusingToStartThePlay integer

Penalty called for refusing to obey the decision of the referee.

sPenaltyTypeRoughing integer

Penalty called for pushing or shoving an opponent with unnecessary force.

sPenaltyTypeRoughingAfterWhistle integer

Penalty roughing after the whistle

sPenaltyTypeRoughingTheGoaltender integer

Penalty roughing the goaltender

sPenaltyTypeShotAfterWhistle integer

Penalty - Shot after Whistle

sPenaltyTypeSlashing integer

Penalty called for slashing an opponent with the stick.

sPenaltyTypeSlashingTheGoalie integer

Penalty - Slashing the Goalie

sPenaltyTypeSlewFooting integer

Penalty called for using feet to knock an opponent's skates out from under him with a kicking or leg dragging motion from behind.

sPenaltyTypeSpearing integer

Penalty called for spearing an opponent.

sPenaltyTypeThrowingEquipment integer

Penalty called for throwing a stick or portion of the stick from the playing surface.

sPenaltyTypeTooManyPlayers integer

Penalty called for a team having too many players on the ice.

sPenaltyTypeTripping integer

Penalty called for causing another player to trip or fall.

sPenaltyTypeUnsportsmanlikeConduct integer

Penalty called for using an abusive language, obscene gestures, threatening language or gestures or other unsportsmanlike conduct.

sPercentageShooting decimal

Calculated Field. Measures the rate in which a player shots on goal result in goals for the player.

$sGoals / $sShotsOnTarget
sPercentageShootingPowerPlay decimal

Calculated Field. A statistic that measures the rate in which a player shots on goal result in goals for power play situations.

$sGoalsPowerPlay / $sShotsOnTargetPowerPlay
sPercentageShootingShortHanded decimal

Calculated Field. A statistic that measures the rate in which a player shots on goal result in goals for short handed play situations.

$sGoalsShortHanded / $sShotsOnTargetShortHanded
sPlusMinus integer

Calculated Field. Measures player's impact on the game, represented by the difference between their team's total scoring versus their opponent's when the player is was on the game.

($sPlusMinusPlus * 1) + ($sPlusMinusMinus * (-1))
sPlusMinusMinus integer

Statistic used to measure a player's impact on the game, represented by the difference between their team's total scoring versus their opponent's when the player is in the game.

sPlusMinusPlus integer

Statistic used to measure a player's impact on the game, represented by the difference between their team's total scoring versus their opponent's when the player is in the game.

sPowerPlayConversionPercent decimal

Calculated Field. Shows how effectively team uses power play opportunities; calculated by dividing power play goals by power play opportunities.

$sGoalsPowerPlay / $sPowerPlays
sPowerPlayOpportunities integer

Opportunities to score a goal during a power play.

sPowerPlays integer

Team is said to be on a power play when at least one opposing player is serving a penalty, and the team has a numerical advantage on the ice.

sSaves integer

Save is credited to goalkeeper who stops the puck from entering the net.

sSavesPercentage decimal

Calculated Field. A statistic in hockey that measures the rate at which a goalie generates saves compared to shots on goal.

$sSaves / ($sGoalsAllowed + $sSaves)
sShootouts integer

If the score remains tied after an overtime period, the subsequent shootout consists of a set number of players from each team taking penalty shots.

sShootoutsGoalsAllowed integer

Shootout goal allowed is credited to a goalie who lets in a shootout goal (the stat is not included in the goals allowed for a goalie).

sShootoutsMade integer

Shootouts that player has successfully scored.

sShootoutsMissed integer

Shootouts player has attempted.

sShots integer

Player directing the puck towards the net in an attempt to score a goal.

sShotsOffTarget integer

A shot off target is a shot that goes over or wide of the goal without making contact with another player.

sShotsOnPipe integer

Shot on pipe is a shot that directly hits the frame of the goal and a goal is not scored.

sShotsOnTarget integer

A shot on target is a shot that directs the puck towards the net and either goes into the net for a goal (and is recorded as a goal) or is stopped by the goaltender for a save or is blocked by opposing player.

sShotsOnTargetPowerPlay integer

Shots on target made while playing in power play situation.

sShotsOnTargetShortHanded integer

Shots on target made while playing in short handed situation.

sShutouts integer

Shutout is credited to a goaltender who successfully stops the other team from scoring during the entire game.

sWinningGoals integer

After the final score has been determined, the goal which leaves the winning team one goal ahead of its opponent is the game-winning goal (example: if Team A beats Team B 8-3, the player scoring the fourth goal for Team A receives credit).

sWinsAsGoalkeeper integer

If goalie is in the net when his team scores the game winning goal, he is credited with the win. If the net is empty, the goalie is the one who just left.

periods array

An array of periods. Optionally depending on types parameter

period integer

What period of the match is this statistic related to. 0 is valid and represents the value for the total match. Overtime periods should start at 1.

periodType enum

The type of period

REGULAR
(Default)
OVERTIME
SHOOTOUT
players array

An array of players' boxscore data

pno integer

The number of the player in the match. This is a sequence number not a jersey number.

sAssists integer

Assists are attributed to up to two players of the scoring team who shot, passed or deflected the puck towards the scoring teammate.

sAssistsPowerPlay integer

Assists attributed to player of the scoring team who shot, passed or deflected the puck towards the team mate who scored a power play goal.

sAssistsShortHanded integer

Assists attributed to player of the scoring team who shot, passed or deflected the puck towards the team mate who scored a short handed goal.

sBlocks integer

How many blocks player did.

sBlocksReceived integer

Shot blocked and stopped by an opposing player.

sDrawsAsGoalkeeper integer

Goalkeeper is credited with a tie if game is tied.

sFaceoffs integer

Faceoffs are used to put the puck into play. One player from each team participates in a faceoff.

sFaceoffsLost integer

Player participating in a faceoff loses a faceoff when he does not get a possession of the puck.

sFaceoffsPercentage decimal

Calculated Field. Rate at which player wins faceoff draws.

$sFaceoffsWon / $sFaceoffs
sFaceoffsWon integer

Player participating in a faceoff wins a faceoff when he gains a possession of the puck.

sGoals integer

Goal is scored when the puck entirely crosses the goal line between the two goal posts and below the goal crossbar.

sGoalsAllowed integer

Goals scored against the goalkeeper.

sGoalsAllowedEmptyNet integer

Goals scored against the team while there was no goaltender in the net (empty net situation).

sGoalsAllowedPenalty integer

Penalty shots scored against a goaltender.

sGoalsAllowedPowerPlay integer

Power play goals scored against a goalkeeper.

sGoalsAllowedShortHanded integer

Short handed goals scored against goaltender.

sGoalsEmptyNet integer

Goal scored into a net with no goaltender.

sGoalsEvenStrength integer

Goal scored by a team in a situation when there are the same number of players on the ice for both teams.

sGoalsExtraAttacker integer

Goal scored by a team in a situation where the team has removed the goalie for an extra attacker.

sGoalsFirst integer

First goal of the game.

sGoalsGameTying integer

The last goal scored in a tie game.

sGoalsOvertime integer

Goal scored during an overtime period.

sGoalsPenalty integer

A goal scored as a result of penalty shot awarded.

sGoalsPenaltyDelayed integer

Goal scored during a delayed penalty situation.

sGoalsPowerPlay integer

A goal scored by a team playing in a power play situation (having player number on ice advantage).

sGoalsShortHanded integer

A goal scored by a team playing in a short handed situation (having player number on ice disadvantage).

sGoalsSuddenDeath integer

Sudden death is a form of competition where play ends as soon as one competitor is ahead of the other, with that competitor becoming the winner.

sGoalsUnassisted integer

Goal scored without any assists made.

sHatTricks integer

Three goals scored by the same player during one game.

sLossesAsGoalkeeper integer

If goalie lets in the game winning (losing) goal, he is credited with the loss. If the net is empty, the goalie is the one who just left.

sMinutesAsGoalkeeper decimal

Number of minutes played by the goalkeeper during the game.

sPenalties integer

Punishment for an infringement of the rules. Most penalties are enforced by sending the offending player to a penalty box for a set period of time.

sPenaltiesDelayed integer

Penalty scored by a team not in the possession of the puck. The game is stopped after the team that has fouled gains the possession.

sPenaltiesDisqualification integer

Disqualification penalty results in automatic suspension for the number of games equal to the number of game disqualification penalties the player has been assessed in the season.

sPenaltiesGameMisconduct integer

A game misconduct penalty involves the suspension of player for the balance of the game.

sPenaltiesGoalie integer

Penalty assessed to a goalie.

sPenaltiesGrossMisconduct integer

Not used anymore - required for backwards compatibility.

sPenaltiesMajor integer

5 minute duration penalty given for infraction of game rules.

sPenaltiesMatch integer

Not used anymore - required for backwards compatibility.

sPenaltiesMinor integer

2 minute long penalty for rule infraction.

sPenaltiesMisconduct integer

10 minute long penalty given for game rule infraction.

sPenaltyMinutes integer

Minutes the player has been removed from the game due to rule infractions.

sPenaltyShots integer

A penalty shot is awarded to a player who is deemed to have lost a clear scoring chance by way of a penalty infraction by an opposing player.

sPenaltyShotsGoalieSaves integer

Penalty shot saved by the goalie.

sPenaltyShotsMade integer

Goal scored on an awarded penalty shot.

sPenaltyShotsMissed integer

Unsuccessful players attempt to score a goal on an awarded penalty shot.

sPenaltyShotsOffTarget integer

Penalty shot that has missed the net.

sPenaltyShotsPipe integer

Penalty shot that hit the pipes of the net.

sPenaltyTypeBenchMinor integer

Penalty bench minor

sPenaltyTypeBoarding integer

Penalty called when an offending player pushes, trips or checks an opposing player violently into the boards of the hockey rink.

sPenaltyTypeButtEnding integer

Penalty called for butt-ending an opponent.

sPenaltyTypeChangingGoaltenderInterference integer

Penalty changing goaltender interference

sPenaltyTypeCharging integer

Penalty called for violently checking an opponent in any manner.

sPenaltyTypeChargingTheGoaltender integer

Penalty charging the goaltender

sPenaltyTypeClipping integer

Penalty called for hitting an opposing player at or below the other player's knees.

sPenaltyTypeContactToTheHead integer

Penalty called for the action of a player contacting an opponent in the head, face or neck with any part of the player 's body, equipment or stick.

sPenaltyTypeCrossChecking integer

Penalty called for cross-checking an opponent.

sPenaltyTypeDelayingTheGame integer

Penalty called for holding the puck in any manner for the purpose of delaying the game.

sPenaltyTypeDirectContactToTheHead integer

Penalty - Direct Contact to the Head

sPenaltyTypeDisplaceTheNet integer

Penalty - Displace the Net

sPenaltyTypeDisqualification integer

Penalty Type Disqualification

sPenaltyTypeDivingEmbellishment integer

Penalty called for attempting to draw a penalty through any exaggerated or deceitful action.

sPenaltyTypeElbowing integer

Penalty called when a player delivers a check with the elbow extended or uses the elbow as a means to create separation with the opponent.

sPenaltyTypeEquipment integer

Penalty called for adjusting clothing, equipment, skates or sticks.

sPenaltyTypeFaceMask integer

Penalty called for intentionally placing or pushing with the open hand on the face mask.

sPenaltyTypeFaceoffViolation integer

Penalty - Faceoff Violation

sPenaltyTypeFighting integer

Penalty called for fighting an opponent, participating in a fight

sPenaltyTypeFightingPunching integer

Penalty called for fighting an opponent, participating in a fight or throwing a punch.

sPenaltyTypeForfeitOfGame integer

Penalty called for deliberate change of submitted eligibility list or refusing to start the game.

sPenaltyTypeGoalkeeperHandlingThePuck integer

Penalty called for goalkeeper handling the puck.

sPenaltyTypeGoalkeeperInterference integer

Penalty called for impairing goalkeeper's ability to defend a goal.

sPenaltyTypeHandlingThePuck integer

Penalty called for player handling the puck.

sPenaltyTypeHeadButting integer

Penalty called for head butting an opponent with the face mask or helmet.

sPenaltyTypeHighSticking integer

Penalty called for carrying sticks above the height of the goal cage.

sPenaltyTypeHitAfterWhistle integer

Penalty - Hit after Whistle

sPenaltyTypeHittingFromBehind integer

Penalty called for pushing, charging, cross-checking or body checking an opponent from behind in open ice.

sPenaltyTypeHolding integer

Penalty called for holding or grabbing an opponent in any manner.

sPenaltyTypeHoldingTheStick integer

Penalty called for holding an opponent's stick in any manner.

sPenaltyTypeHooking integer

Penalty called for impeding the progress of an opponent by hooking with the stick.

sPenaltyTypeIllegalSubstitution integer

Penalty called for a player illegally entering a game.

sPenaltyTypeIndirectContactToTheHead integer

Penalty - Indirect Contact to the Head

sPenaltyTypeInterference integer

Penalty called for interfering with or impeding the progress of an opponent who is not in possession of the puck.

sPenaltyTypeKicking integer

Penalty called for kicking another player.

sPenaltyTypeKneeing integer

Penalty called for using a knee in such a manner as to foul an opponent.

sPenaltyTypeLeavingTheBench integer

Penalty called for leaving the player's or penalty bench during an altercation.

sPenaltyTypeMisconduct integer

Penalty misconduct

sPenaltyTypeObstruction integer

Penalty called for interfering with a non-puck carrying player.

sPenaltyTypePrematureSubstitution integer

Penalty called for premature substitutions.

sPenaltyTypeRefusingToPlayThePuck integer

Penalty called for refusing to keep the puck in motion.

sPenaltyTypeRefusingToStartThePlay integer

Penalty called for refusing to obey the decision of the referee.

sPenaltyTypeRoughing integer

Penalty called for pushing or shoving an opponent with unnecessary force.

sPenaltyTypeRoughingAfterWhistle integer

Penalty roughing after the whistle

sPenaltyTypeRoughingTheGoaltender integer

Penalty roughing the goaltender

sPenaltyTypeShotAfterWhistle integer

Penalty - Shot after Whistle

sPenaltyTypeSlashing integer

Penalty called for slashing an opponent with the stick.

sPenaltyTypeSlashingTheGoalie integer

Penalty - Slashing the Goalie

sPenaltyTypeSlewFooting integer

Penalty called for using feet to knock an opponent's skates out from under him with a kicking or leg dragging motion from behind.

sPenaltyTypeSpearing integer

Penalty called for spearing an opponent.

sPenaltyTypeThrowingEquipment integer

Penalty called for throwing a stick or portion of the stick from the playing surface.

sPenaltyTypeTooManyPlayers integer

Penalty called for a team having too many players on the ice.

sPenaltyTypeTripping integer

Penalty called for causing another player to trip or fall.

sPenaltyTypeUnsportsmanlikeConduct integer

Penalty called for using an abusive language, obscene gestures, threatening language or gestures or other unsportsmanlike conduct.

sPercentageShooting decimal

Calculated Field. Measures the rate in which a player shots on goal result in goals for the player.

$sGoals / $sShotsOnTarget
sPercentageShootingPowerPlay decimal

Calculated Field. A statistic that measures the rate in which a player shots on goal result in goals for power play situations.

$sGoalsPowerPlay / $sShotsOnTargetPowerPlay
sPercentageShootingShortHanded decimal

Calculated Field. A statistic that measures the rate in which a player shots on goal result in goals for short handed play situations.

$sGoalsShortHanded / $sShotsOnTargetShortHanded
sPlusMinus integer

Calculated Field. Measures player's impact on the game, represented by the difference between their team's total scoring versus their opponent's when the player is was on the game.

($sPlusMinusPlus * 1) + ($sPlusMinusMinus * (-1))
sPlusMinusMinus integer

Statistic used to measure a player's impact on the game, represented by the difference between their team's total scoring versus their opponent's when the player is in the game.

sPlusMinusPlus integer

Statistic used to measure a player's impact on the game, represented by the difference between their team's total scoring versus their opponent's when the player is in the game.

sPoints integer

Calculated Field. A point is awarded to a player for each goal scored or assist earned.

$sGoals + $sAssists
sPointsPowerPlay integer

Calculated Field. A point is awarded to a player for each power play goal scored or power play assist earned.

$sGoalsPowerPlay + $sAssistsPowerPlay
sPointsShortHanded integer

Calculated Field. A point is awarded to a player for each short handed goal scored or short handed assist earned.

$sGoalsShortHanded + $sAssistsShortHanded
sSaves integer

Save is credited to goalkeeper who stops the puck from entering the net.

sSavesPercentage decimal

Calculated Field. A statistic in hockey that measures the rate at which a goalie generates saves compared to shots on goal.

$sSaves / ($sGoalsAllowed + $sSaves)
sShootouts integer

If the score remains tied after an overtime period, the subsequent shootout consists of a set number of players from each team taking penalty shots.

sShootoutsGoalsAllowed integer

Shootout goal allowed is credited to a goalie who lets in a shootout goal (the stat is not included in the goals allowed for a goalie).

sShootoutsMade integer

Shootouts that player has successfully scored.

sShootoutsMissed integer

Shootouts player has attempted.

sShots integer

Player directing the puck towards the net in an attempt to score a goal.

sShotsOffTarget integer

A shot off target is a shot that goes over or wide of the goal without making contact with another player.

sShotsOnPipe integer

Shot on pipe is a shot that directly hits the frame of the goal and a goal is not scored.

sShotsOnTarget integer

A shot on target is a shot that directs the puck towards the net and either goes into the net for a goal (and is recorded as a goal) or is stopped by the goaltender for a save or is blocked by opposing player.

sShotsOnTargetPowerPlay integer

Shots on target made while playing in power play situation.

sShotsOnTargetShortHanded integer

Shots on target made while playing in short handed situation.

sShutouts integer

Shutout is credited to a goaltender who successfully stops the other team from scoring during the entire game.

sStars integer

Star player of the game selected by the referees.

sWinningGoals integer

After the final score has been determined, the goal which leaves the winning team one goal ahead of its opponent is the game-winning goal (example: if Team A beats Team B 8-3, the player scoring the fourth goal for Team A receives credit).

sWinsAsGoalkeeper integer

If goalie is in the net when his team scores the game winning goal, he is credited with the win. If the net is empty, the goalie is the one who just left.

team associativearray

The team's boxscore statistics

sAssists integer

Assists are attributed to up to two players of the scoring team who shot, passed or deflected the puck towards the scoring teammate.

sAssistsPowerPlay integer

Assists attributed to player of the scoring team who shot, passed or deflected the puck towards the team mate who scored a power play goal.

sAssistsShortHanded integer

Assists attributed to player of the scoring team who shot, passed or deflected the puck towards the team mate who scored a short handed goal.

sBlocks integer

How many blocks team did.

sBlocksReceived integer

Shot blocked and stopped by an opposing player.

sDrawsAsGoalkeeper integer

Goalkeeper is credited with a tie if game is tied.

sFaceoffs integer

Faceoffs are used to put the puck into play. One player from each team participates in a faceoff.

sFaceoffsLost integer

Player participating in a faceoff loses a faceoff when he does not get a possession of the puck.

sFaceoffsPercentage decimal

Calculated Field. Rate at which team wins faceoff draws.

$sFaceoffsWon / $sFaceoffs
sFaceoffsWon integer

Player participating in a faceoff wins a faceoff when he gains a possession of the puck.

sGoals integer

Goal is scored when the puck entirely crosses the goal line between the two goal posts and below the goal crossbar.

sGoalsAgainstAverageTeam decimal

Calculated Field. Number of goals a goaltender allows per 60 minutes of playing time.

(sGoalsAllowed)/((sMinutesAsGoalkeeper)/60)*60
sGoalsAllowed integer

Goals scored against the goaltender.

sGoalsAllowedEmptyNet integer

Goals scored against the team while there was no goaltender in the net (empty net situation).

sGoalsAllowedPenalty integer

Penalty shots scored against a goaltender.

sGoalsAllowedPowerPlay integer

Power play goals scored against a goalkeeper.

sGoalsAllowedShortHanded integer

Short handed goals scored against goaltender.

sGoalsEmptyNet integer

Goal scored into a net with no goaltender.

sGoalsEvenStrength integer

Goal scored by a team in a situation when there are the same number of players on the ice for both teams.

sGoalsExtraAttacker integer

Goal scored by a team in a situation where the team has removed the goalie for an extra attacker.

sGoalsFirst integer

First goal of the game.

sGoalsGameTying integer

The last goal scored in a tie game.

sGoalsOvertime integer

Goal scored during an overtime period.

sGoalsPenalty integer

A goal scored as a result of penalty shot awarded.

sGoalsPenaltyDelayed integer

Goal scored during a delayed penalty situation.

sGoalsPowerPlay integer

A goal scored by a team playing in a power play situation (having player number on ice advantage).

sGoalsShortHanded integer

A goal scored by a team playing in a short handed situation (having player number on ice disadvantage).

sGoalsUnassisted integer

Goal scored without any assists made.

sHatTricks integer

Three goals scored by the same player during one game.

sIcings integer

Occurs when a player shoots the puck from behind the center red line, across the opposing team's goal line, and the puck remains untouched. Game restarts with a faceoff.

sLossesAsGoalkeeper integer

If goalie lets in the game winning (losing) goal, he is credited with the loss. If the net is empty, the goalie is the one who just left.

sMinutesAsGoalkeeper decimal

Number of minutes played by the goalkeeper during the game.

sMinutesEmptyNet decimal

Number of minutes team played with empty net

sMinutesGoalieTotal decimal

Calculated Field. Total number of minutes played by goalkeeper and net being empty during the game.

$sMinutesAsGoalkeeper + $sMinutesEmptyNet
sOffsides integer

Offside is called when a offensive player who enters the attacking zone prior to the puck entering it. Game restarts with a faceoff.

sPenalties integer

Punishment for an infringement of the rules. Most penalties are enforced by sending the offending player to a penalty box for a set period of time.

sPenaltiesBench integer

Penalties Bench

sPenaltiesDelayed integer

Penalty scored by a team not in the possession of the puck. The game is stopped after the team that has fouled gains the possession.

sPenaltiesDisqualification integer

Disqualification penalty results in automatic suspension for the number of games equal to the number of game disqualification penalties the player has been assessed in the season.

sPenaltiesGameMisconduct integer

A game misconduct penalty involves the suspension of player for the balance of the game.

sPenaltiesGoalie integer

Penalty assessed to a goalie.

sPenaltiesGrossMisconduct integer

Not used anymore - required for backwards compatibility.

sPenaltiesMajor integer

5 minute duration penalty given for infraction of game rules.

sPenaltiesMatch integer

Not used anymore - required for backwards compatibility.

sPenaltiesMinor integer

2 minute long penalty for rule infraction.

sPenaltiesMisconduct integer

10 minute long penalty given for game rule infraction.

sPenaltyMinutes integer

Minutes the player has been removed from the game due to rule infractions.

sPenaltyMinutesBench integer

Penalty Bench Minutes

sPenaltyShots integer

A penalty shot is awarded to a player who is deemed to have lost a clear scoring chance by way of a penalty infraction by an opposing player.

sPenaltyShotsGoalieSaves integer

Penalty shot saved by the goalie.

sPenaltyShotsMade integer

Goal scored on an awarded penalty shot.

sPenaltyShotsMissed integer

Unsuccessful player's attempt to score a goal on an awarded penalty shot.

sPenaltyShotsOffTarget integer

Penalty shot that has missed the net.

sPenaltyShotsPipe integer

Penalty shot that hit the pipes of the net.

sPenaltyTypeBenchMinor integer

Penalty bench minor

sPenaltyTypeBoarding integer

Penalty called when an offending player pushes, trips or checks an opposing player violently into the boards of the hockey rink.

sPenaltyTypeButtEnding integer

Penalty called for butt-ending an opponent.

sPenaltyTypeChangingGoaltenderInterference integer

Penalty changing goaltender interference

sPenaltyTypeCharging integer

Penalty called for violently checking an opponent in any manner.

sPenaltyTypeChargingTheGoaltender integer

Penalty charging the goaltender

sPenaltyTypeClipping integer

Penalty called for hitting an opposing player at or below the other player's knees.

sPenaltyTypeContactToTheHead integer

Penalty called for the action of a player contacting an opponent in the head, face or neck with any part of the player 's body, equipment or stick.

sPenaltyTypeCrossChecking integer

Penalty called for cross-checking an opponent.

sPenaltyTypeDelayingTheGame integer

Penalty called for holding the puck in any manner for the purpose of delaying the game.

sPenaltyTypeDirectContactToTheHead integer

Penalty - Direct Contact to the Head

sPenaltyTypeDisplaceTheNet integer

Penalty - Displace the Net

sPenaltyTypeDisqualification integer

Penalty Type Disqualification

sPenaltyTypeDivingEmbellishment integer

Penalty called for attempting to draw a penalty through any exaggerated or deceitful action.

sPenaltyTypeElbowing integer

Penalty called when a player delivers a check with the elbow extended or uses the elbow as a means to create separation with the opponent.

sPenaltyTypeEquipment integer

Penalty called for adjusting clothing, equipment, skates or sticks.

sPenaltyTypeFaceMask integer

Penalty called for intentionally placing or pushing with the open hand on the face mask.

sPenaltyTypeFaceoffViolation integer

Penalty - Faceoff Violation

sPenaltyTypeFighting integer

Penalty called for fighting an opponent, participating in a fight

sPenaltyTypeFightingPunching integer

Penalty called for fighting an opponent, participating in a fight or throwing a punch.

sPenaltyTypeForfeitOfGame integer

Penalty called for deliberate change of submitted eligibility list or refusing to start the game.

sPenaltyTypeGoalkeeperHandlingThePuck integer

Penalty called for goalkeeper handling the puck.

sPenaltyTypeGoalkeeperInterference integer

Penalty called for impairing goalkeeper's ability to defend a goal.

sPenaltyTypeHandlingThePuck integer

Penalty called for player handling the puck.

sPenaltyTypeHeadButting integer

Penalty called for head butting an opponent with the face mask or helmet.

sPenaltyTypeHighSticking integer

Penalty called for carrying sticks above the height of the goal cage.

sPenaltyTypeHitAfterWhistle integer

Penalty - Hit after Whistle

sPenaltyTypeHittingFromBehind integer

Penalty called for pushing, charging, cross-checking or boddy checking an opponent from behind in open ice.

sPenaltyTypeHolding integer

Penalty called for holding or grabbing an opponent in any manner.

sPenaltyTypeHoldingTheStick integer

Penalty called for holding an opponent's stick in any manner.

sPenaltyTypeHooking integer

Penalty called for impeding the progress of an opponent by hooking with the stick.

sPenaltyTypeIllegalSubstitution integer

Penalty called for a player illegally entering a game.

sPenaltyTypeIndirectContactToTheHead integer

Penalty - Indirect Contact to the Head

sPenaltyTypeInterference integer

Penalty called for interfering with or impeding the progress of an opponent who is not in possession of the puck.

sPenaltyTypeKicking integer

Penalty called for kicking another player.

sPenaltyTypeKneeing integer

Penalty called for using a knee in such a manner as to foul an opponent.

sPenaltyTypeLeavingTheBench integer

Penalty called for leaving the player's or penalty bench during an altercation.

sPenaltyTypeLineupRosterViolation integer

Penalty Lineup/Roster violation

sPenaltyTypeMisconduct integer

Penalty misconduct

sPenaltyTypeObstruction integer

Penalty called for interfering with a non-puck carrying player.

sPenaltyTypePrematureSubstitution integer

Penalty called for premature substitutions.

sPenaltyTypeRefusingToPlayThePuck integer

Penalty called for refusing to keep the puck in motion.

sPenaltyTypeRefusingToStartThePlay integer

Penalty called for refusing to obey the decision of the referee.

sPenaltyTypeRoughing integer

Penalty called for pushing or shoving an opponent with unnecessary force.

sPenaltyTypeRoughingAfterWhistle integer

Penalty roughing after the whistle

sPenaltyTypeRoughingTheGoaltender integer

Penalty roughing the goaltender

sPenaltyTypeShotAfterWhistle integer

Penalty - Shot after Whistle

sPenaltyTypeSlashing integer

Penalty called for slashing an opponent with the stick.

sPenaltyTypeSlashingTheGoalie integer

Penalty - Slashing the Goalie

sPenaltyTypeSlewFooting integer

Penalty called for using feet to knock an opponent's skates out from under him with a kicking or leg dragging motion from behind.

sPenaltyTypeSpearing integer

Penalty called for spearing an opponent.

sPenaltyTypeThrowingEquipment integer

Penalty called for throwing a stick or portion of the stick from the playing surface.

sPenaltyTypeTooManyPlayers integer

Penalty called for a team having too many players on the ice.

sPenaltyTypeTripping integer

Penalty called for causing another player to trip or fall.

sPenaltyTypeUnsportsmanlikeConduct integer

Penalty called for using an abusive language, obscene gestures, threatening language or gestures or other unsportsmanlike conduct.

sPercentageShooting decimal

Calculated Field. Measures the rate in which a player shots on goal result in goals for the player.

$sGoals / $sShotsOnTarget
sPercentageShootingPowerPlay decimal

Calculated Field. A statistic that measures the rate in which a player shots on goal result in goals for power play situations.

$sGoalsPowerPlay / $sShotsOnTargetPowerPlay
sPercentageShootingShortHanded decimal

Calculated Field. A statistic that measures the rate in which a player shots on goal result in goals for short handed play situations.

$sGoalsShortHanded / $sShotsOnTargetShortHanded
sPlusMinus integer

Calculated Field. Measures player's impact on the game, represented by the difference between their team's total scoring versus their opponent's when the player is was on the game.

($sPlusMinusPlus * 1) + ($sPlusMinusMinus * (-1))
sPlusMinusMinus integer

Statistic used to measure a player's impact on the game, represented by the difference between their team's total scoring versus their opponent's when the player is in the game.

sPlusMinusPlus integer

Statistic used to measure a player's impact on the game, represented by the difference between their team's total scoring versus their opponent's when the player is in the game.

sPowerPlayConversionPercent decimal

Calculated Field. Shows how effectively team uses power play opportunities; calculated by dividing power play goals by power play opportunities.

$sGoalsPowerPlay / $sPowerPlays
sPowerPlayOpportunities integer

Opportunities to score a goal during a power play.

sPowerPlays integer

Team is said to be on a power play when at least one opposing player is serving a penalty, and the team has a numerical advantage on the ice.

sSaves integer

Save is credited to goalkeeper who stops the puck from entering the net.

sSavesPercentage decimal

Calculated Field. A statistic in hockey that measures the rate at which a goalie generates saves compared to shots on goal.

$sSaves / ($sGoalsAllowed + $sSaves)
sShootouts integer

If the score remains tied after an overtime period, the subsequent shootout consists of a set number of players from each team taking penalty shots.

sShootoutsGoalsAllowed integer

Shootout goal allowed is credited to a goalie who lets in a shootout goal (the stat is not included in the goals allowed for a goalie).

sShootoutsMade integer

Shootouts that player has successfully scored.

sShootoutsMissed integer

Shootouts player has attempted.

sShots integer

Player directing the puck towards the net in an attempt to score a goal.

sShotsOffTarget integer

A shot off target is a shot that goes over or wide of the goal without making contact with another player.

sShotsOnPipe integer

Shot on pipe is a shot that directly hits the frame of the goal and a goal is not scored.

sShotsOnTarget integer

A shot on target is a shot that directs the puck towards the net and either goes into the net for a goal (and is recorded as a goal) or is stopped by the goaltender for a save or is blocked by opposing player.

sShotsOnTargetPowerPlay integer

Shots on target made while playing in power play situation.

sShotsOnTargetShortHanded integer

Shots on target made while playing in short handed situation.

sShutouts integer

Shutout is credited to a goaltender who successfully stops the other team from scoring during the entire game.

sWinningGoals integer

After the final score has been determined, the goal which leaves the winning team one goal ahead of its opponent is the game-winning goal (example: if Team A beats Team B 8-3, the player scoring the fourth goal for Team A receives credit).

sWinsAsGoalkeeper integer

If goalie is in the net when his team scores the game winning goal, he is credited with the win. If the net is empty, the goalie is the one who just left.

Example

{
    "teams": [{
        "teamNumber": 1,
        "total": {
            "team": {
                "sAssists": 4,
                "sReboundsTeamDefensive": 1,
                "sMinutes": 0,
                "sPointsFastBreak": 2,
                "sPointsFromTurnovers": 0,
                "sPointsInThePaint": 2,
                "sPointsInThePaintAttempted": 4,
                "sPointsInThePaintMade": 1,
                "sPointsSecondChance": 4,
                "sReboundsDefensive": 7,
                "sReboundsOffensive": 3,
                "sReboundsTeamOffensive": 1,
                "sFreeThrowsMade": 3,
                "sSecondChancePointsAttempted": 2,
                "sSecondChancePointsMade": 2,
                "sSteals": 0,
                "sTimeLeading": 0.5915,
                "sTimesScoresLevel": 2,
                "sThreePointersAttempted": 7,
                "sThreePointersMade": 2,
                "sTurnovers": 4,
                "sTurnoversTeam": 0,
                "sTwoPointersAttempted": 8,
                "sLeadChanges": 5,
                "sFreeThrowsAttempted": 6,
                "sAssistsDefensive": 0,
                "sFastBreakPointsMade": 2,
                "sBenchPoints": 1,
                "sBiggestLead": 1,
                "sBiggestLeadScore": "12 - 11",
                "sBiggestScoringRun": 7,
                "sBlocks": 0,
                "sBlocksReceived": 0,
                "sEfficiencyCustom": 0,
                "sFastBreakPointsAttempted": 2,
                "sFieldGoalsAttempted": 15,
                "sFoulsUnsportsmanlike": 0,
                "sFieldGoalsMade": 5,
                "sFoulsBenchTechnical": 0,
                "sFoulsCoachDisqualifying": 0,
                "sFoulsCoachTechnical": 0,
                "sFoulsDisqualifying": 0,
                "sFoulsOn": 3,
                "sFoulsOffensive": 0,
                "sFoulsPersonal": 2,
                "sFoulsTechnical": 0,
                "sFoulsTechnicalOther": 0,
                "sTwoPointersMade": 3,
                "sAssistsTurnoverRatio": 1,
                "sPossessionsOpponent": 0,
                "sTransitionOffence": 0,
                "sTransitionDefence": 0,
                "sThreePointersPercentage": 0.28571428571429,
                "sSecondChancePointsPercentage": 1,
                "sReboundsTeam": 2,
                "sReboundsPersonal": 8,
                "sPossessions": 0,
                "sFastBreakPointsPercentage": 1,
                "sPointsInThePaintPercentage": 0.25,
                "sPoints": 15,
                "sFreeThrowsPercentage": 0.5,
                "sFoulsTotal": 2,
                "sFoulsTeam": 0,
                "sFieldGoalsPercentage": 0.33333333333333,
                "sFieldGoalsEffectiveAdjusted": 0.4,
                "sTwoPointersPercentage": 0.375,
                "sDefensivePointsPerPossession": 0,
                "sDefensiveRating": 0,
                "sEfficiency": 6,
                "sOffensivePointsPerPossession": 0,
                "sOffensiveRating": 0,
                "sPace": 0,
                "sPointsAgainst": 18,
                "sReboundsTotal": 10,
                "sBiggestScoringRunScore": "12-11",
                "sHeadCoachChallengeAccepted": 0,
                "sHeadCoachChallengeRejected": 0
            },
            "players": [{
                "sAssists": 0,
                "sReboundsDefensive": 0,
                "sPlus": 10,
                "sPoints": 2,
                "sPointsFastBreak": 0,
                "sPointsInThePaint": 0,
                "sPointsInThePaintAttempted": 1,
                "sPointsInThePaintMade": 0,
                "sPointsSecondChance": 2,
                "sReboundsOffensive": 0,
                "sMVPVotes": 0,
                "sSecondChancePointsAttempted": 1,
                "sSecondChancePointsMade": 1,
                "sSteals": 0,
                "sThreePointersAttempted": 2,
                "sThreePointersMade": 0,
                "sTurnovers": 0,
                "sTwoPointersMade": 1,
                "sMinutes": 7.6205,
                "sAssistsDefensive": 0,
                "sFoulsCoachDisqualifying": 0,
                "sBlocks": 0,
                "sBlocksReceived": 0,
                "sEfficiencyCustom": 0,
                "sFastBreakPointsAttempted": 0,
                "sFastBreakPointsMade": 0,
                "sFieldGoalsAttempted": 4,
                "sFieldGoalsMade": 1,
                "sFoulsCoachTechnical": 0,
                "sMinus": 11,
                "sFoulsDisqualifying": 0,
                "sFoulsOffensive": 0,
                "sFoulsOn": 0,
                "sFoulsPersonal": 0,
                "sFoulsTechnical": 0,
                "sFoulsUnsportsmanlike": 0,
                "sFreeThrowsAttempted": 0,
                "sFreeThrowsMade": 0,
                "sTwoPointersAttempted": 2,
                "sAssistsTurnoverRatio": 0,
                "sReboundsTotal": 0,
                "sOffensiveRating": 0,
                "sTwoPointersPercentage": 0.5,
                "sTurnoversPercentage": 0,
                "sTrueShootingAttempts": 4,
                "sThreePointersPercentage": 0,
                "sStealsPercentage": 0,
                "sSecondChancePointsPercentage": 1,
                "sReboundsOffensivePercentage": 0,
                "sEfficiencyGameScore": -0.4,
                "sReboundsDefensivePercentage": 0,
                "sPointsInThePaintPercentage": 0,
                "sPlusMinusPoints": -1,
                "sFreeThrowsPercentage": 0,
                "sFieldGoalsPercentage": 0.25,
                "sFieldGoalsEffectivePercentage": 0.25,
                "sFastBreakPointsPercentage": 0,
                "sDefensiveRating": 0,
                "sEfficiency": -1,
                "sReboundsPercentage": 0,
                "sTrueShootingPercentage": 0.25,
                "pno": 1
            }, {
                "sAssists": 2,
                "sReboundsDefensive": 0,
                "sPlus": 14,
                "sPoints": 0,
                "sPointsFastBreak": 0,
                "sPointsInThePaint": 0,
                "sPointsInThePaintAttempted": 0,
                "sPointsInThePaintMade": 0,
                "sPointsSecondChance": 0,
                "sReboundsOffensive": 0,
                "sMVPVotes": 0,
                "sSecondChancePointsAttempted": 0,
                "sSecondChancePointsMade": 0,
                "sSteals": 0,
                "sThreePointersAttempted": 0,
                "sThreePointersMade": 0,
                "sTurnovers": 0,
                "sTwoPointersMade": 0,
                "sMinutes": 7.9526666666667,
                "sAssistsDefensive": 0,
                "sFoulsCoachDisqualifying": 0,
                "sBlocks": 0,
                "sBlocksReceived": 0,
                "sEfficiencyCustom": 0,
                "sFastBreakPointsAttempted": 0,
                "sFastBreakPointsMade": 0,
                "sFieldGoalsAttempted": 0,
                "sFieldGoalsMade": 0,
                "sFoulsCoachTechnical": 0,
                "sMinus": 18,
                "sFoulsDisqualifying": 0,
                "sFoulsOffensive": 0,
                "sFoulsOn": 0,
                "sFoulsPersonal": 0,
                "sFoulsTechnical": 0,
                "sFoulsUnsportsmanlike": 0,
                "sFreeThrowsAttempted": 0,
                "sFreeThrowsMade": 0,
                "sTwoPointersAttempted": 0,
                "sAssistsTurnoverRatio": 0,
                "sReboundsTotal": 0,
                "sOffensiveRating": 0,
                "sTwoPointersPercentage": 0,
                "sTurnoversPercentage": 0,
                "sTrueShootingAttempts": 0,
                "sThreePointersPercentage": 0,
                "sStealsPercentage": 0,
                "sSecondChancePointsPercentage": 0,
                "sReboundsOffensivePercentage": 0,
                "sEfficiencyGameScore": 1.4,
                "sReboundsDefensivePercentage": 0,
                "sPointsInThePaintPercentage": 0,
                "sPlusMinusPoints": -4,
                "sFreeThrowsPercentage": 0,
                "sFieldGoalsPercentage": 0,
                "sFieldGoalsEffectivePercentage": 0,
                "sFastBreakPointsPercentage": 0,
                "sDefensiveRating": 0,
                "sEfficiency": 2,
                "sReboundsPercentage": 0,
                "sTrueShootingPercentage": 0,
                "pno": 13
            }, {
                "sAssists": 0,
                "sReboundsDefensive": 0,
                "sPlus": 0,
                "sPoints": 0,
                "sPointsFastBreak": 0,
                "sPointsInThePaint": 0,
                "sPointsInThePaintAttempted": 0,
                "sPointsInThePaintMade": 0,
                "sPointsSecondChance": 0,
                "sReboundsOffensive": 0,
                "sMVPVotes": 0,
                "sSecondChancePointsAttempted": 0,
                "sSecondChancePointsMade": 0,
                "sSteals": 0,
                "sThreePointersAttempted": 0,
                "sThreePointersMade": 0,
                "sTurnovers": 0,
                "sTwoPointersMade": 0,
                "sMinutes": 0,
                "sAssistsDefensive": 0,
                "sFoulsCoachDisqualifying": 0,
                "sBlocks": 0,
                "sBlocksReceived": 0,
                "sEfficiencyCustom": 0,
                "sFastBreakPointsAttempted": 0,
                "sFastBreakPointsMade": 0,
                "sFieldGoalsAttempted": 0,
                "sFieldGoalsMade": 0,
                "sFoulsCoachTechnical": 0,
                "sMinus": 0,
                "sFoulsDisqualifying": 0,
                "sFoulsOffensive": 0,
                "sFoulsOn": 0,
                "sFoulsPersonal": 0,
                "sFoulsTechnical": 0,
                "sFoulsUnsportsmanlike": 0,
                "sFreeThrowsAttempted": 0,
                "sFreeThrowsMade": 0,
                "sTwoPointersAttempted": 0,
                "sAssistsTurnoverRatio": 0,
                "sReboundsTotal": 0,
                "sOffensiveRating": 0,
                "sTwoPointersPercentage": 0,
                "sTurnoversPercentage": 0,
                "sTrueShootingAttempts": 0,
                "sThreePointersPercentage": 0,
                "sStealsPercentage": 0,
                "sSecondChancePointsPercentage": 0,
                "sReboundsOffensivePercentage": 0,
                "sEfficiencyGameScore": 0,
                "sReboundsDefensivePercentage": 0,
                "sPointsInThePaintPercentage": 0,
                "sPlusMinusPoints": 0,
                "sFreeThrowsPercentage": 0,
                "sFieldGoalsPercentage": 0,
                "sFieldGoalsEffectivePercentage": 0,
                "sFastBreakPointsPercentage": 0,
                "sDefensiveRating": 0,
                "sEfficiency": 0,
                "sReboundsPercentage": 0,
                "sTrueShootingPercentage": 0,
                "pno": 2
            }, {
                "sAssists": 2,
                "sReboundsDefensive": 1,
                "sPlus": 15,
                "sPoints": 0,
                "sPointsFastBreak": 0,
                "sPointsInThePaint": 0,
                "sPointsInThePaintAttempted": 0,
                "sPointsInThePaintMade": 0,
                "sPointsSecondChance": 0,
                "sReboundsOffensive": 0,
                "sMVPVotes": 0,
                "sSecondChancePointsAttempted": 0,
                "sSecondChancePointsMade": 0,
                "sSteals": 0,
                "sThreePointersAttempted": 0,
                "sThreePointersMade": 0,
                "sTurnovers": 1,
                "sTwoPointersMade": 0,
                "sMinutes": 8.2508333333333,
                "sAssistsDefensive": 0,
                "sFoulsCoachDisqualifying": 0,
                "sBlocks": 0,
                "sBlocksReceived": 0,
                "sEfficiencyCustom": 0,
                "sFastBreakPointsAttempted": 0,
                "sFastBreakPointsMade": 0,
                "sFieldGoalsAttempted": 0,
                "sFieldGoalsMade": 0,
                "sFoulsCoachTechnical": 0,
                "sMinus": 13,
                "sFoulsDisqualifying": 0,
                "sFoulsOffensive": 0,
                "sFoulsOn": 0,
                "sFoulsPersonal": 0,
                "sFoulsTechnical": 0,
                "sFoulsUnsportsmanlike": 0,
                "sFreeThrowsAttempted": 0,
                "sFreeThrowsMade": 0,
                "sTwoPointersAttempted": 0,
                "sAssistsTurnoverRatio": 2,
                "sReboundsTotal": 1,
                "sOffensiveRating": 0,
                "sTwoPointersPercentage": 0,
                "sTurnoversPercentage": 1,
                "sTrueShootingAttempts": 0,
                "sThreePointersPercentage": 0,
                "sStealsPercentage": 0,
                "sSecondChancePointsPercentage": 0,
                "sReboundsOffensivePercentage": 0,
                "sEfficiencyGameScore": 0.7,
                "sReboundsDefensivePercentage": 0,
                "sPointsInThePaintPercentage": 0,
                "sPlusMinusPoints": 2,
                "sFreeThrowsPercentage": 0,
                "sFieldGoalsPercentage": 0,
                "sFieldGoalsEffectivePercentage": 0,
                "sFastBreakPointsPercentage": 0,
                "sDefensiveRating": 0,
                "sEfficiency": 2,
                "sReboundsPercentage": 0,
                "sTrueShootingPercentage": 0,
                "pno": 3
            }, {
                "sAssists": 0,
                "sReboundsDefensive": 2,
                "sPlus": 6,
                "sPoints": 1,
                "sPointsFastBreak": 0,
                "sPointsInThePaint": 0,
                "sPointsInThePaintAttempted": 1,
                "sPointsInThePaintMade": 0,
                "sPointsSecondChance": 0,
                "sReboundsOffensive": 1,
                "sMVPVotes": 0,
                "sSecondChancePointsAttempted": 0,
                "sSecondChancePointsMade": 0,
                "sSteals": 0,
                "sThreePointersAttempted": 0,
                "sThreePointersMade": 0,
                "sTurnovers": 0,
                "sTwoPointersMade": 0,
                "sMinutes": 4.4268333333333,
                "sAssistsDefensive": 0,
                "sFoulsCoachDisqualifying": 0,
                "sBlocks": 0,
                "sBlocksReceived": 0,
                "sEfficiencyCustom": 0,
                "sFastBreakPointsAttempted": 0,
                "sFastBreakPointsMade": 0,
                "sFieldGoalsAttempted": 1,
                "sFieldGoalsMade": 0,
                "sFoulsCoachTechnical": 0,
                "sMinus": 7,
                "sFoulsDisqualifying": 0,
                "sFoulsOffensive": 0,
                "sFoulsOn": 1,
                "sFoulsPersonal": 0,
                "sFoulsTechnical": 0,
                "sFoulsUnsportsmanlike": 0,
                "sFreeThrowsAttempted": 2,
                "sFreeThrowsMade": 1,
                "sTwoPointersAttempted": 1,
                "sAssistsTurnoverRatio": 0,
                "sReboundsTotal": 3,
                "sOffensiveRating": 0,
                "sTwoPointersPercentage": 0,
                "sTurnoversPercentage": 0,
                "sTrueShootingAttempts": 1.88,
                "sThreePointersPercentage": 0,
                "sStealsPercentage": 0,
                "sSecondChancePointsPercentage": 0,
                "sReboundsOffensivePercentage": 0,
                "sEfficiencyGameScore": 1.2,
                "sReboundsDefensivePercentage": 0,
                "sPointsInThePaintPercentage": 0,
                "sPlusMinusPoints": -1,
                "sFreeThrowsPercentage": 0.5,
                "sFieldGoalsPercentage": 0,
                "sFieldGoalsEffectivePercentage": 0,
                "sFastBreakPointsPercentage": 0,
                "sDefensiveRating": 0,
                "sEfficiency": 3,
                "sReboundsPercentage": 0,
                "sTrueShootingPercentage": 0.26595744680851,
                "pno": 4
            }, {
                "sAssists": 0,
                "sReboundsDefensive": 1,
                "sPlus": 15,
                "sPoints": 12,
                "sPointsFastBreak": 2,
                "sPointsInThePaint": 2,
                "sPointsInThePaintAttempted": 2,
                "sPointsInThePaintMade": 1,
                "sPointsSecondChance": 2,
                "sReboundsOffensive": 1,
                "sMVPVotes": 0,
                "sSecondChancePointsAttempted": 1,
                "sSecondChancePointsMade": 1,
                "sSteals": 0,
                "sThreePointersAttempted": 4,
                "sThreePointersMade": 2,
                "sTurnovers": 1,
                "sTwoPointersMade": 2,
                "sMinutes": 10,
                "sAssistsDefensive": 0,
                "sFoulsCoachDisqualifying": 0,
                "sBlocks": 0,
                "sBlocksReceived": 0,
                "sEfficiencyCustom": 0,
                "sFastBreakPointsAttempted": 2,
                "sFastBreakPointsMade": 2,
                "sFieldGoalsAttempted": 8,
                "sFieldGoalsMade": 4,
                "sFoulsCoachTechnical": 0,
                "sMinus": 18,
                "sFoulsDisqualifying": 0,
                "sFoulsOffensive": 0,
                "sFoulsOn": 1,
                "sFoulsPersonal": 0,
                "sFoulsTechnical": 0,
                "sFoulsUnsportsmanlike": 0,
                "sFreeThrowsAttempted": 2,
                "sFreeThrowsMade": 2,
                "sTwoPointersAttempted": 4,
                "sAssistsTurnoverRatio": 0,
                "sReboundsTotal": 2,
                "sOffensiveRating": 0,
                "sTwoPointersPercentage": 0.5,
                "sTurnoversPercentage": 0.10121457489879,
                "sTrueShootingAttempts": 8.88,
                "sThreePointersPercentage": 0.5,
                "sStealsPercentage": 0,
                "sSecondChancePointsPercentage": 1,
                "sReboundsOffensivePercentage": 0,
                "sEfficiencyGameScore": 8,
                "sReboundsDefensivePercentage": 0,
                "sPointsInThePaintPercentage": 0.5,
                "sPlusMinusPoints": -3,
                "sFreeThrowsPercentage": 1,
                "sFieldGoalsPercentage": 0.5,
                "sFieldGoalsEffectivePercentage": 0.625,
                "sFastBreakPointsPercentage": 1,
                "sDefensiveRating": 0,
                "sEfficiency": 10,
                "sReboundsPercentage": 0,
                "sTrueShootingPercentage": 0.67567567567568,
                "pno": 5
            }, {
                "sAssists": 0,
                "sReboundsDefensive": 0,
                "sPlus": 0,
                "sPoints": 0,
                "sPointsFastBreak": 0,
                "sPointsInThePaint": 0,
                "sPointsInThePaintAttempted": 0,
                "sPointsInThePaintMade": 0,
                "sPointsSecondChance": 0,
                "sReboundsOffensive": 0,
                "sMVPVotes": 0,
                "sSecondChancePointsAttempted": 0,
                "sSecondChancePointsMade": 0,
                "sSteals": 0,
                "sThreePointersAttempted": 0,
                "sThreePointersMade": 0,
                "sTurnovers": 0,
                "sTwoPointersMade": 0,
                "sMinutes": 0,
                "sAssistsDefensive": 0,
                "sFoulsCoachDisqualifying": 0,
                "sBlocks": 0,
                "sBlocksReceived": 0,
                "sEfficiencyCustom": 0,
                "sFastBreakPointsAttempted": 0,
                "sFastBreakPointsMade": 0,
                "sFieldGoalsAttempted": 0,
                "sFieldGoalsMade": 0,
                "sFoulsCoachTechnical": 0,
                "sMinus": 0,
                "sFoulsDisqualifying": 0,
                "sFoulsOffensive": 0,
                "sFoulsOn": 0,
                "sFoulsPersonal": 0,
                "sFoulsTechnical": 0,
                "sFoulsUnsportsmanlike": 0,
                "sFreeThrowsAttempted": 0,
                "sFreeThrowsMade": 0,
                "sTwoPointersAttempted": 0,
                "sAssistsTurnoverRatio": 0,
                "sReboundsTotal": 0,
                "sOffensiveRating": 0,
                "sTwoPointersPercentage": 0,
                "sTurnoversPercentage": 0,
                "sTrueShootingAttempts": 0,
                "sThreePointersPercentage": 0,
                "sStealsPercentage": 0,
                "sSecondChancePointsPercentage": 0,
                "sReboundsOffensivePercentage": 0,
                "sEfficiencyGameScore": 0,
                "sReboundsDefensivePercentage": 0,
                "sPointsInThePaintPercentage": 0,
                "sPlusMinusPoints": 0,
                "sFreeThrowsPercentage": 0,
                "sFieldGoalsPercentage": 0,
                "sFieldGoalsEffectivePercentage": 0,
                "sFastBreakPointsPercentage": 0,
                "sDefensiveRating": 0,
                "sEfficiency": 0,
                "sReboundsPercentage": 0,
                "sTrueShootingPercentage": 0,
                "pno": 6
            }, {
                "sAssists": 0,
                "sReboundsDefensive": 0,
                "sPlus": 1,
                "sPoints": 0,
                "sPointsFastBreak": 0,
                "sPointsInThePaint": 0,
                "sPointsInThePaintAttempted": 0,
                "sPointsInThePaintMade": 0,
                "sPointsSecondChance": 0,
                "sReboundsOffensive": 0,
                "sMVPVotes": 0,
                "sSecondChancePointsAttempted": 0,
                "sSecondChancePointsMade": 0,
                "sSteals": 0,
                "sThreePointersAttempted": 1,
                "sThreePointersMade": 0,
                "sTurnovers": 1,
                "sTwoPointersMade": 0,
                "sMinutes": 3.2686666666667,
                "sAssistsDefensive": 0,
                "sFoulsCoachDisqualifying": 0,
                "sBlocks": 0,
                "sBlocksReceived": 0,
                "sEfficiencyCustom": 0,
                "sFastBreakPointsAttempted": 0,
                "sFastBreakPointsMade": 0,
                "sFieldGoalsAttempted": 2,
                "sFieldGoalsMade": 0,
                "sFoulsCoachTechnical": 0,
                "sMinus": 5,
                "sFoulsDisqualifying": 0,
                "sFoulsOffensive": 0,
                "sFoulsOn": 0,
                "sFoulsPersonal": 1,
                "sFoulsTechnical": 0,
                "sFoulsUnsportsmanlike": 0,
                "sFreeThrowsAttempted": 0,
                "sFreeThrowsMade": 0,
                "sTwoPointersAttempted": 1,
                "sAssistsTurnoverRatio": 0,
                "sReboundsTotal": 0,
                "sOffensiveRating": 0,
                "sTwoPointersPercentage": 0,
                "sTurnoversPercentage": 0.33333333333333,
                "sTrueShootingAttempts": 2,
                "sThreePointersPercentage": 0,
                "sStealsPercentage": 0,
                "sSecondChancePointsPercentage": 0,
                "sReboundsOffensivePercentage": 0,
                "sEfficiencyGameScore": -2.8,
                "sReboundsDefensivePercentage": 0,
                "sPointsInThePaintPercentage": 0,
                "sPlusMinusPoints": -4,
                "sFreeThrowsPercentage": 0,
                "sFieldGoalsPercentage": 0,
                "sFieldGoalsEffectivePercentage": 0,
                "sFastBreakPointsPercentage": 0,
                "sDefensiveRating": 0,
                "sEfficiency": -4,
                "sReboundsPercentage": 0,
                "sTrueShootingPercentage": 0,
                "pno": 7
            }, {
                "sAssists": 0,
                "sReboundsDefensive": 0,
                "sPlus": 0,
                "sPoints": 0,
                "sPointsFastBreak": 0,
                "sPointsInThePaint": 0,
                "sPointsInThePaintAttempted": 0,
                "sPointsInThePaintMade": 0,
                "sPointsSecondChance": 0,
                "sReboundsOffensive": 0,
                "sMVPVotes": 0,
                "sSecondChancePointsAttempted": 0,
                "sSecondChancePointsMade": 0,
                "sSteals": 0,
                "sThreePointersAttempted": 0,
                "sThreePointersMade": 0,
                "sTurnovers": 0,
                "sTwoPointersMade": 0,
                "sMinutes": 0,
                "sAssistsDefensive": 0,
                "sFoulsCoachDisqualifying": 0,
                "sBlocks": 0,
                "sBlocksReceived": 0,
                "sEfficiencyCustom": 0,
                "sFastBreakPointsAttempted": 0,
                "sFastBreakPointsMade": 0,
                "sFieldGoalsAttempted": 0,
                "sFieldGoalsMade": 0,
                "sFoulsCoachTechnical": 0,
                "sMinus": 0,
                "sFoulsDisqualifying": 0,
                "sFoulsOffensive": 0,
                "sFoulsOn": 0,
                "sFoulsPersonal": 0,
                "sFoulsTechnical": 0,
                "sFoulsUnsportsmanlike": 0,
                "sFreeThrowsAttempted": 0,
                "sFreeThrowsMade": 0,
                "sTwoPointersAttempted": 0,
                "sAssistsTurnoverRatio": 0,
                "sReboundsTotal": 0,
                "sOffensiveRating": 0,
                "sTwoPointersPercentage": 0,
                "sTurnoversPercentage": 0,
                "sTrueShootingAttempts": 0,
                "sThreePointersPercentage": 0,
                "sStealsPercentage": 0,
                "sSecondChancePointsPercentage": 0,
                "sReboundsOffensivePercentage": 0,
                "sEfficiencyGameScore": 0,
                "sReboundsDefensivePercentage": 0,
                "sPointsInThePaintPercentage": 0,
                "sPlusMinusPoints": 0,
                "sFreeThrowsPercentage": 0,
                "sFieldGoalsPercentage": 0,
                "sFieldGoalsEffectivePercentage": 0,
                "sFastBreakPointsPercentage": 0,
                "sDefensiveRating": 0,
                "sEfficiency": 0,
                "sReboundsPercentage": 0,
                "sTrueShootingPercentage": 0,
                "pno": 8
            }, {
                "sAssists": 0,
                "sReboundsDefensive": 2,
                "sPlus": 14,
                "sPoints": 0,
                "sPointsFastBreak": 0,
                "sPointsInThePaint": 0,
                "sPointsInThePaintAttempted": 0,
                "sPointsInThePaintMade": 0,
                "sPointsSecondChance": 0,
                "sReboundsOffensive": 0,
                "sMVPVotes": 0,
                "sSecondChancePointsAttempted": 0,
                "sSecondChancePointsMade": 0,
                "sSteals": 0,
                "sThreePointersAttempted": 0,
                "sThreePointersMade": 0,
                "sTurnovers": 1,
                "sTwoPointersMade": 0,
                "sMinutes": 8.4805,
                "sAssistsDefensive": 0,
                "sFoulsCoachDisqualifying": 0,
                "sBlocks": 0,
                "sBlocksReceived": 0,
                "sEfficiencyCustom": 0,
                "sFastBreakPointsAttempted": 0,
                "sFastBreakPointsMade": 0,
                "sFieldGoalsAttempted": 0,
                "sFieldGoalsMade": 0,
                "sFoulsCoachTechnical": 0,
                "sMinus": 18,
                "sFoulsDisqualifying": 0,
                "sFoulsOffensive": 0,
                "sFoulsOn": 1,
                "sFoulsPersonal": 1,
                "sFoulsTechnical": 0,
                "sFoulsUnsportsmanlike": 0,
                "sFreeThrowsAttempted": 2,
                "sFreeThrowsMade": 0,
                "sTwoPointersAttempted": 0,
                "sAssistsTurnoverRatio": 0,
                "sReboundsTotal": 2,
                "sOffensiveRating": 0,
                "sTwoPointersPercentage": 0,
                "sTurnoversPercentage": 0.53191489361702,
                "sTrueShootingAttempts": 0.88,
                "sThreePointersPercentage": 0,
                "sStealsPercentage": 0,
                "sSecondChancePointsPercentage": 0,
                "sReboundsOffensivePercentage": 0,
                "sEfficiencyGameScore": -1.6,
                "sReboundsDefensivePercentage": 0,
                "sPointsInThePaintPercentage": 0,
                "sPlusMinusPoints": -4,
                "sFreeThrowsPercentage": 0,
                "sFieldGoalsPercentage": 0,
                "sFieldGoalsEffectivePercentage": 0,
                "sFastBreakPointsPercentage": 0,
                "sDefensiveRating": 0,
                "sEfficiency": -1,
                "sReboundsPercentage": 0,
                "sTrueShootingPercentage": 0,
                "pno": 9
            }]
        },
        "periods": [{
            "team": {
                "sAssists": 4,
                "sReboundsTeamDefensive": 1,
                "sMinutes": 0,
                "sPointsFastBreak": 2,
                "sPointsFromTurnovers": 0,
                "sPointsInThePaint": 2,
                "sPointsInThePaintAttempted": 4,
                "sPointsInThePaintMade": 1,
                "sPointsSecondChance": 4,
                "sReboundsDefensive": 7,
                "sReboundsOffensive": 3,
                "sReboundsTeamOffensive": 1,
                "sFreeThrowsMade": 3,
                "sSecondChancePointsAttempted": 2,
                "sSecondChancePointsMade": 2,
                "sSteals": 0,
                "sTimeLeading": 0.5915,
                "sTimesScoresLevel": 2,
                "sThreePointersAttempted": 7,
                "sThreePointersMade": 2,
                "sTurnovers": 4,
                "sTurnoversTeam": 0,
                "sTwoPointersAttempted": 8,
                "sLeadChanges": 5,
                "sFreeThrowsAttempted": 6,
                "sAssistsDefensive": 0,
                "sFastBreakPointsMade": 2,
                "sBenchPoints": 1,
                "sBiggestLead": 1,
                "sBiggestLeadScore": "12 - 11",
                "sBiggestScoringRun": 7,
                "sBiggestScoringRunScore": "12-11",
                "sBlocks": 0,
                "sBlocksReceived": 0,
                "sEfficiencyCustom": 0,
                "sFastBreakPointsAttempted": 2,
                "sFieldGoalsAttempted": 15,
                "sFoulsUnsportsmanlike": 0,
                "sFieldGoalsMade": 5,
                "sFoulsBenchTechnical": 0,
                "sFoulsCoachDisqualifying": 0,
                "sFoulsCoachTechnical": 0,
                "sFoulsDisqualifying": 0,
                "sFoulsOn": 3,
                "sFoulsOffensive": 0,
                "sFoulsPersonal": 2,
                "sFoulsTechnical": 0,
                "sFoulsTechnicalOther": 0,
                "sTwoPointersMade": 3,
                "sAssistsTurnoverRatio": 1,
                "sPossessionsOpponent": 0,
                "sTransitionOffence": 0,
                "sTransitionDefence": 0,
                "sThreePointersPercentage": 0.28571428571429,
                "sSecondChancePointsPercentage": 1,
                "sReboundsTeam": 2,
                "sReboundsPersonal": 8,
                "sPossessions": 0,
                "sFastBreakPointsPercentage": 1,
                "sPointsInThePaintPercentage": 0.25,
                "sPoints": 15,
                "sFreeThrowsPercentage": 0.5,
                "sFoulsTotal": 2,
                "sFoulsTeam": 0,
                "sFieldGoalsPercentage": 0.33333333333333,
                "sFieldGoalsEffectiveAdjusted": 0.4,
                "sTwoPointersPercentage": 0.375,
                "sDefensivePointsPerPossession": 0,
                "sDefensiveRating": 0,
                "sEfficiency": 6,
                "sOffensivePointsPerPossession": 0,
                "sOffensiveRating": 0,
                "sPace": 0,
                "sPointsAgainst": 18,
                "sReboundsTotal": 10
            },
            "players": [{
                "sAssists": 0,
                "sReboundsDefensive": 0,
                "sPlus": 10,
                "sPoints": 2,
                "sPointsFastBreak": 0,
                "sPointsInThePaint": 0,
                "sPointsInThePaintAttempted": 1,
                "sPointsInThePaintMade": 0,
                "sPointsSecondChance": 2,
                "sReboundsOffensive": 0,
                "sMVPVotes": 0,
                "sSecondChancePointsAttempted": 1,
                "sSecondChancePointsMade": 1,
                "sSteals": 0,
                "sThreePointersAttempted": 2,
                "sThreePointersMade": 0,
                "sTurnovers": 0,
                "sTwoPointersMade": 1,
                "sMinutes": 7.6205,
                "sAssistsDefensive": 0,
                "sFoulsCoachDisqualifying": 0,
                "sBlocks": 0,
                "sBlocksReceived": 0,
                "sEfficiencyCustom": 0,
                "sFastBreakPointsAttempted": 0,
                "sFastBreakPointsMade": 0,
                "sFieldGoalsAttempted": 4,
                "sFieldGoalsMade": 1,
                "sFoulsCoachTechnical": 0,
                "sMinus": 11,
                "sFoulsDisqualifying": 0,
                "sFoulsOffensive": 0,
                "sFoulsOn": 0,
                "sFoulsPersonal": 0,
                "sFoulsTechnical": 0,
                "sFoulsUnsportsmanlike": 0,
                "sFreeThrowsAttempted": 0,
                "sFreeThrowsMade": 0,
                "sTwoPointersAttempted": 2,
                "sAssistsTurnoverRatio": 0,
                "sReboundsTotal": 0,
                "sOffensiveRating": 0,
                "sTwoPointersPercentage": 0.5,
                "sTurnoversPercentage": 0,
                "sTrueShootingAttempts": 4,
                "sThreePointersPercentage": 0,
                "sStealsPercentage": 0,
                "sSecondChancePointsPercentage": 1,
                "sReboundsOffensivePercentage": 0,
                "sEfficiencyGameScore": -0.4,
                "sReboundsDefensivePercentage": 0,
                "sPointsInThePaintPercentage": 0,
                "sPlusMinusPoints": -1,
                "sFreeThrowsPercentage": 0,
                "sFieldGoalsPercentage": 0.25,
                "sFieldGoalsEffectivePercentage": 0.25,
                "sFastBreakPointsPercentage": 0,
                "sDefensiveRating": 0,
                "sEfficiency": -1,
                "sReboundsPercentage": 0,
                "sTrueShootingPercentage": 0.25,
                "pno": 1
            }, {
                "sAssists": 2,
                "sReboundsDefensive": 0,
                "sPlus": 14,
                "sPoints": 0,
                "sPointsFastBreak": 0,
                "sPointsInThePaint": 0,
                "sPointsInThePaintAttempted": 0,
                "sPointsInThePaintMade": 0,
                "sPointsSecondChance": 0,
                "sReboundsOffensive": 0,
                "sMVPVotes": 0,
                "sSecondChancePointsAttempted": 0,
                "sSecondChancePointsMade": 0,
                "sSteals": 0,
                "sThreePointersAttempted": 0,
                "sThreePointersMade": 0,
                "sTurnovers": 0,
                "sTwoPointersMade": 0,
                "sMinutes": 7.9526666666667,
                "sAssistsDefensive": 0,
                "sFoulsCoachDisqualifying": 0,
                "sBlocks": 0,
                "sBlocksReceived": 0,
                "sEfficiencyCustom": 0,
                "sFastBreakPointsAttempted": 0,
                "sFastBreakPointsMade": 0,
                "sFieldGoalsAttempted": 0,
                "sFieldGoalsMade": 0,
                "sFoulsCoachTechnical": 0,
                "sMinus": 18,
                "sFoulsDisqualifying": 0,
                "sFoulsOffensive": 0,
                "sFoulsOn": 0,
                "sFoulsPersonal": 0,
                "sFoulsTechnical": 0,
                "sFoulsUnsportsmanlike": 0,
                "sFreeThrowsAttempted": 0,
                "sFreeThrowsMade": 0,
                "sTwoPointersAttempted": 0,
                "sAssistsTurnoverRatio": 0,
                "sReboundsTotal": 0,
                "sOffensiveRating": 0,
                "sTwoPointersPercentage": 0,
                "sTurnoversPercentage": 0,
                "sTrueShootingAttempts": 0,
                "sThreePointersPercentage": 0,
                "sStealsPercentage": 0,
                "sSecondChancePointsPercentage": 0,
                "sReboundsOffensivePercentage": 0,
                "sEfficiencyGameScore": 1.4,
                "sReboundsDefensivePercentage": 0,
                "sPointsInThePaintPercentage": 0,
                "sPlusMinusPoints": -4,
                "sFreeThrowsPercentage": 0,
                "sFieldGoalsPercentage": 0,
                "sFieldGoalsEffectivePercentage": 0,
                "sFastBreakPointsPercentage": 0,
                "sDefensiveRating": 0,
                "sEfficiency": 2,
                "sReboundsPercentage": 0,
                "sTrueShootingPercentage": 0,
                "pno": 13
            }, {
                "sAssists": 0,
                "sReboundsDefensive": 0,
                "sPlus": 0,
                "sPoints": 0,
                "sPointsFastBreak": 0,
                "sPointsInThePaint": 0,
                "sPointsInThePaintAttempted": 0,
                "sPointsInThePaintMade": 0,
                "sPointsSecondChance": 0,
                "sReboundsOffensive": 0,
                "sMVPVotes": 0,
                "sSecondChancePointsAttempted": 0,
                "sSecondChancePointsMade": 0,
                "sSteals": 0,
                "sThreePointersAttempted": 0,
                "sThreePointersMade": 0,
                "sTurnovers": 0,
                "sTwoPointersMade": 0,
                "sMinutes": 0,
                "sAssistsDefensive": 0,
                "sFoulsCoachDisqualifying": 0,
                "sBlocks": 0,
                "sBlocksReceived": 0,
                "sEfficiencyCustom": 0,
                "sFastBreakPointsAttempted": 0,
                "sFastBreakPointsMade": 0,
                "sFieldGoalsAttempted": 0,
                "sFieldGoalsMade": 0,
                "sFoulsCoachTechnical": 0,
                "sMinus": 0,
                "sFoulsDisqualifying": 0,
                "sFoulsOffensive": 0,
                "sFoulsOn": 0,
                "sFoulsPersonal": 0,
                "sFoulsTechnical": 0,
                "sFoulsUnsportsmanlike": 0,
                "sFreeThrowsAttempted": 0,
                "sFreeThrowsMade": 0,
                "sTwoPointersAttempted": 0,
                "sAssistsTurnoverRatio": 0,
                "sReboundsTotal": 0,
                "sOffensiveRating": 0,
                "sTwoPointersPercentage": 0,
                "sTurnoversPercentage": 0,
                "sTrueShootingAttempts": 0,
                "sThreePointersPercentage": 0,
                "sStealsPercentage": 0,
                "sSecondChancePointsPercentage": 0,
                "sReboundsOffensivePercentage": 0,
                "sEfficiencyGameScore": 0,
                "sReboundsDefensivePercentage": 0,
                "sPointsInThePaintPercentage": 0,
                "sPlusMinusPoints": 0,
                "sFreeThrowsPercentage": 0,
                "sFieldGoalsPercentage": 0,
                "sFieldGoalsEffectivePercentage": 0,
                "sFastBreakPointsPercentage": 0,
                "sDefensiveRating": 0,
                "sEfficiency": 0,
                "sReboundsPercentage": 0,
                "sTrueShootingPercentage": 0,
                "pno": 2
            }, {
                "sAssists": 2,
                "sReboundsDefensive": 1,
                "sPlus": 15,
                "sPoints": 0,
                "sPointsFastBreak": 0,
                "sPointsInThePaint": 0,
                "sPointsInThePaintAttempted": 0,
                "sPointsInThePaintMade": 0,
                "sPointsSecondChance": 0,
                "sReboundsOffensive": 0,
                "sMVPVotes": 0,
                "sSecondChancePointsAttempted": 0,
                "sSecondChancePointsMade": 0,
                "sSteals": 0,
                "sThreePointersAttempted": 0,
                "sThreePointersMade": 0,
                "sTurnovers": 1,
                "sTwoPointersMade": 0,
                "sMinutes": 8.2508333333333,
                "sAssistsDefensive": 0,
                "sFoulsCoachDisqualifying": 0,
                "sBlocks": 0,
                "sBlocksReceived": 0,
                "sEfficiencyCustom": 0,
                "sFastBreakPointsAttempted": 0,
                "sFastBreakPointsMade": 0,
                "sFieldGoalsAttempted": 0,
                "sFieldGoalsMade": 0,
                "sFoulsCoachTechnical": 0,
                "sMinus": 13,
                "sFoulsDisqualifying": 0,
                "sFoulsOffensive": 0,
                "sFoulsOn": 0,
                "sFoulsPersonal": 0,
                "sFoulsTechnical": 0,
                "sFoulsUnsportsmanlike": 0,
                "sFreeThrowsAttempted": 0,
                "sFreeThrowsMade": 0,
                "sTwoPointersAttempted": 0,
                "sAssistsTurnoverRatio": 2,
                "sReboundsTotal": 1,
                "sOffensiveRating": 0,
                "sTwoPointersPercentage": 0,
                "sTurnoversPercentage": 1,
                "sTrueShootingAttempts": 0,
                "sThreePointersPercentage": 0,
                "sStealsPercentage": 0,
                "sSecondChancePointsPercentage": 0,
                "sReboundsOffensivePercentage": 0,
                "sEfficiencyGameScore": 0.7,
                "sReboundsDefensivePercentage": 0,
                "sPointsInThePaintPercentage": 0,
                "sPlusMinusPoints": 2,
                "sFreeThrowsPercentage": 0,
                "sFieldGoalsPercentage": 0,
                "sFieldGoalsEffectivePercentage": 0,
                "sFastBreakPointsPercentage": 0,
                "sDefensiveRating": 0,
                "sEfficiency": 2,
                "sReboundsPercentage": 0,
                "sTrueShootingPercentage": 0,
                "pno": 3
            }, {
                "sAssists": 0,
                "sReboundsDefensive": 2,
                "sPlus": 6,
                "sPoints": 1,
                "sPointsFastBreak": 0,
                "sPointsInThePaint": 0,
                "sPointsInThePaintAttempted": 1,
                "sPointsInThePaintMade": 0,
                "sPointsSecondChance": 0,
                "sReboundsOffensive": 1,
                "sMVPVotes": 0,
                "sSecondChancePointsAttempted": 0,
                "sSecondChancePointsMade": 0,
                "sSteals": 0,
                "sThreePointersAttempted": 0,
                "sThreePointersMade": 0,
                "sTurnovers": 0,
                "sTwoPointersMade": 0,
                "sMinutes": 4.4268333333333,
                "sAssistsDefensive": 0,
                "sFoulsCoachDisqualifying": 0,
                "sBlocks": 0,
                "sBlocksReceived": 0,
                "sEfficiencyCustom": 0,
                "sFastBreakPointsAttempted": 0,
                "sFastBreakPointsMade": 0,
                "sFieldGoalsAttempted": 1,
                "sFieldGoalsMade": 0,
                "sFoulsCoachTechnical": 0,
                "sMinus": 7,
                "sFoulsDisqualifying": 0,
                "sFoulsOffensive": 0,
                "sFoulsOn": 1,
                "sFoulsPersonal": 0,
                "sFoulsTechnical": 0,
                "sFoulsUnsportsmanlike": 0,
                "sFreeThrowsAttempted": 2,
                "sFreeThrowsMade": 1,
                "sTwoPointersAttempted": 1,
                "sAssistsTurnoverRatio": 0,
                "sReboundsTotal": 3,
                "sOffensiveRating": 0,
                "sTwoPointersPercentage": 0,
                "sTurnoversPercentage": 0,
                "sTrueShootingAttempts": 1.88,
                "sThreePointersPercentage": 0,
                "sStealsPercentage": 0,
                "sSecondChancePointsPercentage": 0,
                "sReboundsOffensivePercentage": 0,
                "sEfficiencyGameScore": 1.2,
                "sReboundsDefensivePercentage": 0,
                "sPointsInThePaintPercentage": 0,
                "sPlusMinusPoints": -1,
                "sFreeThrowsPercentage": 0.5,
                "sFieldGoalsPercentage": 0,
                "sFieldGoalsEffectivePercentage": 0,
                "sFastBreakPointsPercentage": 0,
                "sDefensiveRating": 0,
                "sEfficiency": 3,
                "sReboundsPercentage": 0,
                "sTrueShootingPercentage": 0.26595744680851,
                "pno": 4
            }, {
                "sAssists": 0,
                "sReboundsDefensive": 1,
                "sPlus": 15,
                "sPoints": 12,
                "sPointsFastBreak": 2,
                "sPointsInThePaint": 2,
                "sPointsInThePaintAttempted": 2,
                "sPointsInThePaintMade": 1,
                "sPointsSecondChance": 2,
                "sReboundsOffensive": 1,
                "sMVPVotes": 0,
                "sSecondChancePointsAttempted": 1,
                "sSecondChancePointsMade": 1,
                "sSteals": 0,
                "sThreePointersAttempted": 4,
                "sThreePointersMade": 2,
                "sTurnovers": 1,
                "sTwoPointersMade": 2,
                "sMinutes": 10,
                "sAssistsDefensive": 0,
                "sFoulsCoachDisqualifying": 0,
                "sBlocks": 0,
                "sBlocksReceived": 0,
                "sEfficiencyCustom": 0,
                "sFastBreakPointsAttempted": 2,
                "sFastBreakPointsMade": 2,
                "sFieldGoalsAttempted": 8,
                "sFieldGoalsMade": 4,
                "sFoulsCoachTechnical": 0,
                "sMinus": 18,
                "sFoulsDisqualifying": 0,
                "sFoulsOffensive": 0,
                "sFoulsOn": 1,
                "sFoulsPersonal": 0,
                "sFoulsTechnical": 0,
                "sFoulsUnsportsmanlike": 0,
                "sFreeThrowsAttempted": 2,
                "sFreeThrowsMade": 2,
                "sTwoPointersAttempted": 4,
                "sAssistsTurnoverRatio": 0,
                "sReboundsTotal": 2,
                "sOffensiveRating": 0,
                "sTwoPointersPercentage": 0.5,
                "sTurnoversPercentage": 0.10121457489879,
                "sTrueShootingAttempts": 8.88,
                "sThreePointersPercentage": 0.5,
                "sStealsPercentage": 0,
                "sSecondChancePointsPercentage": 1,
                "sReboundsOffensivePercentage": 0,
                "sEfficiencyGameScore": 8,
                "sReboundsDefensivePercentage": 0,
                "sPointsInThePaintPercentage": 0.5,
                "sPlusMinusPoints": -3,
                "sFreeThrowsPercentage": 1,
                "sFieldGoalsPercentage": 0.5,
                "sFieldGoalsEffectivePercentage": 0.625,
                "sFastBreakPointsPercentage": 1,
                "sDefensiveRating": 0,
                "sEfficiency": 10,
                "sReboundsPercentage": 0,
                "sTrueShootingPercentage": 0.67567567567568,
                "pno": 5
            }, {
                "sAssists": 0,
                "sReboundsDefensive": 0,
                "sPlus": 0,
                "sPoints": 0,
                "sPointsFastBreak": 0,
                "sPointsInThePaint": 0,
                "sPointsInThePaintAttempted": 0,
                "sPointsInThePaintMade": 0,
                "sPointsSecondChance": 0,
                "sReboundsOffensive": 0,
                "sMVPVotes": 0,
                "sSecondChancePointsAttempted": 0,
                "sSecondChancePointsMade": 0,
                "sSteals": 0,
                "sThreePointersAttempted": 0,
                "sThreePointersMade": 0,
                "sTurnovers": 0,
                "sTwoPointersMade": 0,
                "sMinutes": 0,
                "sAssistsDefensive": 0,
                "sFoulsCoachDisqualifying": 0,
                "sBlocks": 0,
                "sBlocksReceived": 0,
                "sEfficiencyCustom": 0,
                "sFastBreakPointsAttempted": 0,
                "sFastBreakPointsMade": 0,
                "sFieldGoalsAttempted": 0,
                "sFieldGoalsMade": 0,
                "sFoulsCoachTechnical": 0,
                "sMinus": 0,
                "sFoulsDisqualifying": 0,
                "sFoulsOffensive": 0,
                "sFoulsOn": 0,
                "sFoulsPersonal": 0,
                "sFoulsTechnical": 0,
                "sFoulsUnsportsmanlike": 0,
                "sFreeThrowsAttempted": 0,
                "sFreeThrowsMade": 0,
                "sTwoPointersAttempted": 0,
                "sAssistsTurnoverRatio": 0,
                "sReboundsTotal": 0,
                "sOffensiveRating": 0,
                "sTwoPointersPercentage": 0,
                "sTurnoversPercentage": 0,
                "sTrueShootingAttempts": 0,
                "sThreePointersPercentage": 0,
                "sStealsPercentage": 0,
                "sSecondChancePointsPercentage": 0,
                "sReboundsOffensivePercentage": 0,
                "sEfficiencyGameScore": 0,
                "sReboundsDefensivePercentage": 0,
                "sPointsInThePaintPercentage": 0,
                "sPlusMinusPoints": 0,
                "sFreeThrowsPercentage": 0,
                "sFieldGoalsPercentage": 0,
                "sFieldGoalsEffectivePercentage": 0,
                "sFastBreakPointsPercentage": 0,
                "sDefensiveRating": 0,
                "sEfficiency": 0,
                "sReboundsPercentage": 0,
                "sTrueShootingPercentage": 0,
                "pno": 6
            }, {
                "sAssists": 0,
                "sReboundsDefensive": 0,
                "sPlus": 1,
                "sPoints": 0,
                "sPointsFastBreak": 0,
                "sPointsInThePaint": 0,
                "sPointsInThePaintAttempted": 0,
                "sPointsInThePaintMade": 0,
                "sPointsSecondChance": 0,
                "sReboundsOffensive": 0,
                "sMVPVotes": 0,
                "sSecondChancePointsAttempted": 0,
                "sSecondChancePointsMade": 0,
                "sSteals": 0,
                "sThreePointersAttempted": 1,
                "sThreePointersMade": 0,
                "sTurnovers": 1,
                "sTwoPointersMade": 0,
                "sMinutes": 3.2686666666667,
                "sAssistsDefensive": 0,
                "sFoulsCoachDisqualifying": 0,
                "sBlocks": 0,
                "sBlocksReceived": 0,
                "sEfficiencyCustom": 0,
                "sFastBreakPointsAttempted": 0,
                "sFastBreakPointsMade": 0,
                "sFieldGoalsAttempted": 2,
                "sFieldGoalsMade": 0,
                "sFoulsCoachTechnical": 0,
                "sMinus": 5,
                "sFoulsDisqualifying": 0,
                "sFoulsOffensive": 0,
                "sFoulsOn": 0,
                "sFoulsPersonal": 1,
                "sFoulsTechnical": 0,
                "sFoulsUnsportsmanlike": 0,
                "sFreeThrowsAttempted": 0,
                "sFreeThrowsMade": 0,
                "sTwoPointersAttempted": 1,
                "sAssistsTurnoverRatio": 0,
                "sReboundsTotal": 0,
                "sOffensiveRating": 0,
                "sTwoPointersPercentage": 0,
                "sTurnoversPercentage": 0.33333333333333,
                "sTrueShootingAttempts": 2,
                "sThreePointersPercentage": 0,
                "sStealsPercentage": 0,
                "sSecondChancePointsPercentage": 0,
                "sReboundsOffensivePercentage": 0,
                "sEfficiencyGameScore": -2.8,
                "sReboundsDefensivePercentage": 0,
                "sPointsInThePaintPercentage": 0,
                "sPlusMinusPoints": -4,
                "sFreeThrowsPercentage": 0,
                "sFieldGoalsPercentage": 0,
                "sFieldGoalsEffectivePercentage": 0,
                "sFastBreakPointsPercentage": 0,
                "sDefensiveRating": 0,
                "sEfficiency": -4,
                "sReboundsPercentage": 0,
                "sTrueShootingPercentage": 0,
                "pno": 7
            }, {
                "sAssists": 0,
                "sReboundsDefensive": 0,
                "sPlus": 0,
                "sPoints": 0,
                "sPointsFastBreak": 0,
                "sPointsInThePaint": 0,
                "sPointsInThePaintAttempted": 0,
                "sPointsInThePaintMade": 0,
                "sPointsSecondChance": 0,
                "sReboundsOffensive": 0,
                "sMVPVotes": 0,
                "sSecondChancePointsAttempted": 0,
                "sSecondChancePointsMade": 0,
                "sSteals": 0,
                "sThreePointersAttempted": 0,
                "sThreePointersMade": 0,
                "sTurnovers": 0,
                "sTwoPointersMade": 0,
                "sMinutes": 0,
                "sAssistsDefensive": 0,
                "sFoulsCoachDisqualifying": 0,
                "sBlocks": 0,
                "sBlocksReceived": 0,
                "sEfficiencyCustom": 0,
                "sFastBreakPointsAttempted": 0,
                "sFastBreakPointsMade": 0,
                "sFieldGoalsAttempted": 0,
                "sFieldGoalsMade": 0,
                "sFoulsCoachTechnical": 0,
                "sMinus": 0,
                "sFoulsDisqualifying": 0,
                "sFoulsOffensive": 0,
                "sFoulsOn": 0,
                "sFoulsPersonal": 0,
                "sFoulsTechnical": 0,
                "sFoulsUnsportsmanlike": 0,
                "sFreeThrowsAttempted": 0,
                "sFreeThrowsMade": 0,
                "sTwoPointersAttempted": 0,
                "sAssistsTurnoverRatio": 0,
                "sReboundsTotal": 0,
                "sOffensiveRating": 0,
                "sTwoPointersPercentage": 0,
                "sTurnoversPercentage": 0,
                "sTrueShootingAttempts": 0,
                "sThreePointersPercentage": 0,
                "sStealsPercentage": 0,
                "sSecondChancePointsPercentage": 0,
                "sReboundsOffensivePercentage": 0,
                "sEfficiencyGameScore": 0,
                "sReboundsDefensivePercentage": 0,
                "sPointsInThePaintPercentage": 0,
                "sPlusMinusPoints": 0,
                "sFreeThrowsPercentage": 0,
                "sFieldGoalsPercentage": 0,
                "sFieldGoalsEffectivePercentage": 0,
                "sFastBreakPointsPercentage": 0,
                "sDefensiveRating": 0,
                "sEfficiency": 0,
                "sReboundsPercentage": 0,
                "sTrueShootingPercentage": 0,
                "pno": 8
            }, {
                "sAssists": 0,
                "sReboundsDefensive": 2,
                "sPlus": 14,
                "sPoints": 0,
                "sPointsFastBreak": 0,
                "sPointsInThePaint": 0,
                "sPointsInThePaintAttempted": 0,
                "sPointsInThePaintMade": 0,
                "sPointsSecondChance": 0,
                "sReboundsOffensive": 0,
                "sMVPVotes": 0,
                "sSecondChancePointsAttempted": 0,
                "sSecondChancePointsMade": 0,
                "sSteals": 0,
                "sThreePointersAttempted": 0,
                "sThreePointersMade": 0,
                "sTurnovers": 1,
                "sTwoPointersMade": 0,
                "sMinutes": 8.4805,
                "sAssistsDefensive": 0,
                "sFoulsCoachDisqualifying": 0,
                "sBlocks": 0,
                "sBlocksReceived": 0,
                "sEfficiencyCustom": 0,
                "sFastBreakPointsAttempted": 0,
                "sFastBreakPointsMade": 0,
                "sFieldGoalsAttempted": 0,
                "sFieldGoalsMade": 0,
                "sFoulsCoachTechnical": 0,
                "sMinus": 18,
                "sFoulsDisqualifying": 0,
                "sFoulsOffensive": 0,
                "sFoulsOn": 1,
                "sFoulsPersonal": 1,
                "sFoulsTechnical": 0,
                "sFoulsUnsportsmanlike": 0,
                "sFreeThrowsAttempted": 2,
                "sFreeThrowsMade": 0,
                "sTwoPointersAttempted": 0,
                "sAssistsTurnoverRatio": 0,
                "sReboundsTotal": 2,
                "sOffensiveRating": 0,
                "sTwoPointersPercentage": 0,
                "sTurnoversPercentage": 0.53191489361702,
                "sTrueShootingAttempts": 0.88,
                "sThreePointersPercentage": 0,
                "sStealsPercentage": 0,
                "sSecondChancePointsPercentage": 0,
                "sReboundsOffensivePercentage": 0,
                "sEfficiencyGameScore": -1.6,
                "sReboundsDefensivePercentage": 0,
                "sPointsInThePaintPercentage": 0,
                "sPlusMinusPoints": -4,
                "sFreeThrowsPercentage": 0,
                "sFieldGoalsPercentage": 0,
                "sFieldGoalsEffectivePercentage": 0,
                "sFastBreakPointsPercentage": 0,
                "sDefensiveRating": 0,
                "sEfficiency": -1,
                "sReboundsPercentage": 0,
                "sTrueShootingPercentage": 0,
                "pno": 9
            }],
            "period": 1,
            "periodType": "REGULAR"
        }, {
            "team": [],
            "players": [{
                "sAssists": 0,
                "sReboundsDefensive": 0,
                "sPlus": 0,
                "sPoints": 0,
                "sPointsFastBreak": 0,
                "sPointsInThePaint": 0,
                "sPointsInThePaintAttempted": 0,
                "sPointsInThePaintMade": 0,
                "sPointsSecondChance": 0,
                "sReboundsOffensive": 0,
                "sMVPVotes": 0,
                "sSecondChancePointsAttempted": 0,
                "sSecondChancePointsMade": 0,
                "sSteals": 0,
                "sThreePointersAttempted": 0,
                "sThreePointersMade": 0,
                "sTurnovers": 0,
                "sTwoPointersMade": 0,
                "sMinutes": 0,
                "sAssistsDefensive": 0,
                "sFoulsCoachDisqualifying": 0,
                "sBlocks": 0,
                "sBlocksReceived": 0,
                "sEfficiencyCustom": 0,
                "sFastBreakPointsAttempted": 0,
                "sFastBreakPointsMade": 0,
                "sFieldGoalsAttempted": 0,
                "sFieldGoalsMade": 0,
                "sFoulsCoachTechnical": 0,
                "sMinus": 0,
                "sFoulsDisqualifying": 0,
                "sFoulsOffensive": 0,
                "sFoulsOn": 0,
                "sFoulsPersonal": 0,
                "sFoulsTechnical": 0,
                "sFoulsUnsportsmanlike": 0,
                "sFreeThrowsAttempted": 0,
                "sFreeThrowsMade": 0,
                "sTwoPointersAttempted": 0,
                "sAssistsTurnoverRatio": 0,
                "sReboundsTotal": 0,
                "sOffensiveRating": 0,
                "sTwoPointersPercentage": 0,
                "sTurnoversPercentage": 0,
                "sTrueShootingAttempts": 0,
                "sThreePointersPercentage": 0,
                "sStealsPercentage": 0,
                "sSecondChancePointsPercentage": 0,
                "sReboundsOffensivePercentage": 0,
                "sEfficiencyGameScore": 0,
                "sReboundsDefensivePercentage": 0,
                "sPointsInThePaintPercentage": 0,
                "sPlusMinusPoints": 0,
                "sFreeThrowsPercentage": 0,
                "sFieldGoalsPercentage": 0,
                "sFieldGoalsEffectivePercentage": 0,
                "sFastBreakPointsPercentage": 0,
                "sDefensiveRating": 0,
                "sEfficiency": 0,
                "sReboundsPercentage": 0,
                "sTrueShootingPercentage": 0,
                "pno": 1
            }, {
                "sAssists": 0,
                "sReboundsDefensive": 0,
                "sPlus": 0,
                "sPoints": 0,
                "sPointsFastBreak": 0,
                "sPointsInThePaint": 0,
                "sPointsInThePaintAttempted": 0,
                "sPointsInThePaintMade": 0,
                "sPointsSecondChance": 0,
                "sReboundsOffensive": 0,
                "sMVPVotes": 0,
                "sSecondChancePointsAttempted": 0,
                "sSecondChancePointsMade": 0,
                "sSteals": 0,
                "sThreePointersAttempted": 0,
                "sThreePointersMade": 0,
                "sTurnovers": 0,
                "sTwoPointersMade": 0,
                "sMinutes": 0,
                "sAssistsDefensive": 0,
                "sFoulsCoachDisqualifying": 0,
                "sBlocks": 0,
                "sBlocksReceived": 0,
                "sEfficiencyCustom": 0,
                "sFastBreakPointsAttempted": 0,
                "sFastBreakPointsMade": 0,
                "sFieldGoalsAttempted": 0,
                "sFieldGoalsMade": 0,
                "sFoulsCoachTechnical": 0,
                "sMinus": 0,
                "sFoulsDisqualifying": 0,
                "sFoulsOffensive": 0,
                "sFoulsOn": 0,
                "sFoulsPersonal": 0,
                "sFoulsTechnical": 0,
                "sFoulsUnsportsmanlike": 0,
                "sFreeThrowsAttempted": 0,
                "sFreeThrowsMade": 0,
                "sTwoPointersAttempted": 0,
                "sAssistsTurnoverRatio": 0,
                "sReboundsTotal": 0,
                "sOffensiveRating": 0,
                "sTwoPointersPercentage": 0,
                "sTurnoversPercentage": 0,
                "sTrueShootingAttempts": 0,
                "sThreePointersPercentage": 0,
                "sStealsPercentage": 0,
                "sSecondChancePointsPercentage": 0,
                "sReboundsOffensivePercentage": 0,
                "sEfficiencyGameScore": 0,
                "sReboundsDefensivePercentage": 0,
                "sPointsInThePaintPercentage": 0,
                "sPlusMinusPoints": 0,
                "sFreeThrowsPercentage": 0,
                "sFieldGoalsPercentage": 0,
                "sFieldGoalsEffectivePercentage": 0,
                "sFastBreakPointsPercentage": 0,
                "sDefensiveRating": 0,
                "sEfficiency": 0,
                "sReboundsPercentage": 0,
                "sTrueShootingPercentage": 0,
                "pno": 13
            }, {
                "sAssists": 0,
                "sReboundsDefensive": 0,
                "sPlus": 0,
                "sPoints": 0,
                "sPointsFastBreak": 0,
                "sPointsInThePaint": 0,
                "sPointsInThePaintAttempted": 0,
                "sPointsInThePaintMade": 0,
                "sPointsSecondChance": 0,
                "sReboundsOffensive": 0,
                "sMVPVotes": 0,
                "sSecondChancePointsAttempted": 0,
                "sSecondChancePointsMade": 0,
                "sSteals": 0,
                "sThreePointersAttempted": 0,
                "sThreePointersMade": 0,
                "sTurnovers": 0,
                "sTwoPointersMade": 0,
                "sMinutes": 0,
                "sAssistsDefensive": 0,
                "sFoulsCoachDisqualifying": 0,
                "sBlocks": 0,
                "sBlocksReceived": 0,
                "sEfficiencyCustom": 0,
                "sFastBreakPointsAttempted": 0,
                "sFastBreakPointsMade": 0,
                "sFieldGoalsAttempted": 0,
                "sFieldGoalsMade": 0,
                "sFoulsCoachTechnical": 0,
                "sMinus": 0,
                "sFoulsDisqualifying": 0,
                "sFoulsOffensive": 0,
                "sFoulsOn": 0,
                "sFoulsPersonal": 0,
                "sFoulsTechnical": 0,
                "sFoulsUnsportsmanlike": 0,
                "sFreeThrowsAttempted": 0,
                "sFreeThrowsMade": 0,
                "sTwoPointersAttempted": 0,
                "sAssistsTurnoverRatio": 0,
                "sReboundsTotal": 0,
                "sOffensiveRating": 0,
                "sTwoPointersPercentage": 0,
                "sTurnoversPercentage": 0,
                "sTrueShootingAttempts": 0,
                "sThreePointersPercentage": 0,
                "sStealsPercentage": 0,
                "sSecondChancePointsPercentage": 0,
                "sReboundsOffensivePercentage": 0,
                "sEfficiencyGameScore": 0,
                "sReboundsDefensivePercentage": 0,
                "sPointsInThePaintPercentage": 0,
                "sPlusMinusPoints": 0,
                "sFreeThrowsPercentage": 0,
                "sFieldGoalsPercentage": 0,
                "sFieldGoalsEffectivePercentage": 0,
                "sFastBreakPointsPercentage": 0,
                "sDefensiveRating": 0,
                "sEfficiency": 0,
                "sReboundsPercentage": 0,
                "sTrueShootingPercentage": 0,
                "pno": 2
            }, {
                "sAssists": 0,
                "sReboundsDefensive": 0,
                "sPlus": 0,
                "sPoints": 0,
                "sPointsFastBreak": 0,
                "sPointsInThePaint": 0,
                "sPointsInThePaintAttempted": 0,
                "sPointsInThePaintMade": 0,
                "sPointsSecondChance": 0,
                "sReboundsOffensive": 0,
                "sMVPVotes": 0,
                "sSecondChancePointsAttempted": 0,
                "sSecondChancePointsMade": 0,
                "sSteals": 0,
                "sThreePointersAttempted": 0,
                "sThreePointersMade": 0,
                "sTurnovers": 0,
                "sTwoPointersMade": 0,
                "sMinutes": 0,
                "sAssistsDefensive": 0,
                "sFoulsCoachDisqualifying": 0,
                "sBlocks": 0,
                "sBlocksReceived": 0,
                "sEfficiencyCustom": 0,
                "sFastBreakPointsAttempted": 0,
                "sFastBreakPointsMade": 0,
                "sFieldGoalsAttempted": 0,
                "sFieldGoalsMade": 0,
                "sFoulsCoachTechnical": 0,
                "sMinus": 0,
                "sFoulsDisqualifying": 0,
                "sFoulsOffensive": 0,
                "sFoulsOn": 0,
                "sFoulsPersonal": 0,
                "sFoulsTechnical": 0,
                "sFoulsUnsportsmanlike": 0,
                "sFreeThrowsAttempted": 0,
                "sFreeThrowsMade": 0,
                "sTwoPointersAttempted": 0,
                "sAssistsTurnoverRatio": 0,
                "sReboundsTotal": 0,
                "sOffensiveRating": 0,
                "sTwoPointersPercentage": 0,
                "sTurnoversPercentage": 0,
                "sTrueShootingAttempts": 0,
                "sThreePointersPercentage": 0,
                "sStealsPercentage": 0,
                "sSecondChancePointsPercentage": 0,
                "sReboundsOffensivePercentage": 0,
                "sEfficiencyGameScore": 0,
                "sReboundsDefensivePercentage": 0,
                "sPointsInThePaintPercentage": 0,
                "sPlusMinusPoints": 0,
                "sFreeThrowsPercentage": 0,
                "sFieldGoalsPercentage": 0,
                "sFieldGoalsEffectivePercentage": 0,
                "sFastBreakPointsPercentage": 0,
                "sDefensiveRating": 0,
                "sEfficiency": 0,
                "sReboundsPercentage": 0,
                "sTrueShootingPercentage": 0,
                "pno": 3
            }, {
                "sAssists": 0,
                "sReboundsDefensive": 0,
                "sPlus": 0,
                "sPoints": 0,
                "sPointsFastBreak": 0,
                "sPointsInThePaint": 0,
                "sPointsInThePaintAttempted": 0,
                "sPointsInThePaintMade": 0,
                "sPointsSecondChance": 0,
                "sReboundsOffensive": 0,
                "sMVPVotes": 0,
                "sSecondChancePointsAttempted": 0,
                "sSecondChancePointsMade": 0,
                "sSteals": 0,
                "sThreePointersAttempted": 0,
                "sThreePointersMade": 0,
                "sTurnovers": 0,
                "sTwoPointersMade": 0,
                "sMinutes": 0,
                "sAssistsDefensive": 0,
                "sFoulsCoachDisqualifying": 0,
                "sBlocks": 0,
                "sBlocksReceived": 0,
                "sEfficiencyCustom": 0,
                "sFastBreakPointsAttempted": 0,
                "sFastBreakPointsMade": 0,
                "sFieldGoalsAttempted": 0,
                "sFieldGoalsMade": 0,
                "sFoulsCoachTechnical": 0,
                "sMinus": 0,
                "sFoulsDisqualifying": 0,
                "sFoulsOffensive": 0,
                "sFoulsOn": 0,
                "sFoulsPersonal": 0,
                "sFoulsTechnical": 0,
                "sFoulsUnsportsmanlike": 0,
                "sFreeThrowsAttempted": 0,
                "sFreeThrowsMade": 0,
                "sTwoPointersAttempted": 0,
                "sAssistsTurnoverRatio": 0,
                "sReboundsTotal": 0,
                "sOffensiveRating": 0,
                "sTwoPointersPercentage": 0,
                "sTurnoversPercentage": 0,
                "sTrueShootingAttempts": 0,
                "sThreePointersPercentage": 0,
                "sStealsPercentage": 0,
                "sSecondChancePointsPercentage": 0,
                "sReboundsOffensivePercentage": 0,
                "sEfficiencyGameScore": 0,
                "sReboundsDefensivePercentage": 0,
                "sPointsInThePaintPercentage": 0,
                "sPlusMinusPoints": 0,
                "sFreeThrowsPercentage": 0,
                "sFieldGoalsPercentage": 0,
                "sFieldGoalsEffectivePercentage": 0,
                "sFastBreakPointsPercentage": 0,
                "sDefensiveRating": 0,
                "sEfficiency": 0,
                "sReboundsPercentage": 0,
                "sTrueShootingPercentage": 0,
                "pno": 4
            }, {
                "sAssists": 0,
                "sReboundsDefensive": 0,
                "sPlus": 0,
                "sPoints": 0,
                "sPointsFastBreak": 0,
                "sPointsInThePaint": 0,
                "sPointsInThePaintAttempted": 0,
                "sPointsInThePaintMade": 0,
                "sPointsSecondChance": 0,
                "sReboundsOffensive": 0,
                "sMVPVotes": 0,
                "sSecondChancePointsAttempted": 0,
                "sSecondChancePointsMade": 0,
                "sSteals": 0,
                "sThreePointersAttempted": 0,
                "sThreePointersMade": 0,
                "sTurnovers": 0,
                "sTwoPointersMade": 0,
                "sMinutes": 0,
                "sAssistsDefensive": 0,
                "sFoulsCoachDisqualifying": 0,
                "sBlocks": 0,
                "sBlocksReceived": 0,
                "sEfficiencyCustom": 0,
                "sFastBreakPointsAttempted": 0,
                "sFastBreakPointsMade": 0,
                "sFieldGoalsAttempted": 0,
                "sFieldGoalsMade": 0,
                "sFoulsCoachTechnical": 0,
                "sMinus": 0,
                "sFoulsDisqualifying": 0,
                "sFoulsOffensive": 0,
                "sFoulsOn": 0,
                "sFoulsPersonal": 0,
                "sFoulsTechnical": 0,
                "sFoulsUnsportsmanlike": 0,
                "sFreeThrowsAttempted": 0,
                "sFreeThrowsMade": 0,
                "sTwoPointersAttempted": 0,
                "sAssistsTurnoverRatio": 0,
                "sReboundsTotal": 0,
                "sOffensiveRating": 0,
                "sTwoPointersPercentage": 0,
                "sTurnoversPercentage": 0,
                "sTrueShootingAttempts": 0,
                "sThreePointersPercentage": 0,
                "sStealsPercentage": 0,
                "sSecondChancePointsPercentage": 0,
                "sReboundsOffensivePercentage": 0,
                "sEfficiencyGameScore": 0,
                "sReboundsDefensivePercentage": 0,
                "sPointsInThePaintPercentage": 0,
                "sPlusMinusPoints": 0,
                "sFreeThrowsPercentage": 0,
                "sFieldGoalsPercentage": 0,
                "sFieldGoalsEffectivePercentage": 0,
                "sFastBreakPointsPercentage": 0,
                "sDefensiveRating": 0,
                "sEfficiency": 0,
                "sReboundsPercentage": 0,
                "sTrueShootingPercentage": 0,
                "pno": 5
            }, {
                "sAssists": 0,
                "sReboundsDefensive": 0,
                "sPlus": 0,
                "sPoints": 0,
                "sPointsFastBreak": 0,
                "sPointsInThePaint": 0,
                "sPointsInThePaintAttempted": 0,
                "sPointsInThePaintMade": 0,
                "sPointsSecondChance": 0,
                "sReboundsOffensive": 0,
                "sMVPVotes": 0,
                "sSecondChancePointsAttempted": 0,
                "sSecondChancePointsMade": 0,
                "sSteals": 0,
                "sThreePointersAttempted": 0,
                "sThreePointersMade": 0,
                "sTurnovers": 0,
                "sTwoPointersMade": 0,
                "sMinutes": 0,
                "sAssistsDefensive": 0,
                "sFoulsCoachDisqualifying": 0,
                "sBlocks": 0,
                "sBlocksReceived": 0,
                "sEfficiencyCustom": 0,
                "sFastBreakPointsAttempted": 0,
                "sFastBreakPointsMade": 0,
                "sFieldGoalsAttempted": 0,
                "sFieldGoalsMade": 0,
                "sFoulsCoachTechnical": 0,
                "sMinus": 0,
                "sFoulsDisqualifying": 0,
                "sFoulsOffensive": 0,
                "sFoulsOn": 0,
                "sFoulsPersonal": 0,
                "sFoulsTechnical": 0,
                "sFoulsUnsportsmanlike": 0,
                "sFreeThrowsAttempted": 0,
                "sFreeThrowsMade": 0,
                "sTwoPointersAttempted": 0,
                "sAssistsTurnoverRatio": 0,
                "sReboundsTotal": 0,
                "sOffensiveRating": 0,
                "sTwoPointersPercentage": 0,
                "sTurnoversPercentage": 0,
                "sTrueShootingAttempts": 0,
                "sThreePointersPercentage": 0,
                "sStealsPercentage": 0,
                "sSecondChancePointsPercentage": 0,
                "sReboundsOffensivePercentage": 0,
                "sEfficiencyGameScore": 0,
                "sReboundsDefensivePercentage": 0,
                "sPointsInThePaintPercentage": 0,
                "sPlusMinusPoints": 0,
                "sFreeThrowsPercentage": 0,
                "sFieldGoalsPercentage": 0,
                "sFieldGoalsEffectivePercentage": 0,
                "sFastBreakPointsPercentage": 0,
                "sDefensiveRating": 0,
                "sEfficiency": 0,
                "sReboundsPercentage": 0,
                "sTrueShootingPercentage": 0,
                "pno": 6
            }, {
                "sAssists": 0,
                "sReboundsDefensive": 0,
                "sPlus": 0,
                "sPoints": 0,
                "sPointsFastBreak": 0,
                "sPointsInThePaint": 0,
                "sPointsInThePaintAttempted": 0,
                "sPointsInThePaintMade": 0,
                "sPointsSecondChance": 0,
                "sReboundsOffensive": 0,
                "sMVPVotes": 0,
                "sSecondChancePointsAttempted": 0,
                "sSecondChancePointsMade": 0,
                "sSteals": 0,
                "sThreePointersAttempted": 0,
                "sThreePointersMade": 0,
                "sTurnovers": 0,
                "sTwoPointersMade": 0,
                "sMinutes": 0,
                "sAssistsDefensive": 0,
                "sFoulsCoachDisqualifying": 0,
                "sBlocks": 0,
                "sBlocksReceived": 0,
                "sEfficiencyCustom": 0,
                "sFastBreakPointsAttempted": 0,
                "sFastBreakPointsMade": 0,
                "sFieldGoalsAttempted": 0,
                "sFieldGoalsMade": 0,
                "sFoulsCoachTechnical": 0,
                "sMinus": 0,
                "sFoulsDisqualifying": 0,
                "sFoulsOffensive": 0,
                "sFoulsOn": 0,
                "sFoulsPersonal": 0,
                "sFoulsTechnical": 0,
                "sFoulsUnsportsmanlike": 0,
                "sFreeThrowsAttempted": 0,
                "sFreeThrowsMade": 0,
                "sTwoPointersAttempted": 0,
                "sAssistsTurnoverRatio": 0,
                "sReboundsTotal": 0,
                "sOffensiveRating": 0,
                "sTwoPointersPercentage": 0,
                "sTurnoversPercentage": 0,
                "sTrueShootingAttempts": 0,
                "sThreePointersPercentage": 0,
                "sStealsPercentage": 0,
                "sSecondChancePointsPercentage": 0,
                "sReboundsOffensivePercentage": 0,
                "sEfficiencyGameScore": 0,
                "sReboundsDefensivePercentage": 0,
                "sPointsInThePaintPercentage": 0,
                "sPlusMinusPoints": 0,
                "sFreeThrowsPercentage": 0,
                "sFieldGoalsPercentage": 0,
                "sFieldGoalsEffectivePercentage": 0,
                "sFastBreakPointsPercentage": 0,
                "sDefensiveRating": 0,
                "sEfficiency": 0,
                "sReboundsPercentage": 0,
                "sTrueShootingPercentage": 0,
                "pno": 7
            }, {
                "sAssists": 0,
                "sReboundsDefensive": 0,
                "sPlus": 0,
                "sPoints": 0,
                "sPointsFastBreak": 0,
                "sPointsInThePaint": 0,
                "sPointsInThePaintAttempted": 0,
                "sPointsInThePaintMade": 0,
                "sPointsSecondChance": 0,
                "sReboundsOffensive": 0,
                "sMVPVotes": 0,
                "sSecondChancePointsAttempted": 0,
                "sSecondChancePointsMade": 0,
                "sSteals": 0,
                "sThreePointersAttempted": 0,
                "sThreePointersMade": 0,
                "sTurnovers": 0,
                "sTwoPointersMade": 0,
                "sMinutes": 0,
                "sAssistsDefensive": 0,
                "sFoulsCoachDisqualifying": 0,
                "sBlocks": 0,
                "sBlocksReceived": 0,
                "sEfficiencyCustom": 0,
                "sFastBreakPointsAttempted": 0,
                "sFastBreakPointsMade": 0,
                "sFieldGoalsAttempted": 0,
                "sFieldGoalsMade": 0,
                "sFoulsCoachTechnical": 0,
                "sMinus": 0,
                "sFoulsDisqualifying": 0,
                "sFoulsOffensive": 0,
                "sFoulsOn": 0,
                "sFoulsPersonal": 0,
                "sFoulsTechnical": 0,
                "sFoulsUnsportsmanlike": 0,
                "sFreeThrowsAttempted": 0,
                "sFreeThrowsMade": 0,
                "sTwoPointersAttempted": 0,
                "sAssistsTurnoverRatio": 0,
                "sReboundsTotal": 0,
                "sOffensiveRating": 0,
                "sTwoPointersPercentage": 0,
                "sTurnoversPercentage": 0,
                "sTrueShootingAttempts": 0,
                "sThreePointersPercentage": 0,
                "sStealsPercentage": 0,
                "sSecondChancePointsPercentage": 0,
                "sReboundsOffensivePercentage": 0,
                "sEfficiencyGameScore": 0,
                "sReboundsDefensivePercentage": 0,
                "sPointsInThePaintPercentage": 0,
                "sPlusMinusPoints": 0,
                "sFreeThrowsPercentage": 0,
                "sFieldGoalsPercentage": 0,
                "sFieldGoalsEffectivePercentage": 0,
                "sFastBreakPointsPercentage": 0,
                "sDefensiveRating": 0,
                "sEfficiency": 0,
                "sReboundsPercentage": 0,
                "sTrueShootingPercentage": 0,
                "pno": 8
            }, {
                "sAssists": 0,
                "sReboundsDefensive": 0,
                "sPlus": 0,
                "sPoints": 0,
                "sPointsFastBreak": 0,
                "sPointsInThePaint": 0,
                "sPointsInThePaintAttempted": 0,
                "sPointsInThePaintMade": 0,
                "sPointsSecondChance": 0,
                "sReboundsOffensive": 0,
                "sMVPVotes": 0,
                "sSecondChancePointsAttempted": 0,
                "sSecondChancePointsMade": 0,
                "sSteals": 0,
                "sThreePointersAttempted": 0,
                "sThreePointersMade": 0,
                "sTurnovers": 0,
                "sTwoPointersMade": 0,
                "sMinutes": 0,
                "sAssistsDefensive": 0,
                "sFoulsCoachDisqualifying": 0,
                "sBlocks": 0,
                "sBlocksReceived": 0,
                "sEfficiencyCustom": 0,
                "sFastBreakPointsAttempted": 0,
                "sFastBreakPointsMade": 0,
                "sFieldGoalsAttempted": 0,
                "sFieldGoalsMade": 0,
                "sFoulsCoachTechnical": 0,
                "sMinus": 0,
                "sFoulsDisqualifying": 0,
                "sFoulsOffensive": 0,
                "sFoulsOn": 0,
                "sFoulsPersonal": 0,
                "sFoulsTechnical": 0,
                "sFoulsUnsportsmanlike": 0,
                "sFreeThrowsAttempted": 0,
                "sFreeThrowsMade": 0,
                "sTwoPointersAttempted": 0,
                "sAssistsTurnoverRatio": 0,
                "sReboundsTotal": 0,
                "sOffensiveRating": 0,
                "sTwoPointersPercentage": 0,
                "sTurnoversPercentage": 0,
                "sTrueShootingAttempts": 0,
                "sThreePointersPercentage": 0,
                "sStealsPercentage": 0,
                "sSecondChancePointsPercentage": 0,
                "sReboundsOffensivePercentage": 0,
                "sEfficiencyGameScore": 0,
                "sReboundsDefensivePercentage": 0,
                "sPointsInThePaintPercentage": 0,
                "sPlusMinusPoints": 0,
                "sFreeThrowsPercentage": 0,
                "sFieldGoalsPercentage": 0,
                "sFieldGoalsEffectivePercentage": 0,
                "sFastBreakPointsPercentage": 0,
                "sDefensiveRating": 0,
                "sEfficiency": 0,
                "sReboundsPercentage": 0,
                "sTrueShootingPercentage": 0,
                "pno": 9
            }],
            "period": 2,
            "periodType": "REGULAR"
        }]
    }, {
        "teamNumber": 2,
        "total": {
            "team": {
                "sAssists": 5,
                "sReboundsTeamDefensive": 0,
                "sMinutes": 0,
                "sPointsFastBreak": 2,
                "sPointsFromTurnovers": 3,
                "sPointsInThePaint": 8,
                "sPointsInThePaintAttempted": 12,
                "sPointsInThePaintMade": 4,
                "sPointsSecondChance": 3,
                "sReboundsDefensive": 9,
                "sReboundsOffensive": 3,
                "sReboundsTeamOffensive": 1,
                "sFreeThrowsMade": 3,
                "sSecondChancePointsAttempted": 2,
                "sSecondChancePointsMade": 2,
                "sSteals": 1,
                "sTimeLeading": 8.1828333333333,
                "sTimesScoresLevel": 2,
                "sThreePointersAttempted": 3,
                "sThreePointersMade": 1,
                "sTurnovers": 3,
                "sTurnoversTeam": 0,
                "sTwoPointersAttempted": 15,
                "sLeadChanges": 5,
                "sFreeThrowsAttempted": 4,
                "sAssistsDefensive": 0,
                "sFastBreakPointsMade": 1,
                "sBenchPoints": 0,
                "sBiggestLead": 7,
                "sBiggestLeadScore": "2 - 9",
                "sBiggestScoringRun": 7,
                "sBlocks": 0,
                "sBlocksReceived": 0,
                "sEfficiencyCustom": 0,
                "sFastBreakPointsAttempted": 1,
                "sFieldGoalsAttempted": 18,
                "sFoulsUnsportsmanlike": 0,
                "sFieldGoalsMade": 7,
                "sFoulsBenchTechnical": 0,
                "sFoulsCoachDisqualifying": 0,
                "sFoulsCoachTechnical": 0,
                "sFoulsDisqualifying": 0,
                "sFoulsOn": 2,
                "sFoulsOffensive": 0,
                "sFoulsPersonal": 3,
                "sFoulsTechnical": 0,
                "sFoulsTechnicalOther": 0,
                "sTwoPointersMade": 6,
                "sAssistsTurnoverRatio": 1.6666666666667,
                "sPossessionsOpponent": 0,
                "sTransitionOffence": 2,
                "sTransitionDefence": 0,
                "sThreePointersPercentage": 0.33333333333333,
                "sSecondChancePointsPercentage": 1,
                "sReboundsTeam": 1,
                "sReboundsPersonal": 11,
                "sPossessions": 0,
                "sFastBreakPointsPercentage": 1,
                "sPointsInThePaintPercentage": 0.33333333333333,
                "sPoints": 18,
                "sFreeThrowsPercentage": 0.75,
                "sFoulsTotal": 3,
                "sFoulsTeam": 0,
                "sFieldGoalsPercentage": 0.38888888888889,
                "sFieldGoalsEffectiveAdjusted": 0.41666666666667,
                "sTwoPointersPercentage": 0.4,
                "sDefensivePointsPerPossession": 0,
                "sDefensiveRating": 0,
                "sEfficiency": 9,
                "sOffensivePointsPerPossession": 0,
                "sOffensiveRating": 0,
                "sPace": 0,
                "sPointsAgainst": 15,
                "sReboundsTotal": 12,
                "sBiggestScoringRunScore": "2-9"
            },
            "players": [{
                "sAssists": 0,
                "sReboundsDefensive": 0,
                "sPlus": 0,
                "sPoints": 0,
                "sPointsFastBreak": 0,
                "sPointsInThePaint": 0,
                "sPointsInThePaintAttempted": 0,
                "sPointsInThePaintMade": 0,
                "sPointsSecondChance": 0,
                "sReboundsOffensive": 0,
                "sMVPVotes": 0,
                "sSecondChancePointsAttempted": 0,
                "sSecondChancePointsMade": 0,
                "sSteals": 0,
                "sThreePointersAttempted": 0,
                "sThreePointersMade": 0,
                "sTurnovers": 0,
                "sTwoPointersMade": 0,
                "sMinutes": 0,
                "sAssistsDefensive": 0,
                "sFoulsCoachDisqualifying": 0,
                "sBlocks": 0,
                "sBlocksReceived": 0,
                "sEfficiencyCustom": 0,
                "sFastBreakPointsAttempted": 0,
                "sFastBreakPointsMade": 0,
                "sFieldGoalsAttempted": 0,
                "sFieldGoalsMade": 0,
                "sFoulsCoachTechnical": 0,
                "sMinus": 0,
                "sFoulsDisqualifying": 0,
                "sFoulsOffensive": 0,
                "sFoulsOn": 0,
                "sFoulsPersonal": 0,
                "sFoulsTechnical": 0,
                "sFoulsUnsportsmanlike": 0,
                "sFreeThrowsAttempted": 0,
                "sFreeThrowsMade": 0,
                "sTwoPointersAttempted": 0,
                "sAssistsTurnoverRatio": 0,
                "sReboundsTotal": 0,
                "sOffensiveRating": 0,
                "sTwoPointersPercentage": 0,
                "sTurnoversPercentage": 0,
                "sTrueShootingAttempts": 0,
                "sThreePointersPercentage": 0,
                "sStealsPercentage": 0,
                "sSecondChancePointsPercentage": 0,
                "sReboundsOffensivePercentage": 0,
                "sEfficiencyGameScore": 0,
                "sReboundsDefensivePercentage": 0,
                "sPointsInThePaintPercentage": 0,
                "sPlusMinusPoints": 0,
                "sFreeThrowsPercentage": 0,
                "sFieldGoalsPercentage": 0,
                "sFieldGoalsEffectivePercentage": 0,
                "sFastBreakPointsPercentage": 0,
                "sDefensiveRating": 0,
                "sEfficiency": 0,
                "sReboundsPercentage": 0,
                "sTrueShootingPercentage": 0,
                "pno": 1
            }, {
                "sAssists": 0,
                "sReboundsDefensive": 0,
                "sPlus": 0,
                "sPoints": 0,
                "sPointsFastBreak": 0,
                "sPointsInThePaint": 0,
                "sPointsInThePaintAttempted": 0,
                "sPointsInThePaintMade": 0,
                "sPointsSecondChance": 0,
                "sReboundsOffensive": 0,
                "sMVPVotes": 0,
                "sSecondChancePointsAttempted": 0,
                "sSecondChancePointsMade": 0,
                "sSteals": 0,
                "sThreePointersAttempted": 0,
                "sThreePointersMade": 0,
                "sTurnovers": 0,
                "sTwoPointersMade": 0,
                "sMinutes": 0,
                "sAssistsDefensive": 0,
                "sFoulsCoachDisqualifying": 0,
                "sBlocks": 0,
                "sBlocksReceived": 0,
                "sEfficiencyCustom": 0,
                "sFastBreakPointsAttempted": 0,
                "sFastBreakPointsMade": 0,
                "sFieldGoalsAttempted": 0,
                "sFieldGoalsMade": 0,
                "sFoulsCoachTechnical": 0,
                "sMinus": 0,
                "sFoulsDisqualifying": 0,
                "sFoulsOffensive": 0,
                "sFoulsOn": 0,
                "sFoulsPersonal": 0,
                "sFoulsTechnical": 0,
                "sFoulsUnsportsmanlike": 0,
                "sFreeThrowsAttempted": 0,
                "sFreeThrowsMade": 0,
                "sTwoPointersAttempted": 0,
                "sAssistsTurnoverRatio": 0,
                "sReboundsTotal": 0,
                "sOffensiveRating": 0,
                "sTwoPointersPercentage": 0,
                "sTurnoversPercentage": 0,
                "sTrueShootingAttempts": 0,
                "sThreePointersPercentage": 0,
                "sStealsPercentage": 0,
                "sSecondChancePointsPercentage": 0,
                "sReboundsOffensivePercentage": 0,
                "sEfficiencyGameScore": 0,
                "sReboundsDefensivePercentage": 0,
                "sPointsInThePaintPercentage": 0,
                "sPlusMinusPoints": 0,
                "sFreeThrowsPercentage": 0,
                "sFieldGoalsPercentage": 0,
                "sFieldGoalsEffectivePercentage": 0,
                "sFastBreakPointsPercentage": 0,
                "sDefensiveRating": 0,
                "sEfficiency": 0,
                "sReboundsPercentage": 0,
                "sTrueShootingPercentage": 0,
                "pno": 13
            }, {
                "sAssists": 0,
                "sReboundsDefensive": 0,
                "sPlus": 14,
                "sPoints": 5,
                "sPointsFastBreak": 0,
                "sPointsInThePaint": 4,
                "sPointsInThePaintAttempted": 2,
                "sPointsInThePaintMade": 2,
                "sPointsSecondChance": 1,
                "sReboundsOffensive": 1,
                "sMVPVotes": 0,
                "sSecondChancePointsAttempted": 1,
                "sSecondChancePointsMade": 1,
                "sSteals": 0,
                "sThreePointersAttempted": 0,
                "sThreePointersMade": 0,
                "sTurnovers": 0,
                "sTwoPointersMade": 2,
                "sMinutes": 6.7313333333333,
                "sAssistsDefensive": 0,
                "sFoulsCoachDisqualifying": 0,
                "sBlocks": 0,
                "sBlocksReceived": 0,
                "sEfficiencyCustom": 0,
                "sFastBreakPointsAttempted": 0,
                "sFastBreakPointsMade": 0,
                "sFieldGoalsAttempted": 2,
                "sFieldGoalsMade": 2,
                "sFoulsCoachTechnical": 0,
                "sMinus": 14,
                "sFoulsDisqualifying": 0,
                "sFoulsOffensive": 0,
                "sFoulsOn": 1,
                "sFoulsPersonal": 0,
                "sFoulsTechnical": 0,
                "sFoulsUnsportsmanlike": 0,
                "sFreeThrowsAttempted": 2,
                "sFreeThrowsMade": 1,
                "sTwoPointersAttempted": 2,
                "sAssistsTurnoverRatio": 0,
                "sReboundsTotal": 1,
                "sOffensiveRating": 0,
                "sTwoPointersPercentage": 1,
                "sTurnoversPercentage": 0,
                "sTrueShootingAttempts": 2.88,
                "sThreePointersPercentage": 0,
                "sStealsPercentage": 0,
                "sSecondChancePointsPercentage": 1,
                "sReboundsOffensivePercentage": 0,
                "sEfficiencyGameScore": 4.7,
                "sReboundsDefensivePercentage": 0,
                "sPointsInThePaintPercentage": 1,
                "sPlusMinusPoints": 0,
                "sFreeThrowsPercentage": 0.5,
                "sFieldGoalsPercentage": 1,
                "sFieldGoalsEffectivePercentage": 1,
                "sFastBreakPointsPercentage": 0,
                "sDefensiveRating": 0,
                "sEfficiency": 6,
                "sReboundsPercentage": 0,
                "sTrueShootingPercentage": 0.86805555555556,
                "pno": 15
            }, {
                "sAssists": 1,
                "sReboundsDefensive": 1,
                "sPlus": 18,
                "sPoints": 2,
                "sPointsFastBreak": 2,
                "sPointsInThePaint": 2,
                "sPointsInThePaintAttempted": 3,
                "sPointsInThePaintMade": 1,
                "sPointsSecondChance": 0,
                "sReboundsOffensive": 0,
                "sMVPVotes": 0,
                "sSecondChancePointsAttempted": 0,
                "sSecondChancePointsMade": 0,
                "sSteals": 0,
                "sThreePointersAttempted": 0,
                "sThreePointersMade": 0,
                "sTurnovers": 2,
                "sTwoPointersMade": 1,
                "sMinutes": 10,
                "sAssistsDefensive": 0,
                "sFoulsCoachDisqualifying": 0,
                "sBlocks": 0,
                "sBlocksReceived": 0,
                "sEfficiencyCustom": 0,
                "sFastBreakPointsAttempted": 1,
                "sFastBreakPointsMade": 1,
                "sFieldGoalsAttempted": 4,
                "sFieldGoalsMade": 1,
                "sFoulsCoachTechnical": 0,
                "sMinus": 15,
                "sFoulsDisqualifying": 0,
                "sFoulsOffensive": 0,
                "sFoulsOn": 0,
                "sFoulsPersonal": 0,
                "sFoulsTechnical": 0,
                "sFoulsUnsportsmanlike": 0,
                "sFreeThrowsAttempted": 0,
                "sFreeThrowsMade": 0,
                "sTwoPointersAttempted": 4,
                "sAssistsTurnoverRatio": 0.5,
                "sReboundsTotal": 1,
                "sOffensiveRating": 0,
                "sTwoPointersPercentage": 0.25,
                "sTurnoversPercentage": 0.33333333333333,
                "sTrueShootingAttempts": 4,
                "sThreePointersPercentage": 0,
                "sStealsPercentage": 0,
                "sSecondChancePointsPercentage": 0,
                "sReboundsOffensivePercentage": 0,
                "sEfficiencyGameScore": -1.4,
                "sReboundsDefensivePercentage": 0,
                "sPointsInThePaintPercentage": 0.33333333333333,
                "sPlusMinusPoints": 3,
                "sFreeThrowsPercentage": 0,
                "sFieldGoalsPercentage": 0.25,
                "sFieldGoalsEffectivePercentage": 0.25,
                "sFastBreakPointsPercentage": 1,
                "sDefensiveRating": 0,
                "sEfficiency": -1,
                "sReboundsPercentage": 0,
                "sTrueShootingPercentage": 0.25,
                "pno": 2
            }, {
                "sAssists": 2,
                "sReboundsDefensive": 0,
                "sPlus": 18,
                "sPoints": 2,
                "sPointsFastBreak": 0,
                "sPointsInThePaint": 0,
                "sPointsInThePaintAttempted": 0,
                "sPointsInThePaintMade": 0,
                "sPointsSecondChance": 0,
                "sReboundsOffensive": 0,
                "sMVPVotes": 0,
                "sSecondChancePointsAttempted": 0,
                "sSecondChancePointsMade": 0,
                "sSteals": 0,
                "sThreePointersAttempted": 1,
                "sThreePointersMade": 0,
                "sTurnovers": 0,
                "sTwoPointersMade": 1,
                "sMinutes": 10,
                "sAssistsDefensive": 0,
                "sFoulsCoachDisqualifying": 0,
                "sBlocks": 0,
                "sBlocksReceived": 0,
                "sEfficiencyCustom": 0,
                "sFastBreakPointsAttempted": 0,
                "sFastBreakPointsMade": 0,
                "sFieldGoalsAttempted": 2,
                "sFieldGoalsMade": 1,
                "sFoulsCoachTechnical": 0,
                "sMinus": 15,
                "sFoulsDisqualifying": 0,
                "sFoulsOffensive": 0,
                "sFoulsOn": 0,
                "sFoulsPersonal": 1,
                "sFoulsTechnical": 0,
                "sFoulsUnsportsmanlike": 0,
                "sFreeThrowsAttempted": 0,
                "sFreeThrowsMade": 0,
                "sTwoPointersAttempted": 1,
                "sAssistsTurnoverRatio": 0,
                "sReboundsTotal": 0,
                "sOffensiveRating": 0,
                "sTwoPointersPercentage": 1,
                "sTurnoversPercentage": 0,
                "sTrueShootingAttempts": 2,
                "sThreePointersPercentage": 0,
                "sStealsPercentage": 0,
                "sSecondChancePointsPercentage": 0,
                "sReboundsOffensivePercentage": 0,
                "sEfficiencyGameScore": 2,
                "sReboundsDefensivePercentage": 0,
                "sPointsInThePaintPercentage": 0,
                "sPlusMinusPoints": 3,
                "sFreeThrowsPercentage": 0,
                "sFieldGoalsPercentage": 0.5,
                "sFieldGoalsEffectivePercentage": 0.5,
                "sFastBreakPointsPercentage": 0,
                "sDefensiveRating": 0,
                "sEfficiency": 2,
                "sReboundsPercentage": 0,
                "sTrueShootingPercentage": 0.5,
                "pno": 3
            }, {
                "sAssists": 0,
                "sReboundsDefensive": 0,
                "sPlus": 0,
                "sPoints": 0,
                "sPointsFastBreak": 0,
                "sPointsInThePaint": 0,
                "sPointsInThePaintAttempted": 0,
                "sPointsInThePaintMade": 0,
                "sPointsSecondChance": 0,
                "sReboundsOffensive": 0,
                "sMVPVotes": 0,
                "sSecondChancePointsAttempted": 0,
                "sSecondChancePointsMade": 0,
                "sSteals": 0,
                "sThreePointersAttempted": 0,
                "sThreePointersMade": 0,
                "sTurnovers": 0,
                "sTwoPointersMade": 0,
                "sMinutes": 0,
                "sAssistsDefensive": 0,
                "sFoulsCoachDisqualifying": 0,
                "sBlocks": 0,
                "sBlocksReceived": 0,
                "sEfficiencyCustom": 0,
                "sFastBreakPointsAttempted": 0,
                "sFastBreakPointsMade": 0,
                "sFieldGoalsAttempted": 0,
                "sFieldGoalsMade": 0,
                "sFoulsCoachTechnical": 0,
                "sMinus": 0,
                "sFoulsDisqualifying": 0,
                "sFoulsOffensive": 0,
                "sFoulsOn": 0,
                "sFoulsPersonal": 0,
                "sFoulsTechnical": 0,
                "sFoulsUnsportsmanlike": 0,
                "sFreeThrowsAttempted": 0,
                "sFreeThrowsMade": 0,
                "sTwoPointersAttempted": 0,
                "sAssistsTurnoverRatio": 0,
                "sReboundsTotal": 0,
                "sOffensiveRating": 0,
                "sTwoPointersPercentage": 0,
                "sTurnoversPercentage": 0,
                "sTrueShootingAttempts": 0,
                "sThreePointersPercentage": 0,
                "sStealsPercentage": 0,
                "sSecondChancePointsPercentage": 0,
                "sReboundsOffensivePercentage": 0,
                "sEfficiencyGameScore": 0,
                "sReboundsDefensivePercentage": 0,
                "sPointsInThePaintPercentage": 0,
                "sPlusMinusPoints": 0,
                "sFreeThrowsPercentage": 0,
                "sFieldGoalsPercentage": 0,
                "sFieldGoalsEffectivePercentage": 0,
                "sFastBreakPointsPercentage": 0,
                "sDefensiveRating": 0,
                "sEfficiency": 0,
                "sReboundsPercentage": 0,
                "sTrueShootingPercentage": 0,
                "pno": 4
            }, {
                "sAssists": 0,
                "sReboundsDefensive": 2,
                "sPlus": 4,
                "sPoints": 0,
                "sPointsFastBreak": 0,
                "sPointsInThePaint": 0,
                "sPointsInThePaintAttempted": 0,
                "sPointsInThePaintMade": 0,
                "sPointsSecondChance": 0,
                "sReboundsOffensive": 0,
                "sMVPVotes": 0,
                "sSecondChancePointsAttempted": 0,
                "sSecondChancePointsMade": 0,
                "sSteals": 0,
                "sThreePointersAttempted": 0,
                "sThreePointersMade": 0,
                "sTurnovers": 0,
                "sTwoPointersMade": 0,
                "sMinutes": 3.2686666666667,
                "sAssistsDefensive": 0,
                "sFoulsCoachDisqualifying": 0,
                "sBlocks": 0,
                "sBlocksReceived": 0,
                "sEfficiencyCustom": 0,
                "sFastBreakPointsAttempted": 0,
                "sFastBreakPointsMade": 0,
                "sFieldGoalsAttempted": 0,
                "sFieldGoalsMade": 0,
                "sFoulsCoachTechnical": 0,
                "sMinus": 1,
                "sFoulsDisqualifying": 0,
                "sFoulsOffensive": 0,
                "sFoulsOn": 0,
                "sFoulsPersonal": 1,
                "sFoulsTechnical": 0,
                "sFoulsUnsportsmanlike": 0,
                "sFreeThrowsAttempted": 0,
                "sFreeThrowsMade": 0,
                "sTwoPointersAttempted": 0,
                "sAssistsTurnoverRatio": 0,
                "sReboundsTotal": 2,
                "sOffensiveRating": 0,
                "sTwoPointersPercentage": 0,
                "sTurnoversPercentage": 0,
                "sTrueShootingAttempts": 0,
                "sThreePointersPercentage": 0,
                "sStealsPercentage": 0,
                "sSecondChancePointsPercentage": 0,
                "sReboundsOffensivePercentage": 0,
                "sEfficiencyGameScore": 0.2,
                "sReboundsDefensivePercentage": 0,
                "sPointsInThePaintPercentage": 0,
                "sPlusMinusPoints": 3,
                "sFreeThrowsPercentage": 0,
                "sFieldGoalsPercentage": 0,
                "sFieldGoalsEffectivePercentage": 0,
                "sFastBreakPointsPercentage": 0,
                "sDefensiveRating": 0,
                "sEfficiency": 1,
                "sReboundsPercentage": 0,
                "sTrueShootingPercentage": 0,
                "pno": 5
            }, {
                "sAssists": 0,
                "sReboundsDefensive": 1,
                "sPlus": 0,
                "sPoints": 0,
                "sPointsFastBreak": 0,
                "sPointsInThePaint": 0,
                "sPointsInThePaintAttempted": 1,
                "sPointsInThePaintMade": 0,
                "sPointsSecondChance": 0,
                "sReboundsOffensive": 1,
                "sMVPVotes": 0,
                "sSecondChancePointsAttempted": 0,
                "sSecondChancePointsMade": 0,
                "sSteals": 0,
                "sThreePointersAttempted": 0,
                "sThreePointersMade": 0,
                "sTurnovers": 0,
                "sTwoPointersMade": 0,
                "sMinutes": 1.5195,
                "sAssistsDefensive": 0,
                "sFoulsCoachDisqualifying": 0,
                "sBlocks": 0,
                "sBlocksReceived": 0,
                "sEfficiencyCustom": 0,
                "sFastBreakPointsAttempted": 0,
                "sFastBreakPointsMade": 0,
                "sFieldGoalsAttempted": 1,
                "sFieldGoalsMade": 0,
                "sFoulsCoachTechnical": 0,
                "sMinus": 1,
                "sFoulsDisqualifying": 0,
                "sFoulsOffensive": 0,
                "sFoulsOn": 0,
                "sFoulsPersonal": 0,
                "sFoulsTechnical": 0,
                "sFoulsUnsportsmanlike": 0,
                "sFreeThrowsAttempted": 0,
                "sFreeThrowsMade": 0,
                "sTwoPointersAttempted": 1,
                "sAssistsTurnoverRatio": 0,
                "sReboundsTotal": 2,
                "sOffensiveRating": 0,
                "sTwoPointersPercentage": 0,
                "sTurnoversPercentage": 0,
                "sTrueShootingAttempts": 1,
                "sThreePointersPercentage": 0,
                "sStealsPercentage": 0,
                "sSecondChancePointsPercentage": 0,
                "sReboundsOffensivePercentage": 0,
                "sEfficiencyGameScore": 0.3,
                "sReboundsDefensivePercentage": 0,
                "sPointsInThePaintPercentage": 0,
                "sPlusMinusPoints": -1,
                "sFreeThrowsPercentage": 0,
                "sFieldGoalsPercentage": 0,
                "sFieldGoalsEffectivePercentage": 0,
                "sFastBreakPointsPercentage": 0,
                "sDefensiveRating": 0,
                "sEfficiency": 1,
                "sReboundsPercentage": 0,
                "sTrueShootingPercentage": 0,
                "pno": 6
            }, {
                "sAssists": 1,
                "sReboundsDefensive": 0,
                "sPlus": 18,
                "sPoints": 2,
                "sPointsFastBreak": 0,
                "sPointsInThePaint": 0,
                "sPointsInThePaintAttempted": 4,
                "sPointsInThePaintMade": 0,
                "sPointsSecondChance": 0,
                "sReboundsOffensive": 0,
                "sMVPVotes": 0,
                "sSecondChancePointsAttempted": 0,
                "sSecondChancePointsMade": 0,
                "sSteals": 0,
                "sThreePointersAttempted": 0,
                "sThreePointersMade": 0,
                "sTurnovers": 1,
                "sTwoPointersMade": 0,
                "sMinutes": 8.4805,
                "sAssistsDefensive": 0,
                "sFoulsCoachDisqualifying": 0,
                "sBlocks": 0,
                "sBlocksReceived": 0,
                "sEfficiencyCustom": 0,
                "sFastBreakPointsAttempted": 0,
                "sFastBreakPointsMade": 0,
                "sFieldGoalsAttempted": 4,
                "sFieldGoalsMade": 0,
                "sFoulsCoachTechnical": 0,
                "sMinus": 14,
                "sFoulsDisqualifying": 0,
                "sFoulsOffensive": 0,
                "sFoulsOn": 1,
                "sFoulsPersonal": 0,
                "sFoulsTechnical": 0,
                "sFoulsUnsportsmanlike": 0,
                "sFreeThrowsAttempted": 2,
                "sFreeThrowsMade": 2,
                "sTwoPointersAttempted": 4,
                "sAssistsTurnoverRatio": 1,
                "sReboundsTotal": 0,
                "sOffensiveRating": 0,
                "sTwoPointersPercentage": 0,
                "sTurnoversPercentage": 0.17006802721088,
                "sTrueShootingAttempts": 4.88,
                "sThreePointersPercentage": 0,
                "sStealsPercentage": 0,
                "sSecondChancePointsPercentage": 0,
                "sReboundsOffensivePercentage": 0,
                "sEfficiencyGameScore": -1.1,
                "sReboundsDefensivePercentage": 0,
                "sPointsInThePaintPercentage": 0,
                "sPlusMinusPoints": 4,
                "sFreeThrowsPercentage": 1,
                "sFieldGoalsPercentage": 0,
                "sFieldGoalsEffectivePercentage": 0,
                "sFastBreakPointsPercentage": 0,
                "sDefensiveRating": 0,
                "sEfficiency": -1,
                "sReboundsPercentage": 0,
                "sTrueShootingPercentage": 0.20491803278689,
                "pno": 7
            }, {
                "sAssists": 1,
                "sReboundsDefensive": 5,
                "sPlus": 18,
                "sPoints": 7,
                "sPointsFastBreak": 0,
                "sPointsInThePaint": 2,
                "sPointsInThePaintAttempted": 2,
                "sPointsInThePaintMade": 1,
                "sPointsSecondChance": 2,
                "sReboundsOffensive": 0,
                "sMVPVotes": 0,
                "sSecondChancePointsAttempted": 1,
                "sSecondChancePointsMade": 1,
                "sSteals": 1,
                "sThreePointersAttempted": 2,
                "sThreePointersMade": 1,
                "sTurnovers": 0,
                "sTwoPointersMade": 2,
                "sMinutes": 10,
                "sAssistsDefensive": 0,
                "sFoulsCoachDisqualifying": 0,
                "sBlocks": 0,
                "sBlocksReceived": 0,
                "sEfficiencyCustom": 0,
                "sFastBreakPointsAttempted": 0,
                "sFastBreakPointsMade": 0,
                "sFieldGoalsAttempted": 5,
                "sFieldGoalsMade": 3,
                "sFoulsCoachTechnical": 0,
                "sMinus": 15,
                "sFoulsDisqualifying": 0,
                "sFoulsOffensive": 0,
                "sFoulsOn": 0,
                "sFoulsPersonal": 1,
                "sFoulsTechnical": 0,
                "sFoulsUnsportsmanlike": 0,
                "sFreeThrowsAttempted": 0,
                "sFreeThrowsMade": 0,
                "sTwoPointersAttempted": 3,
                "sAssistsTurnoverRatio": 0,
                "sReboundsTotal": 5,
                "sOffensiveRating": 0,
                "sTwoPointersPercentage": 0.66666666666667,
                "sTurnoversPercentage": 0,
                "sTrueShootingAttempts": 5,
                "sThreePointersPercentage": 0.5,
                "sStealsPercentage": 0,
                "sSecondChancePointsPercentage": 1,
                "sReboundsOffensivePercentage": 0,
                "sEfficiencyGameScore": 7.5,
                "sReboundsDefensivePercentage": 0,
                "sPointsInThePaintPercentage": 0.5,
                "sPlusMinusPoints": 3,
                "sFreeThrowsPercentage": 0,
                "sFieldGoalsPercentage": 0.6,
                "sFieldGoalsEffectivePercentage": 0.7,
                "sFastBreakPointsPercentage": 0,
                "sDefensiveRating": 0,
                "sEfficiency": 11,
                "sReboundsPercentage": 0,
                "sTrueShootingPercentage": 0.7,
                "pno": 8
            }, {
                "sAssists": 0,
                "sReboundsDefensive": 0,
                "sPlus": 0,
                "sPoints": 0,
                "sPointsFastBreak": 0,
                "sPointsInThePaint": 0,
                "sPointsInThePaintAttempted": 0,
                "sPointsInThePaintMade": 0,
                "sPointsSecondChance": 0,
                "sReboundsOffensive": 0,
                "sMVPVotes": 0,
                "sSecondChancePointsAttempted": 0,
                "sSecondChancePointsMade": 0,
                "sSteals": 0,
                "sThreePointersAttempted": 0,
                "sThreePointersMade": 0,
                "sTurnovers": 0,
                "sTwoPointersMade": 0,
                "sMinutes": 0,
                "sAssistsDefensive": 0,
                "sFoulsCoachDisqualifying": 0,
                "sBlocks": 0,
                "sBlocksReceived": 0,
                "sEfficiencyCustom": 0,
                "sFastBreakPointsAttempted": 0,
                "sFastBreakPointsMade": 0,
                "sFieldGoalsAttempted": 0,
                "sFieldGoalsMade": 0,
                "sFoulsCoachTechnical": 0,
                "sMinus": 0,
                "sFoulsDisqualifying": 0,
                "sFoulsOffensive": 0,
                "sFoulsOn": 0,
                "sFoulsPersonal": 0,
                "sFoulsTechnical": 0,
                "sFoulsUnsportsmanlike": 0,
                "sFreeThrowsAttempted": 0,
                "sFreeThrowsMade": 0,
                "sTwoPointersAttempted": 0,
                "sAssistsTurnoverRatio": 0,
                "sReboundsTotal": 0,
                "sOffensiveRating": 0,
                "sTwoPointersPercentage": 0,
                "sTurnoversPercentage": 0,
                "sTrueShootingAttempts": 0,
                "sThreePointersPercentage": 0,
                "sStealsPercentage": 0,
                "sSecondChancePointsPercentage": 0,
                "sReboundsOffensivePercentage": 0,
                "sEfficiencyGameScore": 0,
                "sReboundsDefensivePercentage": 0,
                "sPointsInThePaintPercentage": 0,
                "sPlusMinusPoints": 0,
                "sFreeThrowsPercentage": 0,
                "sFieldGoalsPercentage": 0,
                "sFieldGoalsEffectivePercentage": 0,
                "sFastBreakPointsPercentage": 0,
                "sDefensiveRating": 0,
                "sEfficiency": 0,
                "sReboundsPercentage": 0,
                "sTrueShootingPercentage": 0,
                "pno": 17
            }]
        },
        "periods": [{
            "team": {
                "sAssists": 5,
                "sReboundsTeamDefensive": 0,
                "sMinutes": 0,
                "sPointsFastBreak": 2,
                "sPointsFromTurnovers": 3,
                "sPointsInThePaint": 8,
                "sPointsInThePaintAttempted": 12,
                "sPointsInThePaintMade": 4,
                "sPointsSecondChance": 3,
                "sReboundsDefensive": 9,
                "sReboundsOffensive": 3,
                "sReboundsTeamOffensive": 1,
                "sFreeThrowsMade": 3,
                "sSecondChancePointsAttempted": 2,
                "sSecondChancePointsMade": 2,
                "sSteals": 1,
                "sTimeLeading": 8.1828333333333,
                "sTimesScoresLevel": 2,
                "sThreePointersAttempted": 3,
                "sThreePointersMade": 1,
                "sTurnovers": 3,
                "sTurnoversTeam": 0,
                "sTwoPointersAttempted": 15,
                "sLeadChanges": 5,
                "sFreeThrowsAttempted": 4,
                "sAssistsDefensive": 0,
                "sFastBreakPointsMade": 1,
                "sBenchPoints": 0,
                "sBiggestLead": 7,
                "sBiggestLeadScore": "2 - 9",
                "sBiggestScoringRun": 7,
                "sBiggestScoringRunScore": "2-9",
                "sBlocks": 0,
                "sBlocksReceived": 0,
                "sEfficiencyCustom": 0,
                "sFastBreakPointsAttempted": 1,
                "sFieldGoalsAttempted": 18,
                "sFoulsUnsportsmanlike": 0,
                "sFieldGoalsMade": 7,
                "sFoulsBenchTechnical": 0,
                "sFoulsCoachDisqualifying": 0,
                "sFoulsCoachTechnical": 0,
                "sFoulsDisqualifying": 0,
                "sFoulsOn": 2,
                "sFoulsOffensive": 0,
                "sFoulsPersonal": 3,
                "sFoulsTechnical": 0,
                "sFoulsTechnicalOther": 0,
                "sTwoPointersMade": 6,
                "sAssistsTurnoverRatio": 1.6666666666667,
                "sPossessionsOpponent": 0,
                "sTransitionOffence": 2,
                "sTransitionDefence": 0,
                "sThreePointersPercentage": 0.33333333333333,
                "sSecondChancePointsPercentage": 1,
                "sReboundsTeam": 1,
                "sReboundsPersonal": 11,
                "sPossessions": 0,
                "sFastBreakPointsPercentage": 1,
                "sPointsInThePaintPercentage": 0.33333333333333,
                "sPoints": 18,
                "sFreeThrowsPercentage": 0.75,
                "sFoulsTotal": 3,
                "sFoulsTeam": 0,
                "sFieldGoalsPercentage": 0.38888888888889,
                "sFieldGoalsEffectiveAdjusted": 0.41666666666667,
                "sTwoPointersPercentage": 0.4,
                "sDefensivePointsPerPossession": 0,
                "sDefensiveRating": 0,
                "sEfficiency": 9,
                "sOffensivePointsPerPossession": 0,
                "sOffensiveRating": 0,
                "sPace": 0,
                "sPointsAgainst": 15,
                "sReboundsTotal": 12
            },
            "players": [{
                "sAssists": 0,
                "sReboundsDefensive": 0,
                "sPlus": 0,
                "sPoints": 0,
                "sPointsFastBreak": 0,
                "sPointsInThePaint": 0,
                "sPointsInThePaintAttempted": 0,
                "sPointsInThePaintMade": 0,
                "sPointsSecondChance": 0,
                "sReboundsOffensive": 0,
                "sMVPVotes": 0,
                "sSecondChancePointsAttempted": 0,
                "sSecondChancePointsMade": 0,
                "sSteals": 0,
                "sThreePointersAttempted": 0,
                "sThreePointersMade": 0,
                "sTurnovers": 0,
                "sTwoPointersMade": 0,
                "sMinutes": 0,
                "sAssistsDefensive": 0,
                "sFoulsCoachDisqualifying": 0,
                "sBlocks": 0,
                "sBlocksReceived": 0,
                "sEfficiencyCustom": 0,
                "sFastBreakPointsAttempted": 0,
                "sFastBreakPointsMade": 0,
                "sFieldGoalsAttempted": 0,
                "sFieldGoalsMade": 0,
                "sFoulsCoachTechnical": 0,
                "sMinus": 0,
                "sFoulsDisqualifying": 0,
                "sFoulsOffensive": 0,
                "sFoulsOn": 0,
                "sFoulsPersonal": 0,
                "sFoulsTechnical": 0,
                "sFoulsUnsportsmanlike": 0,
                "sFreeThrowsAttempted": 0,
                "sFreeThrowsMade": 0,
                "sTwoPointersAttempted": 0,
                "sAssistsTurnoverRatio": 0,
                "sReboundsTotal": 0,
                "sOffensiveRating": 0,
                "sTwoPointersPercentage": 0,
                "sTurnoversPercentage": 0,
                "sTrueShootingAttempts": 0,
                "sThreePointersPercentage": 0,
                "sStealsPercentage": 0,
                "sSecondChancePointsPercentage": 0,
                "sReboundsOffensivePercentage": 0,
                "sEfficiencyGameScore": 0,
                "sReboundsDefensivePercentage": 0,
                "sPointsInThePaintPercentage": 0,
                "sPlusMinusPoints": 0,
                "sFreeThrowsPercentage": 0,
                "sFieldGoalsPercentage": 0,
                "sFieldGoalsEffectivePercentage": 0,
                "sFastBreakPointsPercentage": 0,
                "sDefensiveRating": 0,
                "sEfficiency": 0,
                "sReboundsPercentage": 0,
                "sTrueShootingPercentage": 0,
                "pno": 1
            }, {
                "sAssists": 0,
                "sReboundsDefensive": 0,
                "sPlus": 0,
                "sPoints": 0,
                "sPointsFastBreak": 0,
                "sPointsInThePaint": 0,
                "sPointsInThePaintAttempted": 0,
                "sPointsInThePaintMade": 0,
                "sPointsSecondChance": 0,
                "sReboundsOffensive": 0,
                "sMVPVotes": 0,
                "sSecondChancePointsAttempted": 0,
                "sSecondChancePointsMade": 0,
                "sSteals": 0,
                "sThreePointersAttempted": 0,
                "sThreePointersMade": 0,
                "sTurnovers": 0,
                "sTwoPointersMade": 0,
                "sMinutes": 0,
                "sAssistsDefensive": 0,
                "sFoulsCoachDisqualifying": 0,
                "sBlocks": 0,
                "sBlocksReceived": 0,
                "sEfficiencyCustom": 0,
                "sFastBreakPointsAttempted": 0,
                "sFastBreakPointsMade": 0,
                "sFieldGoalsAttempted": 0,
                "sFieldGoalsMade": 0,
                "sFoulsCoachTechnical": 0,
                "sMinus": 0,
                "sFoulsDisqualifying": 0,
                "sFoulsOffensive": 0,
                "sFoulsOn": 0,
                "sFoulsPersonal": 0,
                "sFoulsTechnical": 0,
                "sFoulsUnsportsmanlike": 0,
                "sFreeThrowsAttempted": 0,
                "sFreeThrowsMade": 0,
                "sTwoPointersAttempted": 0,
                "sAssistsTurnoverRatio": 0,
                "sReboundsTotal": 0,
                "sOffensiveRating": 0,
                "sTwoPointersPercentage": 0,
                "sTurnoversPercentage": 0,
                "sTrueShootingAttempts": 0,
                "sThreePointersPercentage": 0,
                "sStealsPercentage": 0,
                "sSecondChancePointsPercentage": 0,
                "sReboundsOffensivePercentage": 0,
                "sEfficiencyGameScore": 0,
                "sReboundsDefensivePercentage": 0,
                "sPointsInThePaintPercentage": 0,
                "sPlusMinusPoints": 0,
                "sFreeThrowsPercentage": 0,
                "sFieldGoalsPercentage": 0,
                "sFieldGoalsEffectivePercentage": 0,
                "sFastBreakPointsPercentage": 0,
                "sDefensiveRating": 0,
                "sEfficiency": 0,
                "sReboundsPercentage": 0,
                "sTrueShootingPercentage": 0,
                "pno": 13
            }, {
                "sAssists": 0,
                "sReboundsDefensive": 0,
                "sPlus": 14,
                "sPoints": 5,
                "sPointsFastBreak": 0,
                "sPointsInThePaint": 4,
                "sPointsInThePaintAttempted": 2,
                "sPointsInThePaintMade": 2,
                "sPointsSecondChance": 1,
                "sReboundsOffensive": 1,
                "sMVPVotes": 0,
                "sSecondChancePointsAttempted": 1,
                "sSecondChancePointsMade": 1,
                "sSteals": 0,
                "sThreePointersAttempted": 0,
                "sThreePointersMade": 0,
                "sTurnovers": 0,
                "sTwoPointersMade": 2,
                "sMinutes": 6.7313333333333,
                "sAssistsDefensive": 0,
                "sFoulsCoachDisqualifying": 0,
                "sBlocks": 0,
                "sBlocksReceived": 0,
                "sEfficiencyCustom": 0,
                "sFastBreakPointsAttempted": 0,
                "sFastBreakPointsMade": 0,
                "sFieldGoalsAttempted": 2,
                "sFieldGoalsMade": 2,
                "sFoulsCoachTechnical": 0,
                "sMinus": 14,
                "sFoulsDisqualifying": 0,
                "sFoulsOffensive": 0,
                "sFoulsOn": 1,
                "sFoulsPersonal": 0,
                "sFoulsTechnical": 0,
                "sFoulsUnsportsmanlike": 0,
                "sFreeThrowsAttempted": 2,
                "sFreeThrowsMade": 1,
                "sTwoPointersAttempted": 2,
                "sAssistsTurnoverRatio": 0,
                "sReboundsTotal": 1,
                "sOffensiveRating": 0,
                "sTwoPointersPercentage": 1,
                "sTurnoversPercentage": 0,
                "sTrueShootingAttempts": 2.88,
                "sThreePointersPercentage": 0,
                "sStealsPercentage": 0,
                "sSecondChancePointsPercentage": 1,
                "sReboundsOffensivePercentage": 0,
                "sEfficiencyGameScore": 4.7,
                "sReboundsDefensivePercentage": 0,
                "sPointsInThePaintPercentage": 1,
                "sPlusMinusPoints": 0,
                "sFreeThrowsPercentage": 0.5,
                "sFieldGoalsPercentage": 1,
                "sFieldGoalsEffectivePercentage": 1,
                "sFastBreakPointsPercentage": 0,
                "sDefensiveRating": 0,
                "sEfficiency": 6,
                "sReboundsPercentage": 0,
                "sTrueShootingPercentage": 0.86805555555556,
                "pno": 15
            }, {
                "sAssists": 1,
                "sReboundsDefensive": 1,
                "sPlus": 18,
                "sPoints": 2,
                "sPointsFastBreak": 2,
                "sPointsInThePaint": 2,
                "sPointsInThePaintAttempted": 3,
                "sPointsInThePaintMade": 1,
                "sPointsSecondChance": 0,
                "sReboundsOffensive": 0,
                "sMVPVotes": 0,
                "sSecondChancePointsAttempted": 0,
                "sSecondChancePointsMade": 0,
                "sSteals": 0,
                "sThreePointersAttempted": 0,
                "sThreePointersMade": 0,
                "sTurnovers": 2,
                "sTwoPointersMade": 1,
                "sMinutes": 10,
                "sAssistsDefensive": 0,
                "sFoulsCoachDisqualifying": 0,
                "sBlocks": 0,
                "sBlocksReceived": 0,
                "sEfficiencyCustom": 0,
                "sFastBreakPointsAttempted": 1,
                "sFastBreakPointsMade": 1,
                "sFieldGoalsAttempted": 4,
                "sFieldGoalsMade": 1,
                "sFoulsCoachTechnical": 0,
                "sMinus": 15,
                "sFoulsDisqualifying": 0,
                "sFoulsOffensive": 0,
                "sFoulsOn": 0,
                "sFoulsPersonal": 0,
                "sFoulsTechnical": 0,
                "sFoulsUnsportsmanlike": 0,
                "sFreeThrowsAttempted": 0,
                "sFreeThrowsMade": 0,
                "sTwoPointersAttempted": 4,
                "sAssistsTurnoverRatio": 0.5,
                "sReboundsTotal": 1,
                "sOffensiveRating": 0,
                "sTwoPointersPercentage": 0.25,
                "sTurnoversPercentage": 0.33333333333333,
                "sTrueShootingAttempts": 4,
                "sThreePointersPercentage": 0,
                "sStealsPercentage": 0,
                "sSecondChancePointsPercentage": 0,
                "sReboundsOffensivePercentage": 0,
                "sEfficiencyGameScore": -1.4,
                "sReboundsDefensivePercentage": 0,
                "sPointsInThePaintPercentage": 0.33333333333333,
                "sPlusMinusPoints": 3,
                "sFreeThrowsPercentage": 0,
                "sFieldGoalsPercentage": 0.25,
                "sFieldGoalsEffectivePercentage": 0.25,
                "sFastBreakPointsPercentage": 1,
                "sDefensiveRating": 0,
                "sEfficiency": -1,
                "sReboundsPercentage": 0,
                "sTrueShootingPercentage": 0.25,
                "pno": 2
            }, {
                "sAssists": 2,
                "sReboundsDefensive": 0,
                "sPlus": 18,
                "sPoints": 2,
                "sPointsFastBreak": 0,
                "sPointsInThePaint": 0,
                "sPointsInThePaintAttempted": 0,
                "sPointsInThePaintMade": 0,
                "sPointsSecondChance": 0,
                "sReboundsOffensive": 0,
                "sMVPVotes": 0,
                "sSecondChancePointsAttempted": 0,
                "sSecondChancePointsMade": 0,
                "sSteals": 0,
                "sThreePointersAttempted": 1,
                "sThreePointersMade": 0,
                "sTurnovers": 0,
                "sTwoPointersMade": 1,
                "sMinutes": 10,
                "sAssistsDefensive": 0,
                "sFoulsCoachDisqualifying": 0,
                "sBlocks": 0,
                "sBlocksReceived": 0,
                "sEfficiencyCustom": 0,
                "sFastBreakPointsAttempted": 0,
                "sFastBreakPointsMade": 0,
                "sFieldGoalsAttempted": 2,
                "sFieldGoalsMade": 1,
                "sFoulsCoachTechnical": 0,
                "sMinus": 15,
                "sFoulsDisqualifying": 0,
                "sFoulsOffensive": 0,
                "sFoulsOn": 0,
                "sFoulsPersonal": 1,
                "sFoulsTechnical": 0,
                "sFoulsUnsportsmanlike": 0,
                "sFreeThrowsAttempted": 0,
                "sFreeThrowsMade": 0,
                "sTwoPointersAttempted": 1,
                "sAssistsTurnoverRatio": 0,
                "sReboundsTotal": 0,
                "sOffensiveRating": 0,
                "sTwoPointersPercentage": 1,
                "sTurnoversPercentage": 0,
                "sTrueShootingAttempts": 2,
                "sThreePointersPercentage": 0,
                "sStealsPercentage": 0,
                "sSecondChancePointsPercentage": 0,
                "sReboundsOffensivePercentage": 0,
                "sEfficiencyGameScore": 2,
                "sReboundsDefensivePercentage": 0,
                "sPointsInThePaintPercentage": 0,
                "sPlusMinusPoints": 3,
                "sFreeThrowsPercentage": 0,
                "sFieldGoalsPercentage": 0.5,
                "sFieldGoalsEffectivePercentage": 0.5,
                "sFastBreakPointsPercentage": 0,
                "sDefensiveRating": 0,
                "sEfficiency": 2,
                "sReboundsPercentage": 0,
                "sTrueShootingPercentage": 0.5,
                "pno": 3
            }, {
                "sAssists": 0,
                "sReboundsDefensive": 0,
                "sPlus": 0,
                "sPoints": 0,
                "sPointsFastBreak": 0,
                "sPointsInThePaint": 0,
                "sPointsInThePaintAttempted": 0,
                "sPointsInThePaintMade": 0,
                "sPointsSecondChance": 0,
                "sReboundsOffensive": 0,
                "sMVPVotes": 0,
                "sSecondChancePointsAttempted": 0,
                "sSecondChancePointsMade": 0,
                "sSteals": 0,
                "sThreePointersAttempted": 0,
                "sThreePointersMade": 0,
                "sTurnovers": 0,
                "sTwoPointersMade": 0,
                "sMinutes": 0,
                "sAssistsDefensive": 0,
                "sFoulsCoachDisqualifying": 0,
                "sBlocks": 0,
                "sBlocksReceived": 0,
                "sEfficiencyCustom": 0,
                "sFastBreakPointsAttempted": 0,
                "sFastBreakPointsMade": 0,
                "sFieldGoalsAttempted": 0,
                "sFieldGoalsMade": 0,
                "sFoulsCoachTechnical": 0,
                "sMinus": 0,
                "sFoulsDisqualifying": 0,
                "sFoulsOffensive": 0,
                "sFoulsOn": 0,
                "sFoulsPersonal": 0,
                "sFoulsTechnical": 0,
                "sFoulsUnsportsmanlike": 0,
                "sFreeThrowsAttempted": 0,
                "sFreeThrowsMade": 0,
                "sTwoPointersAttempted": 0,
                "sAssistsTurnoverRatio": 0,
                "sReboundsTotal": 0,
                "sOffensiveRating": 0,
                "sTwoPointersPercentage": 0,
                "sTurnoversPercentage": 0,
                "sTrueShootingAttempts": 0,
                "sThreePointersPercentage": 0,
                "sStealsPercentage": 0,
                "sSecondChancePointsPercentage": 0,
                "sReboundsOffensivePercentage": 0,
                "sEfficiencyGameScore": 0,
                "sReboundsDefensivePercentage": 0,
                "sPointsInThePaintPercentage": 0,
                "sPlusMinusPoints": 0,
                "sFreeThrowsPercentage": 0,
                "sFieldGoalsPercentage": 0,
                "sFieldGoalsEffectivePercentage": 0,
                "sFastBreakPointsPercentage": 0,
                "sDefensiveRating": 0,
                "sEfficiency": 0,
                "sReboundsPercentage": 0,
                "sTrueShootingPercentage": 0,
                "pno": 4
            }, {
                "sAssists": 0,
                "sReboundsDefensive": 2,
                "sPlus": 4,
                "sPoints": 0,
                "sPointsFastBreak": 0,
                "sPointsInThePaint": 0,
                "sPointsInThePaintAttempted": 0,
                "sPointsInThePaintMade": 0,
                "sPointsSecondChance": 0,
                "sReboundsOffensive": 0,
                "sMVPVotes": 0,
                "sSecondChancePointsAttempted": 0,
                "sSecondChancePointsMade": 0,
                "sSteals": 0,
                "sThreePointersAttempted": 0,
                "sThreePointersMade": 0,
                "sTurnovers": 0,
                "sTwoPointersMade": 0,
                "sMinutes": 3.2686666666667,
                "sAssistsDefensive": 0,
                "sFoulsCoachDisqualifying": 0,
                "sBlocks": 0,
                "sBlocksReceived": 0,
                "sEfficiencyCustom": 0,
                "sFastBreakPointsAttempted": 0,
                "sFastBreakPointsMade": 0,
                "sFieldGoalsAttempted": 0,
                "sFieldGoalsMade": 0,
                "sFoulsCoachTechnical": 0,
                "sMinus": 1,
                "sFoulsDisqualifying": 0,
                "sFoulsOffensive": 0,
                "sFoulsOn": 0,
                "sFoulsPersonal": 1,
                "sFoulsTechnical": 0,
                "sFoulsUnsportsmanlike": 0,
                "sFreeThrowsAttempted": 0,
                "sFreeThrowsMade": 0,
                "sTwoPointersAttempted": 0,
                "sAssistsTurnoverRatio": 0,
                "sReboundsTotal": 2,
                "sOffensiveRating": 0,
                "sTwoPointersPercentage": 0,
                "sTurnoversPercentage": 0,
                "sTrueShootingAttempts": 0,
                "sThreePointersPercentage": 0,
                "sStealsPercentage": 0,
                "sSecondChancePointsPercentage": 0,
                "sReboundsOffensivePercentage": 0,
                "sEfficiencyGameScore": 0.2,
                "sReboundsDefensivePercentage": 0,
                "sPointsInThePaintPercentage": 0,
                "sPlusMinusPoints": 3,
                "sFreeThrowsPercentage": 0,
                "sFieldGoalsPercentage": 0,
                "sFieldGoalsEffectivePercentage": 0,
                "sFastBreakPointsPercentage": 0,
                "sDefensiveRating": 0,
                "sEfficiency": 1,
                "sReboundsPercentage": 0,
                "sTrueShootingPercentage": 0,
                "pno": 5
            }, {
                "sAssists": 0,
                "sReboundsDefensive": 1,
                "sPlus": 0,
                "sPoints": 0,
                "sPointsFastBreak": 0,
                "sPointsInThePaint": 0,
                "sPointsInThePaintAttempted": 1,
                "sPointsInThePaintMade": 0,
                "sPointsSecondChance": 0,
                "sReboundsOffensive": 1,
                "sMVPVotes": 0,
                "sSecondChancePointsAttempted": 0,
                "sSecondChancePointsMade": 0,
                "sSteals": 0,
                "sThreePointersAttempted": 0,
                "sThreePointersMade": 0,
                "sTurnovers": 0,
                "sTwoPointersMade": 0,
                "sMinutes": 1.5195,
                "sAssistsDefensive": 0,
                "sFoulsCoachDisqualifying": 0,
                "sBlocks": 0,
                "sBlocksReceived": 0,
                "sEfficiencyCustom": 0,
                "sFastBreakPointsAttempted": 0,
                "sFastBreakPointsMade": 0,
                "sFieldGoalsAttempted": 1,
                "sFieldGoalsMade": 0,
                "sFoulsCoachTechnical": 0,
                "sMinus": 1,
                "sFoulsDisqualifying": 0,
                "sFoulsOffensive": 0,
                "sFoulsOn": 0,
                "sFoulsPersonal": 0,
                "sFoulsTechnical": 0,
                "sFoulsUnsportsmanlike": 0,
                "sFreeThrowsAttempted": 0,
                "sFreeThrowsMade": 0,
                "sTwoPointersAttempted": 1,
                "sAssistsTurnoverRatio": 0,
                "sReboundsTotal": 2,
                "sOffensiveRating": 0,
                "sTwoPointersPercentage": 0,
                "sTurnoversPercentage": 0,
                "sTrueShootingAttempts": 1,
                "sThreePointersPercentage": 0,
                "sStealsPercentage": 0,
                "sSecondChancePointsPercentage": 0,
                "sReboundsOffensivePercentage": 0,
                "sEfficiencyGameScore": 0.3,
                "sReboundsDefensivePercentage": 0,
                "sPointsInThePaintPercentage": 0,
                "sPlusMinusPoints": -1,
                "sFreeThrowsPercentage": 0,
                "sFieldGoalsPercentage": 0,
                "sFieldGoalsEffectivePercentage": 0,
                "sFastBreakPointsPercentage": 0,
                "sDefensiveRating": 0,
                "sEfficiency": 1,
                "sReboundsPercentage": 0,
                "sTrueShootingPercentage": 0,
                "pno": 6
            }, {
                "sAssists": 1,
                "sReboundsDefensive": 0,
                "sPlus": 18,
                "sPoints": 2,
                "sPointsFastBreak": 0,
                "sPointsInThePaint": 0,
                "sPointsInThePaintAttempted": 4,
                "sPointsInThePaintMade": 0,
                "sPointsSecondChance": 0,
                "sReboundsOffensive": 0,
                "sMVPVotes": 0,
                "sSecondChancePointsAttempted": 0,
                "sSecondChancePointsMade": 0,
                "sSteals": 0,
                "sThreePointersAttempted": 0,
                "sThreePointersMade": 0,
                "sTurnovers": 1,
                "sTwoPointersMade": 0,
                "sMinutes": 8.4805,
                "sAssistsDefensive": 0,
                "sFoulsCoachDisqualifying": 0,
                "sBlocks": 0,
                "sBlocksReceived": 0,
                "sEfficiencyCustom": 0,
                "sFastBreakPointsAttempted": 0,
                "sFastBreakPointsMade": 0,
                "sFieldGoalsAttempted": 4,
                "sFieldGoalsMade": 0,
                "sFoulsCoachTechnical": 0,
                "sMinus": 14,
                "sFoulsDisqualifying": 0,
                "sFoulsOffensive": 0,
                "sFoulsOn": 1,
                "sFoulsPersonal": 0,
                "sFoulsTechnical": 0,
                "sFoulsUnsportsmanlike": 0,
                "sFreeThrowsAttempted": 2,
                "sFreeThrowsMade": 2,
                "sTwoPointersAttempted": 4,
                "sAssistsTurnoverRatio": 1,
                "sReboundsTotal": 0,
                "sOffensiveRating": 0,
                "sTwoPointersPercentage": 0,
                "sTurnoversPercentage": 0.17006802721088,
                "sTrueShootingAttempts": 4.88,
                "sThreePointersPercentage": 0,
                "sStealsPercentage": 0,
                "sSecondChancePointsPercentage": 0,
                "sReboundsOffensivePercentage": 0,
                "sEfficiencyGameScore": -1.1,
                "sReboundsDefensivePercentage": 0,
                "sPointsInThePaintPercentage": 0,
                "sPlusMinusPoints": 4,
                "sFreeThrowsPercentage": 1,
                "sFieldGoalsPercentage": 0,
                "sFieldGoalsEffectivePercentage": 0,
                "sFastBreakPointsPercentage": 0,
                "sDefensiveRating": 0,
                "sEfficiency": -1,
                "sReboundsPercentage": 0,
                "sTrueShootingPercentage": 0.20491803278689,
                "pno": 7
            }, {
                "sAssists": 1,
                "sReboundsDefensive": 5,
                "sPlus": 18,
                "sPoints": 7,
                "sPointsFastBreak": 0,
                "sPointsInThePaint": 2,
                "sPointsInThePaintAttempted": 2,
                "sPointsInThePaintMade": 1,
                "sPointsSecondChance": 2,
                "sReboundsOffensive": 0,
                "sMVPVotes": 0,
                "sSecondChancePointsAttempted": 1,
                "sSecondChancePointsMade": 1,
                "sSteals": 1,
                "sThreePointersAttempted": 2,
                "sThreePointersMade": 1,
                "sTurnovers": 0,
                "sTwoPointersMade": 2,
                "sMinutes": 10,
                "sAssistsDefensive": 0,
                "sFoulsCoachDisqualifying": 0,
                "sBlocks": 0,
                "sBlocksReceived": 0,
                "sEfficiencyCustom": 0,
                "sFastBreakPointsAttempted": 0,
                "sFastBreakPointsMade": 0,
                "sFieldGoalsAttempted": 5,
                "sFieldGoalsMade": 3,
                "sFoulsCoachTechnical": 0,
                "sMinus": 15,
                "sFoulsDisqualifying": 0,
                "sFoulsOffensive": 0,
                "sFoulsOn": 0,
                "sFoulsPersonal": 1,
                "sFoulsTechnical": 0,
                "sFoulsUnsportsmanlike": 0,
                "sFreeThrowsAttempted": 0,
                "sFreeThrowsMade": 0,
                "sTwoPointersAttempted": 3,
                "sAssistsTurnoverRatio": 0,
                "sReboundsTotal": 5,
                "sOffensiveRating": 0,
                "sTwoPointersPercentage": 0.66666666666667,
                "sTurnoversPercentage": 0,
                "sTrueShootingAttempts": 5,
                "sThreePointersPercentage": 0.5,
                "sStealsPercentage": 0,
                "sSecondChancePointsPercentage": 1,
                "sReboundsOffensivePercentage": 0,
                "sEfficiencyGameScore": 7.5,
                "sReboundsDefensivePercentage": 0,
                "sPointsInThePaintPercentage": 0.5,
                "sPlusMinusPoints": 3,
                "sFreeThrowsPercentage": 0,
                "sFieldGoalsPercentage": 0.6,
                "sFieldGoalsEffectivePercentage": 0.7,
                "sFastBreakPointsPercentage": 0,
                "sDefensiveRating": 0,
                "sEfficiency": 11,
                "sReboundsPercentage": 0,
                "sTrueShootingPercentage": 0.7,
                "pno": 8
            }, {
                "sAssists": 0,
                "sReboundsDefensive": 0,
                "sPlus": 0,
                "sPoints": 0,
                "sPointsFastBreak": 0,
                "sPointsInThePaint": 0,
                "sPointsInThePaintAttempted": 0,
                "sPointsInThePaintMade": 0,
                "sPointsSecondChance": 0,
                "sReboundsOffensive": 0,
                "sMVPVotes": 0,
                "sSecondChancePointsAttempted": 0,
                "sSecondChancePointsMade": 0,
                "sSteals": 0,
                "sThreePointersAttempted": 0,
                "sThreePointersMade": 0,
                "sTurnovers": 0,
                "sTwoPointersMade": 0,
                "sMinutes": 0,
                "sAssistsDefensive": 0,
                "sFoulsCoachDisqualifying": 0,
                "sBlocks": 0,
                "sBlocksReceived": 0,
                "sEfficiencyCustom": 0,
                "sFastBreakPointsAttempted": 0,
                "sFastBreakPointsMade": 0,
                "sFieldGoalsAttempted": 0,
                "sFieldGoalsMade": 0,
                "sFoulsCoachTechnical": 0,
                "sMinus": 0,
                "sFoulsDisqualifying": 0,
                "sFoulsOffensive": 0,
                "sFoulsOn": 0,
                "sFoulsPersonal": 0,
                "sFoulsTechnical": 0,
                "sFoulsUnsportsmanlike": 0,
                "sFreeThrowsAttempted": 0,
                "sFreeThrowsMade": 0,
                "sTwoPointersAttempted": 0,
                "sAssistsTurnoverRatio": 0,
                "sReboundsTotal": 0,
                "sOffensiveRating": 0,
                "sTwoPointersPercentage": 0,
                "sTurnoversPercentage": 0,
                "sTrueShootingAttempts": 0,
                "sThreePointersPercentage": 0,
                "sStealsPercentage": 0,
                "sSecondChancePointsPercentage": 0,
                "sReboundsOffensivePercentage": 0,
                "sEfficiencyGameScore": 0,
                "sReboundsDefensivePercentage": 0,
                "sPointsInThePaintPercentage": 0,
                "sPlusMinusPoints": 0,
                "sFreeThrowsPercentage": 0,
                "sFieldGoalsPercentage": 0,
                "sFieldGoalsEffectivePercentage": 0,
                "sFastBreakPointsPercentage": 0,
                "sDefensiveRating": 0,
                "sEfficiency": 0,
                "sReboundsPercentage": 0,
                "sTrueShootingPercentage": 0,
                "pno": 17
            }],
            "period": 1,
            "periodType": "REGULAR"
        }, {
            "team": {
                "sAssists": 0,
                "sReboundsTeamDefensive": 0,
                "sMinutes": 0,
                "sPointsFastBreak": 0,
                "sPointsFromTurnovers": 0,
                "sPointsInThePaint": 0,
                "sPointsInThePaintAttempted": 0,
                "sPointsInThePaintMade": 0,
                "sPointsSecondChance": 0,
                "sReboundsDefensive": 0,
                "sReboundsOffensive": 0,
                "sReboundsTeamOffensive": 0,
                "sFreeThrowsMade": 0,
                "sSecondChancePointsAttempted": 0,
                "sSecondChancePointsMade": 0,
                "sSteals": 0,
                "sTimeLeading": 0,
                "sTimesScoresLevel": 0,
                "sThreePointersAttempted": 0,
                "sThreePointersMade": 0,
                "sTurnovers": 0,
                "sTurnoversTeam": 0,
                "sTwoPointersAttempted": 0,
                "sLeadChanges": 0,
                "sFreeThrowsAttempted": 0,
                "sAssistsDefensive": 0,
                "sFastBreakPointsMade": 0,
                "sBenchPoints": 0,
                "sBiggestLead": 3,
                "sBiggestLeadScore": "15 - 18",
                "sBiggestScoringRun": 0,
                "sBiggestScoringRunScore": 0,
                "sBlocks": 0,
                "sBlocksReceived": 0,
                "sEfficiencyCustom": 0,
                "sFastBreakPointsAttempted": 0,
                "sFieldGoalsAttempted": 0,
                "sFoulsUnsportsmanlike": 0,
                "sFieldGoalsMade": 0,
                "sFoulsBenchTechnical": 0,
                "sFoulsCoachDisqualifying": 0,
                "sFoulsCoachTechnical": 0,
                "sFoulsDisqualifying": 0,
                "sFoulsOn": 0,
                "sFoulsOffensive": 0,
                "sFoulsPersonal": 0,
                "sFoulsTechnical": 0,
                "sFoulsTechnicalOther": 0,
                "sTwoPointersMade": 0,
                "sAssistsTurnoverRatio": 0,
                "sPossessionsOpponent": 0,
                "sTransitionOffence": 0,
                "sTransitionDefence": 0,
                "sThreePointersPercentage": 0,
                "sSecondChancePointsPercentage": 0,
                "sReboundsTeam": 0,
                "sReboundsPersonal": 0,
                "sPossessions": 0,
                "sFastBreakPointsPercentage": 0,
                "sPointsInThePaintPercentage": 0,
                "sPoints": 0,
                "sFreeThrowsPercentage": 0,
                "sFoulsTotal": 0,
                "sFoulsTeam": 0,
                "sFieldGoalsPercentage": 0,
                "sFieldGoalsEffectiveAdjusted": 0,
                "sTwoPointersPercentage": 0,
                "sDefensivePointsPerPossession": 0,
                "sDefensiveRating": 0,
                "sEfficiency": 0,
                "sOffensivePointsPerPossession": 0,
                "sOffensiveRating": 0,
                "sPace": 0,
                "sPointsAgainst": 0,
                "sReboundsTotal": 0
            },
            "players": [{
                "sAssists": 0,
                "sReboundsDefensive": 0,
                "sPlus": 0,
                "sPoints": 0,
                "sPointsFastBreak": 0,
                "sPointsInThePaint": 0,
                "sPointsInThePaintAttempted": 0,
                "sPointsInThePaintMade": 0,
                "sPointsSecondChance": 0,
                "sReboundsOffensive": 0,
                "sMVPVotes": 0,
                "sSecondChancePointsAttempted": 0,
                "sSecondChancePointsMade": 0,
                "sSteals": 0,
                "sThreePointersAttempted": 0,
                "sThreePointersMade": 0,
                "sTurnovers": 0,
                "sTwoPointersMade": 0,
                "sMinutes": 0,
                "sAssistsDefensive": 0,
                "sFoulsCoachDisqualifying": 0,
                "sBlocks": 0,
                "sBlocksReceived": 0,
                "sEfficiencyCustom": 0,
                "sFastBreakPointsAttempted": 0,
                "sFastBreakPointsMade": 0,
                "sFieldGoalsAttempted": 0,
                "sFieldGoalsMade": 0,
                "sFoulsCoachTechnical": 0,
                "sMinus": 0,
                "sFoulsDisqualifying": 0,
                "sFoulsOffensive": 0,
                "sFoulsOn": 0,
                "sFoulsPersonal": 0,
                "sFoulsTechnical": 0,
                "sFoulsUnsportsmanlike": 0,
                "sFreeThrowsAttempted": 0,
                "sFreeThrowsMade": 0,
                "sTwoPointersAttempted": 0,
                "sAssistsTurnoverRatio": 0,
                "sReboundsTotal": 0,
                "sOffensiveRating": 0,
                "sTwoPointersPercentage": 0,
                "sTurnoversPercentage": 0,
                "sTrueShootingAttempts": 0,
                "sThreePointersPercentage": 0,
                "sStealsPercentage": 0,
                "sSecondChancePointsPercentage": 0,
                "sReboundsOffensivePercentage": 0,
                "sEfficiencyGameScore": 0,
                "sReboundsDefensivePercentage": 0,
                "sPointsInThePaintPercentage": 0,
                "sPlusMinusPoints": 0,
                "sFreeThrowsPercentage": 0,
                "sFieldGoalsPercentage": 0,
                "sFieldGoalsEffectivePercentage": 0,
                "sFastBreakPointsPercentage": 0,
                "sDefensiveRating": 0,
                "sEfficiency": 0,
                "sReboundsPercentage": 0,
                "sTrueShootingPercentage": 0,
                "pno": 1
            }, {
                "sAssists": 0,
                "sReboundsDefensive": 0,
                "sPlus": 0,
                "sPoints": 0,
                "sPointsFastBreak": 0,
                "sPointsInThePaint": 0,
                "sPointsInThePaintAttempted": 0,
                "sPointsInThePaintMade": 0,
                "sPointsSecondChance": 0,
                "sReboundsOffensive": 0,
                "sMVPVotes": 0,
                "sSecondChancePointsAttempted": 0,
                "sSecondChancePointsMade": 0,
                "sSteals": 0,
                "sThreePointersAttempted": 0,
                "sThreePointersMade": 0,
                "sTurnovers": 0,
                "sTwoPointersMade": 0,
                "sMinutes": 0,
                "sAssistsDefensive": 0,
                "sFoulsCoachDisqualifying": 0,
                "sBlocks": 0,
                "sBlocksReceived": 0,
                "sEfficiencyCustom": 0,
                "sFastBreakPointsAttempted": 0,
                "sFastBreakPointsMade": 0,
                "sFieldGoalsAttempted": 0,
                "sFieldGoalsMade": 0,
                "sFoulsCoachTechnical": 0,
                "sMinus": 0,
                "sFoulsDisqualifying": 0,
                "sFoulsOffensive": 0,
                "sFoulsOn": 0,
                "sFoulsPersonal": 0,
                "sFoulsTechnical": 0,
                "sFoulsUnsportsmanlike": 0,
                "sFreeThrowsAttempted": 0,
                "sFreeThrowsMade": 0,
                "sTwoPointersAttempted": 0,
                "sAssistsTurnoverRatio": 0,
                "sReboundsTotal": 0,
                "sOffensiveRating": 0,
                "sTwoPointersPercentage": 0,
                "sTurnoversPercentage": 0,
                "sTrueShootingAttempts": 0,
                "sThreePointersPercentage": 0,
                "sStealsPercentage": 0,
                "sSecondChancePointsPercentage": 0,
                "sReboundsOffensivePercentage": 0,
                "sEfficiencyGameScore": 0,
                "sReboundsDefensivePercentage": 0,
                "sPointsInThePaintPercentage": 0,
                "sPlusMinusPoints": 0,
                "sFreeThrowsPercentage": 0,
                "sFieldGoalsPercentage": 0,
                "sFieldGoalsEffectivePercentage": 0,
                "sFastBreakPointsPercentage": 0,
                "sDefensiveRating": 0,
                "sEfficiency": 0,
                "sReboundsPercentage": 0,
                "sTrueShootingPercentage": 0,
                "pno": 13
            }, {
                "sAssists": 0,
                "sReboundsDefensive": 0,
                "sPlus": 0,
                "sPoints": 0,
                "sPointsFastBreak": 0,
                "sPointsInThePaint": 0,
                "sPointsInThePaintAttempted": 0,
                "sPointsInThePaintMade": 0,
                "sPointsSecondChance": 0,
                "sReboundsOffensive": 0,
                "sMVPVotes": 0,
                "sSecondChancePointsAttempted": 0,
                "sSecondChancePointsMade": 0,
                "sSteals": 0,
                "sThreePointersAttempted": 0,
                "sThreePointersMade": 0,
                "sTurnovers": 0,
                "sTwoPointersMade": 0,
                "sMinutes": 0,
                "sAssistsDefensive": 0,
                "sFoulsCoachDisqualifying": 0,
                "sBlocks": 0,
                "sBlocksReceived": 0,
                "sEfficiencyCustom": 0,
                "sFastBreakPointsAttempted": 0,
                "sFastBreakPointsMade": 0,
                "sFieldGoalsAttempted": 0,
                "sFieldGoalsMade": 0,
                "sFoulsCoachTechnical": 0,
                "sMinus": 0,
                "sFoulsDisqualifying": 0,
                "sFoulsOffensive": 0,
                "sFoulsOn": 0,
                "sFoulsPersonal": 0,
                "sFoulsTechnical": 0,
                "sFoulsUnsportsmanlike": 0,
                "sFreeThrowsAttempted": 0,
                "sFreeThrowsMade": 0,
                "sTwoPointersAttempted": 0,
                "sAssistsTurnoverRatio": 0,
                "sReboundsTotal": 0,
                "sOffensiveRating": 0,
                "sTwoPointersPercentage": 0,
                "sTurnoversPercentage": 0,
                "sTrueShootingAttempts": 0,
                "sThreePointersPercentage": 0,
                "sStealsPercentage": 0,
                "sSecondChancePointsPercentage": 0,
                "sReboundsOffensivePercentage": 0,
                "sEfficiencyGameScore": 0,
                "sReboundsDefensivePercentage": 0,
                "sPointsInThePaintPercentage": 0,
                "sPlusMinusPoints": 0,
                "sFreeThrowsPercentage": 0,
                "sFieldGoalsPercentage": 0,
                "sFieldGoalsEffectivePercentage": 0,
                "sFastBreakPointsPercentage": 0,
                "sDefensiveRating": 0,
                "sEfficiency": 0,
                "sReboundsPercentage": 0,
                "sTrueShootingPercentage": 0,
                "pno": 15
            }, {
                "sAssists": 0,
                "sReboundsDefensive": 0,
                "sPlus": 0,
                "sPoints": 0,
                "sPointsFastBreak": 0,
                "sPointsInThePaint": 0,
                "sPointsInThePaintAttempted": 0,
                "sPointsInThePaintMade": 0,
                "sPointsSecondChance": 0,
                "sReboundsOffensive": 0,
                "sMVPVotes": 0,
                "sSecondChancePointsAttempted": 0,
                "sSecondChancePointsMade": 0,
                "sSteals": 0,
                "sThreePointersAttempted": 0,
                "sThreePointersMade": 0,
                "sTurnovers": 0,
                "sTwoPointersMade": 0,
                "sMinutes": 0,
                "sAssistsDefensive": 0,
                "sFoulsCoachDisqualifying": 0,
                "sBlocks": 0,
                "sBlocksReceived": 0,
                "sEfficiencyCustom": 0,
                "sFastBreakPointsAttempted": 0,
                "sFastBreakPointsMade": 0,
                "sFieldGoalsAttempted": 0,
                "sFieldGoalsMade": 0,
                "sFoulsCoachTechnical": 0,
                "sMinus": 0,
                "sFoulsDisqualifying": 0,
                "sFoulsOffensive": 0,
                "sFoulsOn": 0,
                "sFoulsPersonal": 0,
                "sFoulsTechnical": 0,
                "sFoulsUnsportsmanlike": 0,
                "sFreeThrowsAttempted": 0,
                "sFreeThrowsMade": 0,
                "sTwoPointersAttempted": 0,
                "sAssistsTurnoverRatio": 0,
                "sReboundsTotal": 0,
                "sOffensiveRating": 0,
                "sTwoPointersPercentage": 0,
                "sTurnoversPercentage": 0,
                "sTrueShootingAttempts": 0,
                "sThreePointersPercentage": 0,
                "sStealsPercentage": 0,
                "sSecondChancePointsPercentage": 0,
                "sReboundsOffensivePercentage": 0,
                "sEfficiencyGameScore": 0,
                "sReboundsDefensivePercentage": 0,
                "sPointsInThePaintPercentage": 0,
                "sPlusMinusPoints": 0,
                "sFreeThrowsPercentage": 0,
                "sFieldGoalsPercentage": 0,
                "sFieldGoalsEffectivePercentage": 0,
                "sFastBreakPointsPercentage": 0,
                "sDefensiveRating": 0,
                "sEfficiency": 0,
                "sReboundsPercentage": 0,
                "sTrueShootingPercentage": 0,
                "pno": 2
            }, {
                "sAssists": 0,
                "sReboundsDefensive": 0,
                "sPlus": 0,
                "sPoints": 0,
                "sPointsFastBreak": 0,
                "sPointsInThePaint": 0,
                "sPointsInThePaintAttempted": 0,
                "sPointsInThePaintMade": 0,
                "sPointsSecondChance": 0,
                "sReboundsOffensive": 0,
                "sMVPVotes": 0,
                "sSecondChancePointsAttempted": 0,
                "sSecondChancePointsMade": 0,
                "sSteals": 0,
                "sThreePointersAttempted": 0,
                "sThreePointersMade": 0,
                "sTurnovers": 0,
                "sTwoPointersMade": 0,
                "sMinutes": 0,
                "sAssistsDefensive": 0,
                "sFoulsCoachDisqualifying": 0,
                "sBlocks": 0,
                "sBlocksReceived": 0,
                "sEfficiencyCustom": 0,
                "sFastBreakPointsAttempted": 0,
                "sFastBreakPointsMade": 0,
                "sFieldGoalsAttempted": 0,
                "sFieldGoalsMade": 0,
                "sFoulsCoachTechnical": 0,
                "sMinus": 0,
                "sFoulsDisqualifying": 0,
                "sFoulsOffensive": 0,
                "sFoulsOn": 0,
                "sFoulsPersonal": 0,
                "sFoulsTechnical": 0,
                "sFoulsUnsportsmanlike": 0,
                "sFreeThrowsAttempted": 0,
                "sFreeThrowsMade": 0,
                "sTwoPointersAttempted": 0,
                "sAssistsTurnoverRatio": 0,
                "sReboundsTotal": 0,
                "sOffensiveRating": 0,
                "sTwoPointersPercentage": 0,
                "sTurnoversPercentage": 0,
                "sTrueShootingAttempts": 0,
                "sThreePointersPercentage": 0,
                "sStealsPercentage": 0,
                "sSecondChancePointsPercentage": 0,
                "sReboundsOffensivePercentage": 0,
                "sEfficiencyGameScore": 0,
                "sReboundsDefensivePercentage": 0,
                "sPointsInThePaintPercentage": 0,
                "sPlusMinusPoints": 0,
                "sFreeThrowsPercentage": 0,
                "sFieldGoalsPercentage": 0,
                "sFieldGoalsEffectivePercentage": 0,
                "sFastBreakPointsPercentage": 0,
                "sDefensiveRating": 0,
                "sEfficiency": 0,
                "sReboundsPercentage": 0,
                "sTrueShootingPercentage": 0,
                "pno": 3
            }, {
                "sAssists": 0,
                "sReboundsDefensive": 0,
                "sPlus": 0,
                "sPoints": 0,
                "sPointsFastBreak": 0,
                "sPointsInThePaint": 0,
                "sPointsInThePaintAttempted": 0,
                "sPointsInThePaintMade": 0,
                "sPointsSecondChance": 0,
                "sReboundsOffensive": 0,
                "sMVPVotes": 0,
                "sSecondChancePointsAttempted": 0,
                "sSecondChancePointsMade": 0,
                "sSteals": 0,
                "sThreePointersAttempted": 0,
                "sThreePointersMade": 0,
                "sTurnovers": 0,
                "sTwoPointersMade": 0,
                "sMinutes": 0,
                "sAssistsDefensive": 0,
                "sFoulsCoachDisqualifying": 0,
                "sBlocks": 0,
                "sBlocksReceived": 0,
                "sEfficiencyCustom": 0,
                "sFastBreakPointsAttempted": 0,
                "sFastBreakPointsMade": 0,
                "sFieldGoalsAttempted": 0,
                "sFieldGoalsMade": 0,
                "sFoulsCoachTechnical": 0,
                "sMinus": 0,
                "sFoulsDisqualifying": 0,
                "sFoulsOffensive": 0,
                "sFoulsOn": 0,
                "sFoulsPersonal": 0,
                "sFoulsTechnical": 0,
                "sFoulsUnsportsmanlike": 0,
                "sFreeThrowsAttempted": 0,
                "sFreeThrowsMade": 0,
                "sTwoPointersAttempted": 0,
                "sAssistsTurnoverRatio": 0,
                "sReboundsTotal": 0,
                "sOffensiveRating": 0,
                "sTwoPointersPercentage": 0,
                "sTurnoversPercentage": 0,
                "sTrueShootingAttempts": 0,
                "sThreePointersPercentage": 0,
                "sStealsPercentage": 0,
                "sSecondChancePointsPercentage": 0,
                "sReboundsOffensivePercentage": 0,
                "sEfficiencyGameScore": 0,
                "sReboundsDefensivePercentage": 0,
                "sPointsInThePaintPercentage": 0,
                "sPlusMinusPoints": 0,
                "sFreeThrowsPercentage": 0,
                "sFieldGoalsPercentage": 0,
                "sFieldGoalsEffectivePercentage": 0,
                "sFastBreakPointsPercentage": 0,
                "sDefensiveRating": 0,
                "sEfficiency": 0,
                "sReboundsPercentage": 0,
                "sTrueShootingPercentage": 0,
                "pno": 4
            }, {
                "sAssists": 0,
                "sReboundsDefensive": 0,
                "sPlus": 0,
                "sPoints": 0,
                "sPointsFastBreak": 0,
                "sPointsInThePaint": 0,
                "sPointsInThePaintAttempted": 0,
                "sPointsInThePaintMade": 0,
                "sPointsSecondChance": 0,
                "sReboundsOffensive": 0,
                "sMVPVotes": 0,
                "sSecondChancePointsAttempted": 0,
                "sSecondChancePointsMade": 0,
                "sSteals": 0,
                "sThreePointersAttempted": 0,
                "sThreePointersMade": 0,
                "sTurnovers": 0,
                "sTwoPointersMade": 0,
                "sMinutes": 0,
                "sAssistsDefensive": 0,
                "sFoulsCoachDisqualifying": 0,
                "sBlocks": 0,
                "sBlocksReceived": 0,
                "sEfficiencyCustom": 0,
                "sFastBreakPointsAttempted": 0,
                "sFastBreakPointsMade": 0,
                "sFieldGoalsAttempted": 0,
                "sFieldGoalsMade": 0,
                "sFoulsCoachTechnical": 0,
                "sMinus": 0,
                "sFoulsDisqualifying": 0,
                "sFoulsOffensive": 0,
                "sFoulsOn": 0,
                "sFoulsPersonal": 0,
                "sFoulsTechnical": 0,
                "sFoulsUnsportsmanlike": 0,
                "sFreeThrowsAttempted": 0,
                "sFreeThrowsMade": 0,
                "sTwoPointersAttempted": 0,
                "sAssistsTurnoverRatio": 0,
                "sReboundsTotal": 0,
                "sOffensiveRating": 0,
                "sTwoPointersPercentage": 0,
                "sTurnoversPercentage": 0,
                "sTrueShootingAttempts": 0,
                "sThreePointersPercentage": 0,
                "sStealsPercentage": 0,
                "sSecondChancePointsPercentage": 0,
                "sReboundsOffensivePercentage": 0,
                "sEfficiencyGameScore": 0,
                "sReboundsDefensivePercentage": 0,
                "sPointsInThePaintPercentage": 0,
                "sPlusMinusPoints": 0,
                "sFreeThrowsPercentage": 0,
                "sFieldGoalsPercentage": 0,
                "sFieldGoalsEffectivePercentage": 0,
                "sFastBreakPointsPercentage": 0,
                "sDefensiveRating": 0,
                "sEfficiency": 0,
                "sReboundsPercentage": 0,
                "sTrueShootingPercentage": 0,
                "pno": 5
            }, {
                "sAssists": 0,
                "sReboundsDefensive": 0,
                "sPlus": 0,
                "sPoints": 0,
                "sPointsFastBreak": 0,
                "sPointsInThePaint": 0,
                "sPointsInThePaintAttempted": 0,
                "sPointsInThePaintMade": 0,
                "sPointsSecondChance": 0,
                "sReboundsOffensive": 0,
                "sMVPVotes": 0,
                "sSecondChancePointsAttempted": 0,
                "sSecondChancePointsMade": 0,
                "sSteals": 0,
                "sThreePointersAttempted": 0,
                "sThreePointersMade": 0,
                "sTurnovers": 0,
                "sTwoPointersMade": 0,
                "sMinutes": 0,
                "sAssistsDefensive": 0,
                "sFoulsCoachDisqualifying": 0,
                "sBlocks": 0,
                "sBlocksReceived": 0,
                "sEfficiencyCustom": 0,
                "sFastBreakPointsAttempted": 0,
                "sFastBreakPointsMade": 0,
                "sFieldGoalsAttempted": 0,
                "sFieldGoalsMade": 0,
                "sFoulsCoachTechnical": 0,
                "sMinus": 0,
                "sFoulsDisqualifying": 0,
                "sFoulsOffensive": 0,
                "sFoulsOn": 0,
                "sFoulsPersonal": 0,
                "sFoulsTechnical": 0,
                "sFoulsUnsportsmanlike": 0,
                "sFreeThrowsAttempted": 0,
                "sFreeThrowsMade": 0,
                "sTwoPointersAttempted": 0,
                "sAssistsTurnoverRatio": 0,
                "sReboundsTotal": 0,
                "sOffensiveRating": 0,
                "sTwoPointersPercentage": 0,
                "sTurnoversPercentage": 0,
                "sTrueShootingAttempts": 0,
                "sThreePointersPercentage": 0,
                "sStealsPercentage": 0,
                "sSecondChancePointsPercentage": 0,
                "sReboundsOffensivePercentage": 0,
                "sEfficiencyGameScore": 0,
                "sReboundsDefensivePercentage": 0,
                "sPointsInThePaintPercentage": 0,
                "sPlusMinusPoints": 0,
                "sFreeThrowsPercentage": 0,
                "sFieldGoalsPercentage": 0,
                "sFieldGoalsEffectivePercentage": 0,
                "sFastBreakPointsPercentage": 0,
                "sDefensiveRating": 0,
                "sEfficiency": 0,
                "sReboundsPercentage": 0,
                "sTrueShootingPercentage": 0,
                "pno": 6
            }, {
                "sAssists": 0,
                "sReboundsDefensive": 0,
                "sPlus": 0,
                "sPoints": 0,
                "sPointsFastBreak": 0,
                "sPointsInThePaint": 0,
                "sPointsInThePaintAttempted": 0,
                "sPointsInThePaintMade": 0,
                "sPointsSecondChance": 0,
                "sReboundsOffensive": 0,
                "sMVPVotes": 0,
                "sSecondChancePointsAttempted": 0,
                "sSecondChancePointsMade": 0,
                "sSteals": 0,
                "sThreePointersAttempted": 0,
                "sThreePointersMade": 0,
                "sTurnovers": 0,
                "sTwoPointersMade": 0,
                "sMinutes": 0,
                "sAssistsDefensive": 0,
                "sFoulsCoachDisqualifying": 0,
                "sBlocks": 0,
                "sBlocksReceived": 0,
                "sEfficiencyCustom": 0,
                "sFastBreakPointsAttempted": 0,
                "sFastBreakPointsMade": 0,
                "sFieldGoalsAttempted": 0,
                "sFieldGoalsMade": 0,
                "sFoulsCoachTechnical": 0,
                "sMinus": 0,
                "sFoulsDisqualifying": 0,
                "sFoulsOffensive": 0,
                "sFoulsOn": 0,
                "sFoulsPersonal": 0,
                "sFoulsTechnical": 0,
                "sFoulsUnsportsmanlike": 0,
                "sFreeThrowsAttempted": 0,
                "sFreeThrowsMade": 0,
                "sTwoPointersAttempted": 0,
                "sAssistsTurnoverRatio": 0,
                "sReboundsTotal": 0,
                "sOffensiveRating": 0,
                "sTwoPointersPercentage": 0,
                "sTurnoversPercentage": 0,
                "sTrueShootingAttempts": 0,
                "sThreePointersPercentage": 0,
                "sStealsPercentage": 0,
                "sSecondChancePointsPercentage": 0,
                "sReboundsOffensivePercentage": 0,
                "sEfficiencyGameScore": 0,
                "sReboundsDefensivePercentage": 0,
                "sPointsInThePaintPercentage": 0,
                "sPlusMinusPoints": 0,
                "sFreeThrowsPercentage": 0,
                "sFieldGoalsPercentage": 0,
                "sFieldGoalsEffectivePercentage": 0,
                "sFastBreakPointsPercentage": 0,
                "sDefensiveRating": 0,
                "sEfficiency": 0,
                "sReboundsPercentage": 0,
                "sTrueShootingPercentage": 0,
                "pno": 7
            }, {
                "sAssists": 0,
                "sReboundsDefensive": 0,
                "sPlus": 0,
                "sPoints": 0,
                "sPointsFastBreak": 0,
                "sPointsInThePaint": 0,
                "sPointsInThePaintAttempted": 0,
                "sPointsInThePaintMade": 0,
                "sPointsSecondChance": 0,
                "sReboundsOffensive": 0,
                "sMVPVotes": 0,
                "sSecondChancePointsAttempted": 0,
                "sSecondChancePointsMade": 0,
                "sSteals": 0,
                "sThreePointersAttempted": 0,
                "sThreePointersMade": 0,
                "sTurnovers": 0,
                "sTwoPointersMade": 0,
                "sMinutes": 0,
                "sAssistsDefensive": 0,
                "sFoulsCoachDisqualifying": 0,
                "sBlocks": 0,
                "sBlocksReceived": 0,
                "sEfficiencyCustom": 0,
                "sFastBreakPointsAttempted": 0,
                "sFastBreakPointsMade": 0,
                "sFieldGoalsAttempted": 0,
                "sFieldGoalsMade": 0,
                "sFoulsCoachTechnical": 0,
                "sMinus": 0,
                "sFoulsDisqualifying": 0,
                "sFoulsOffensive": 0,
                "sFoulsOn": 0,
                "sFoulsPersonal": 0,
                "sFoulsTechnical": 0,
                "sFoulsUnsportsmanlike": 0,
                "sFreeThrowsAttempted": 0,
                "sFreeThrowsMade": 0,
                "sTwoPointersAttempted": 0,
                "sAssistsTurnoverRatio": 0,
                "sReboundsTotal": 0,
                "sOffensiveRating": 0,
                "sTwoPointersPercentage": 0,
                "sTurnoversPercentage": 0,
                "sTrueShootingAttempts": 0,
                "sThreePointersPercentage": 0,
                "sStealsPercentage": 0,
                "sSecondChancePointsPercentage": 0,
                "sReboundsOffensivePercentage": 0,
                "sEfficiencyGameScore": 0,
                "sReboundsDefensivePercentage": 0,
                "sPointsInThePaintPercentage": 0,
                "sPlusMinusPoints": 0,
                "sFreeThrowsPercentage": 0,
                "sFieldGoalsPercentage": 0,
                "sFieldGoalsEffectivePercentage": 0,
                "sFastBreakPointsPercentage": 0,
                "sDefensiveRating": 0,
                "sEfficiency": 0,
                "sReboundsPercentage": 0,
                "sTrueShootingPercentage": 0,
                "pno": 8
            }, {
                "sAssists": 0,
                "sReboundsDefensive": 0,
                "sPlus": 0,
                "sPoints": 0,
                "sPointsFastBreak": 0,
                "sPointsInThePaint": 0,
                "sPointsInThePaintAttempted": 0,
                "sPointsInThePaintMade": 0,
                "sPointsSecondChance": 0,
                "sReboundsOffensive": 0,
                "sMVPVotes": 0,
                "sSecondChancePointsAttempted": 0,
                "sSecondChancePointsMade": 0,
                "sSteals": 0,
                "sThreePointersAttempted": 0,
                "sThreePointersMade": 0,
                "sTurnovers": 0,
                "sTwoPointersMade": 0,
                "sMinutes": 0,
                "sAssistsDefensive": 0,
                "sFoulsCoachDisqualifying": 0,
                "sBlocks": 0,
                "sBlocksReceived": 0,
                "sEfficiencyCustom": 0,
                "sFastBreakPointsAttempted": 0,
                "sFastBreakPointsMade": 0,
                "sFieldGoalsAttempted": 0,
                "sFieldGoalsMade": 0,
                "sFoulsCoachTechnical": 0,
                "sMinus": 0,
                "sFoulsDisqualifying": 0,
                "sFoulsOffensive": 0,
                "sFoulsOn": 0,
                "sFoulsPersonal": 0,
                "sFoulsTechnical": 0,
                "sFoulsUnsportsmanlike": 0,
                "sFreeThrowsAttempted": 0,
                "sFreeThrowsMade": 0,
                "sTwoPointersAttempted": 0,
                "sAssistsTurnoverRatio": 0,
                "sReboundsTotal": 0,
                "sOffensiveRating": 0,
                "sTwoPointersPercentage": 0,
                "sTurnoversPercentage": 0,
                "sTrueShootingAttempts": 0,
                "sThreePointersPercentage": 0,
                "sStealsPercentage": 0,
                "sSecondChancePointsPercentage": 0,
                "sReboundsOffensivePercentage": 0,
                "sEfficiencyGameScore": 0,
                "sReboundsDefensivePercentage": 0,
                "sPointsInThePaintPercentage": 0,
                "sPlusMinusPoints": 0,
                "sFreeThrowsPercentage": 0,
                "sFieldGoalsPercentage": 0,
                "sFieldGoalsEffectivePercentage": 0,
                "sFastBreakPointsPercentage": 0,
                "sDefensiveRating": 0,
                "sEfficiency": 0,
                "sReboundsPercentage": 0,
                "sTrueShootingPercentage": 0,
                "pno": 17
            }],
            "period": 2,
            "periodType": "REGULAR"
        }]
    }],
    "type": "boxscore"
}

action

This message type contains an individual game action
type enum

The type of the message

action
messageId integer

Unique identifier of the message being sent

actionNumber integer

Unique sequence number for this action

teamNumber integer

The number of the team in the match, 1 or 2.

pno integer

The number of the player in the match. This is a sequence number not a jersey number.

clock string

The time on the clock when this action occurred.

Format is: MM:SS:CC
timeActual datetime

The date/time when this action occurred in UTC.

Format is: YYYY-MM-DD HH:MM:SS
period integer

What period of the match is this statistic related to. 0 is valid and represents the value for the total match. Overtime periods should start at 1.

periodType enum

The type of period

REGULAR
(Default)
OVERTIME
SHOOTOUT
actionType string(20)

A code representating the action type. See Action Types for the list of options.

success enum

Was this action completed successfully? Generally all actions except scoring actions are successful.

1
Yes (Default)
0
No
subType string(20)

The subordinate type of the action. Used to further define the action. See Action Types for the list of options.

qualifiers array

An array of qualifiers to the action. See Action Types for the list of options.

value string(1000)

A text field. Some action types require a value. This is where that value will be placed. See Action Types for the list of actions that require this field.

previousAction integer

The actionNumber of the base/primary action if this action relates to another action. eg. For a freethrow/freekick, this may be the actionNumber of the original foul.

officialId integer

The unique identifier for the official calling the action

x float

X coordinate on the playing surface where the action occurred. Defined in Playing Surface Definition.

y float

Y coordinate on the playing surface where the action occurred. Defined in Playing Surface Definition.

area string

The area of the playing surface where the action occurred. Defined in Playing Surface Definition.

side enum

Indicates which side of the playing surface the player's/team's goal is.

(blank)
left
Team's goal is to the left
right
Team's goal is to the right
score1 string

The score of team 1 when this action occurred. (If you are using the readlog call then this is different. This field represents the current score for team number 1. Even if this action is an edit for a previous period, this should be the current score.) The score should be the score after the completion of the action.

score2 string

The score of team 2 when this action occurred. (If you are using the readlog call then this is different. This field represents the current score for team number 2. Even if this action is an edit for a previous period, this should be the current score.) The score should be the score after the completion of the action.

players associativearray

team1 array

An array of pnos of the players that were active for team1 at the time of the action.

team2 array

An array of pnos of the players that were active for team2 at the time of the action.

edited datetime

If the action has been edited (after being initially sent) this field contains the last time it was edited (in UTC). If the action has not been edited, then this field is not present.

Format is: YYYY-MM-DD HH:MM:SS
inserted datetime

If the action has been missed previously and inserted (added out of sequence) later this field contains the time it was inserted (in UTC). If the action has not been inserted or added out of sequence during active workflow then this field is not present.

Format is: YYYY-MM-DD HH:MM:SS
deleted datetime

If the action has been deleted (after being initially sent) this field contains the time it was deleted (in UTC). If the action has not been deleted, then this field is not present.

Format is: YYYY-MM-DD HH:MM:SS
origMessageId integer

If this action is a delete/update then this field contains the messageId of the original message. Only present for the readlog message.

sendDelay float

Optional field. May be added from the capture device to indicate a delay (in seconds) before the message was sent.

completionDelay float

Optional field. May be added from the capture device to indicate the time taken (in seconds) to complete the entering of the action.

underReview enum

The action is not official as yet, it is being review by match officials or the organisation. This may occur in disputed actions or actions being checked by some kind of video.

0
No (Default)
1
Yes
orderNumber integer

Unique number identifiying the order of the action in the game. This number may not be sequential but will be unique. Sorting by this number will give the order of actions (and will account for edits and insertions).

possible enum

Optional field. May be added to indicate the action is not confirmed yet and do not affect any statistics. Require permission to retrieve possible actions.

0
No (Default)
1
Yes

Example

{
    "pno": 15,
    "period": 1,
    "actionNumber": 16,
    "sendDelay": 0.129,
    "success": 1,
    "previousAction": 0,
    "messageId": 34,
    "periodType": "REGULAR",
    "score2": 2,
    "score1": 0,
    "y": 42.857,
    "x": 81.239,
    "subType": "layup",
    "qualifiers": ["pointsinthepaint"],
    "timeActual": "2017-03-05 13:01:30",
    "completionDelay": 4.521,
    "shotClock": "00:00:00",
    "edited": "2017-03-05 13:01:34",
    "teamNumber": 2,
    "side": "right",
    "clock": "09:43:25",
    "area": "inthepaint",
    "actionType": "2pt",
    "system": 1,
    "timeSent": 1489449441.1916,
    "msgSequence": 34,
    "players": {
        "team1": [1, 13, 3, 5, 9],
        "team2": [15, 2, 3, 7, 8]
    },
    "type": "action"
}

playbyplay

This message type contains an array of 'sport' actions. This list of actions is the current state of the game and is the result of any inserts,edits,deletes. It does not contain any 'administrative' type actions.
type enum

The type of the message

playbyplay
actions array

Array of play by play actions, sorted ascending

actionNumber integer

Unique sequence number for this action

teamNumber integer

The number of the team in the match, 1 or 2.

pno integer

The number of the player in the match. This is a sequence number not a jersey number.

clock string

The time on the clock when this action occurred.

Format is: MM:SS:CC
timeActual datetime

The date/time when this action occurred in UTC.

Format is: YYYY-MM-DD HH:MM:SS
period integer

What period of the match is this statistic related to. 0 is valid and represents the value for the total match. Overtime periods should start at 1.

periodType enum

The type of period

REGULAR
(Default)
OVERTIME
SHOOTOUT
actionType string(20)

A code representating the action type. See Action Types for the list of options.

success enum

Was this action completed successfully? Generally all actions except scoring actions are successful.

1
Yes (Default)
0
No
subType string(20)

The subordinate type of the action. Used to further define the action. See Action Types for the list of options.

qualifiers array

An array of qualifiers to the action. See Action Types for the list of options.

value string(1000)

A text field. Some action types require a value. This is where that value will be placed. See Action Types for the list of actions that require this field.

previousAction integer

The actionNumber of the base/primary action if this action relates to another action. eg. For a freethrow/freekick, this may be the actionNumber of the original foul.

officialId integer

The unique identifier for the official calling the action

x float

X coordinate on the playing surface where the action occurred. Defined in Playing Surface Definition.

y float

Y coordinate on the playing surface where the action occurred. Defined in Playing Surface Definition.

area string

The area of the playing surface where the action occurred. Defined in Playing Surface Definition.

side enum

Indicates which side of the playing surface the player's/team's goal is.

(blank)
left
Team's goal is to the left
right
Team's goal is to the right
score1 string

The score of team 1 when this action occurred. (If you are using the readlog call then this is different. This field represents the current score for team number 1. Even if this action is an edit for a previous period, this should be the current score.) The score should be the score after the completion of the action.

score2 string

The score of team 2 when this action occurred. (If you are using the readlog call then this is different. This field represents the current score for team number 2. Even if this action is an edit for a previous period, this should be the current score.) The score should be the score after the completion of the action.

players associativearray

team1 array

An array of pnos of the players that were active for team1 at the time of the action.

team2 array

An array of pnos of the players that were active for team2 at the time of the action.

edited datetime

If the action has been edited (after being initially sent) this field contains the last time it was edited (in UTC). If the action has not been edited, then this field is not present.

Format is: YYYY-MM-DD HH:MM:SS
inserted datetime

If the action has been missed previously and inserted (added out of sequence) later this field contains the time it was inserted (in UTC). If the action has not been inserted or added out of sequence during active workflow then this field is not present.

Format is: YYYY-MM-DD HH:MM:SS
deleted datetime

If the action has been deleted (after being initially sent) this field contains the time it was deleted (in UTC). If the action has not been deleted, then this field is not present.

Format is: YYYY-MM-DD HH:MM:SS
origMessageId integer

If this action is a delete/update then this field contains the messageId of the original message. Only present for the readlog message.

sendDelay float

Optional field. May be added from the capture device to indicate a delay (in seconds) before the message was sent.

completionDelay float

Optional field. May be added from the capture device to indicate the time taken (in seconds) to complete the entering of the action.

underReview enum

The action is not official as yet, it is being review by match officials or the organisation. This may occur in disputed actions or actions being checked by some kind of video.

0
No (Default)
1
Yes
orderNumber integer

Unique number identifiying the order of the action in the game. This number may not be sequential but will be unique. Sorting by this number will give the order of actions (and will account for edits and insertions).

possible enum

Optional field. May be added to indicate the action is not confirmed yet and do not affect any statistics. Require permission to retrieve possible actions.

0
No (Default)
1
Yes

Example

{
    "type": "playbyplay",
    "actions": [{
        "pno": 1,
        "period": 1,
        "actionNumber": 1,
        "sendDelay": 0.17,
        "success": 1,
        "previousAction": 0,
        "messageId": 4,
        "periodType": "REGULAR",
        "score2": 0,
        "score1": 0,
        "subType": "in",
        "timeActual": "2017-03-05 12:50:03",
        "shotClock": "00:00:00",
        "teamNumber": 1,
        "clock": "10:00:00",
        "actionType": "substitution",
        "timeSent": 1489449423.1848
    }, {
        "pno": 13,
        "period": 1,
        "actionNumber": 2,
        "sendDelay": 0.04,
        "success": 1,
        "previousAction": 0,
        "messageId": 6,
        "periodType": "REGULAR",
        "score2": 0,
        "score1": 0,
        "subType": "in",
        "timeActual": "2017-03-05 12:50:07",
        "shotClock": "00:00:00",
        "teamNumber": 1,
        "clock": "10:00:00",
        "actionType": "substitution",
        "timeSent": 1489449424.1854,
        "players": {
            "team1": [1]
        }
    }, {
        "pno": 3,
        "period": 1,
        "actionNumber": 3,
        "sendDelay": 0.04,
        "success": 1,
        "previousAction": 0,
        "messageId": 8,
        "periodType": "REGULAR",
        "score2": 0,
        "score1": 0,
        "subType": "in",
        "timeActual": "2017-03-05 12:50:08",
        "shotClock": "00:00:00",
        "teamNumber": 1,
        "clock": "10:00:00",
        "actionType": "substitution",
        "timeSent": 1489449426.186,
        "players": {
            "team1": [1, 13]
        }
    }, {
        "pno": 5,
        "period": 1,
        "actionNumber": 4,
        "sendDelay": 0.051,
        "success": 1,
        "previousAction": 0,
        "messageId": 10,
        "periodType": "REGULAR",
        "score2": 0,
        "score1": 0,
        "subType": "in",
        "timeActual": "2017-03-05 12:50:12",
        "shotClock": "00:00:00",
        "teamNumber": 1,
        "clock": "10:00:00",
        "actionType": "substitution",
        "timeSent": 1489449427.1863,
        "players": {
            "team1": [1, 13, 3]
        }
    }, {
        "pno": 9,
        "period": 1,
        "actionNumber": 5,
        "sendDelay": 0.045,
        "success": 1,
        "previousAction": 0,
        "messageId": 12,
        "periodType": "REGULAR",
        "score2": 0,
        "score1": 0,
        "subType": "in",
        "timeActual": "2017-03-05 12:50:13",
        "shotClock": "00:00:00",
        "teamNumber": 1,
        "clock": "10:00:00",
        "actionType": "substitution",
        "timeSent": 1489449428.1868,
        "players": {
            "team1": [1, 13, 3, 5]
        }
    }, {
        "pno": 15,
        "period": 1,
        "actionNumber": 6,
        "sendDelay": 0.028,
        "success": 1,
        "previousAction": 0,
        "messageId": 14,
        "periodType": "REGULAR",
        "score2": 0,
        "score1": 0,
        "subType": "in",
        "timeActual": "2017-03-05 12:50:16",
        "shotClock": "00:00:00",
        "teamNumber": 2,
        "clock": "10:00:00",
        "actionType": "substitution",
        "timeSent": 1489449429.1872,
        "players": {
            "team1": [1, 13, 3, 5, 9]
        }
    }, {
        "pno": 2,
        "period": 1,
        "actionNumber": 7,
        "sendDelay": 0.04,
        "success": 1,
        "previousAction": 0,
        "messageId": 16,
        "periodType": "REGULAR",
        "score2": 0,
        "score1": 0,
        "subType": "in",
        "timeActual": "2017-03-05 12:50:17",
        "shotClock": "00:00:00",
        "teamNumber": 2,
        "clock": "10:00:00",
        "actionType": "substitution",
        "timeSent": 1489449430.1876,
        "players": {
            "team1": [1, 13, 3, 5, 9],
            "team2": [15]
        }
    }, {
        "pno": 3,
        "period": 1,
        "actionNumber": 8,
        "sendDelay": 0.042,
        "success": 1,
        "previousAction": 0,
        "messageId": 18,
        "periodType": "REGULAR",
        "score2": 0,
        "score1": 0,
        "subType": "in",
        "timeActual": "2017-03-05 12:50:18",
        "shotClock": "00:00:00",
        "teamNumber": 2,
        "clock": "10:00:00",
        "actionType": "substitution",
        "timeSent": 1489449430.188,
        "players": {
            "team1": [1, 13, 3, 5, 9],
            "team2": [15, 2]
        }
    }, {
        "pno": 7,
        "period": 1,
        "actionNumber": 9,
        "sendDelay": 0.025,
        "success": 1,
        "previousAction": 0,
        "messageId": 20,
        "periodType": "REGULAR",
        "score2": 0,
        "score1": 0,
        "subType": "in",
        "timeActual": "2017-03-05 12:50:21",
        "shotClock": "00:00:00",
        "teamNumber": 2,
        "clock": "10:00:00",
        "actionType": "substitution",
        "timeSent": 1489449432.1883,
        "players": {
            "team1": [1, 13, 3, 5, 9],
            "team2": [15, 2, 3]
        }
    }, {
        "pno": 8,
        "period": 1,
        "actionNumber": 10,
        "sendDelay": 0.027,
        "success": 1,
        "previousAction": 0,
        "messageId": 22,
        "periodType": "REGULAR",
        "score2": 0,
        "score1": 0,
        "subType": "in",
        "timeActual": "2017-03-05 12:50:22",
        "shotClock": "00:00:00",
        "teamNumber": 2,
        "clock": "10:00:00",
        "actionType": "substitution",
        "timeSent": 1489449432.1886,
        "players": {
            "team1": [1, 13, 3, 5, 9],
            "team2": [15, 2, 3, 7]
        }
    }, {
        "pno": 0,
        "period": 1,
        "actionNumber": 11,
        "sendDelay": 0.073,
        "success": 1,
        "previousAction": 0,
        "messageId": 25,
        "periodType": "REGULAR",
        "score2": 0,
        "score1": 0,
        "subType": "start",
        "qualifiers": [],
        "timeActual": "2017-03-05 13:01:00",
        "shotClock": "00:00:00",
        "teamNumber": 0,
        "clock": "10:00:00",
        "actionType": "game",
        "timeSent": 1489449435.1895,
        "players": {
            "team1": [1, 13, 3, 5, 9],
            "team2": [15, 2, 3, 7, 8]
        }
    }, {
        "pno": 0,
        "period": 1,
        "actionNumber": 12,
        "sendDelay": 0.04,
        "success": 1,
        "previousAction": 0,
        "messageId": 26,
        "periodType": "REGULAR",
        "score2": 0,
        "score1": 0,
        "subType": "start",
        "qualifiers": [],
        "timeActual": "2017-03-05 13:01:00",
        "shotClock": "00:00:00",
        "teamNumber": 0,
        "clock": "10:00:00",
        "actionType": "clock",
        "system": 1,
        "timeSent": 1489449435.1897,
        "players": {
            "team1": [1, 13, 3, 5, 9],
            "team2": [15, 2, 3, 7, 8]
        }
    }, {
        "pno": 0,
        "period": 1,
        "actionNumber": 13,
        "sendDelay": 0.042,
        "success": 1,
        "previousAction": 0,
        "messageId": 29,
        "periodType": "REGULAR",
        "score2": 0,
        "score1": 0,
        "subType": "stop",
        "qualifiers": [],
        "timeActual": "2017-03-05 13:01:00",
        "shotClock": "00:00:00",
        "teamNumber": 0,
        "clock": "09:59:48",
        "actionType": "clock",
        "timeSent": 1489449436.1901,
        "players": {
            "team1": [1, 13, 3, 5, 9],
            "team2": [15, 2, 3, 7, 8]
        }
    }, {
        "pno": 7,
        "period": 1,
        "actionNumber": 14,
        "sendDelay": 0.023,
        "success": 1,
        "previousAction": 0,
        "messageId": 31,
        "periodType": "REGULAR",
        "score2": 0,
        "score1": 0,
        "subType": "won",
        "timeActual": "2017-03-05 13:01:13",
        "shotClock": "00:00:00",
        "teamNumber": 2,
        "clock": "09:57:45",
        "actionType": "jumpball",
        "timeSent": 1489449438.1908,
        "players": {
            "team1": [1, 13, 3, 5, 9],
            "team2": [15, 2, 3, 7, 8]
        }
    }, {
        "pno": 9,
        "period": 1,
        "actionNumber": 15,
        "sendDelay": 0.036,
        "success": 1,
        "previousAction": 14,
        "messageId": 32,
        "periodType": "REGULAR",
        "score2": 0,
        "score1": 0,
        "subType": "lost",
        "timeActual": "2017-03-05 13:01:14",
        "shotClock": "00:00:00",
        "teamNumber": 1,
        "clock": "09:56:43",
        "actionType": "jumpball",
        "timeSent": 1489449439.191,
        "players": {
            "team1": [1, 13, 3, 5, 9],
            "team2": [15, 2, 3, 7, 8]
        }
    }, {
        "pno": 0,
        "period": 1,
        "actionNumber": 16,
        "sendDelay": 0.028,
        "success": 1,
        "previousAction": 0,
        "messageId": 33,
        "periodType": "REGULAR",
        "score2": 2,
        "score1": 0,
        "y": 42.857,
        "x": 81.239,
        "subType": "jumpshot",
        "qualifiers": ["pointsinthepaint"],
        "timeActual": "2017-03-05 13:01:30",
        "completionDelay": 1.983,
        "shotClock": "00:00:00",
        "teamNumber": 2,
        "side": "right",
        "clock": "09:43:25",
        "area": "inthepaint",
        "actionType": "2pt",
        "timeSent": 1489449440.1913,
        "players": {
            "team1": [1, 13, 3, 5, 9],
            "team2": [15, 2, 3, 7, 8]
        }
    }]
}

summary

This message type has information about the how the match was run. Usually it will only be sent once at the end of the match.
type enum

The type of the message

summary
messageId integer

Unique identifier of the message being sent

timeActual datetime

The actual start date/time of the match in the UTC timezone

Format is: YYYY-MM-DD HH:MM:SS
timeEndActual datetime

The actual end date/time of the match in the UTC timezone

Format is: YYYY-MM-DD HH:MM:SS or Unfinished
duration integer

The duration (in minutes) of the match, excluding any pregame activities

durationActual integer

The actual duration of the match (mins) including timeouts, stoppages and period breaks.

temperature integer

The temperature during the match (degrees Celsius)

hasFlaggedActions enum

Indication if match has game actions that need to be fixed

0
No (Default)
1
Yes
attendance integer

The number of people who attended the match

Example

{
    "durationActual": 97,
    "timeEndActual": "2017-03-05 14:38:01",
    "messageId": 923,
    "timeActual": "2017-03-05 13:01:11",
    "duration": 40,
    "attendance": 250,
    "temperature": 25,
    "hasFlaggedActions": 0,
    "type": "summary"
}

Action Types

For a particular action an event can have 1 type, 1 subtype and any number of qualifiers

If qualifiers are able to be used for a particular action/subType, then any number of qualifiers may be applied to the action.

If the subType indicates (blank) this means that the action can be used without a subType.

Sport Action Types

type subType qualifiers
game      
  start    
  end Applies to end, abandon subType:
  • confirmed
  • endEarly
 
period      
  start    
  end
  • confirmed
 
comment     Comment text should be passed in the value field
timeout      
  media    
substitution      
  in    
  out    
bulksubstitution Applies to all subTypes:
  • players
  •  
  • players: send qualifiers as string |players:pno1,pno2,pno3|. ex. "players:3,4,5"
in
out
participated Applies to all subTypes:
  • players
  •  
  • players: send qualifiers as string |players:pno1,pno2,pno3|. ex. players:3,4,5;
assist (empty) Applies to all subTypes:
  • powerplay
  • shorthanded
  •  
block (empty)
faceoff (empty)
lost
won
goal (empty) Applies to all subTypes:
  • delayedpenalty
  • emptynet
  • evenstrength
  • extraattacker
  • first
  • gametying
  • gamewinning
  • hattrick
  • overtime
  • penalty
  • powerplay
  • shorthanded
  • suddendeath
  • team1Players
  • team2Players
  • unassisted
  • var
    • review
    • complete
  •  
  • team1Players: send qualifiers as string <br>|team1Players:pno1,pno2,pno3,pno4,pno5|<br>ex. <code>team1Players:2,3,4,5,6</code>
  • team2Players: send qualifiers as string <br>|team2Players:pno21,pno22,pno23,pno24|<br>ex. <code>team2Players:42,43,44,45</code>
disallowed
varoverturned
icing (empty)
keeperchange
fromplayer
toplayer
offside (empty)
penalty (empty) Applies to all subTypes:
  • benchminor
  • boarding
  • buttending
  • changinggoaltenderinterference
  • charging
  • chargingthegoaltender
  • clipping
  • contacttothehead
  • crosschecking
  • delayingthegame
  • directcontacttothehead
  • displacethenet
  • disqualification
  • divingembellishment
  • duration
  • elbowing
  • equipment
  • facemasks
  • faceoffviolation
  • fighting
  • fightingorpunching
  • forfeitofgame
  • goalkeeperhandlingthepuck
  • goaltenderinterference
  • handlingthepuck
  • headbutting
  • highsticking
  • hitafterwhistle
  • hittingfrombehind
  • holding
  • holdingthestick
  • hooking
  • illegalsubstitution
  • indirectcontacttothehead
  • interference
  • kicking
  • kneeing
  • leavingthebench
  • lineuprosterviolation
  • misconduct
  • obstruction
  • prematuresubstitution
  • refusingtoplaythepuck
  • refusingtostarttheplay
  • roughing
  • roughingafterwhistle
  • roughingthegoaltender
  • shotafterwhistle
  • slashing
  • slashingthegoalie
  • slew-footing
  • spearing
  • throwingequipment
  • toomanyplayersontheice
  • tripping
  • unsportsmanlikeconduct
  • var
    • review
    • complete
  •  
  • duration: Duration of penalty
benchdisqualification
benchgamemisconduct
benchmajor
benchminor
benchmisconduct
delayed
disqualification
gamemisconduct
goalie
grossmisconduct
major
match
minor
misconduct
varoverturned
penaltyserve (empty)
penaltyshot
penaltyshotmade
penaltyshotmissed
penaltyshotofftarget
penaltyshotpipe
powerplay (empty)
end
start
powerplayopportunity (empty)
save (empty)
shootout
shootoutsmade
shootoutsmissed
shot (empty)
blocked
offtarget
onpipe
ontarget Applies to ontarget subType:
  • powerplay
  • shorthanded
star (empty)
varreview
complete Applies to complete subType:
  • outcome
    • overturned
    • stands
start Applies to start subType:
  • for
    • goal
    • penalty

Administrative Action Types

type subType qualifiers  
status     Indicates a change in the status of the match
  delayed
  • venue
  • equipment
  • weather
  • officialslate
  • prevgame
  • teamlate
  • early
The start time of the match has been changed. The delay in minutes should be passed in the value field. Negative delays are allowed (to indicate early start).
  loaded   The match has been loaded in the software
  oncourt   Players on the pitch
  standby   Ready to kick-off
  ready   The match is ready to proceed in the software and the teams have been loaded
  inprogress   The match is currently in progress
  periodbreak   The match is currently in progress, but in a break between periods
  interrupted
  • venue
  • spectator
  • medical
  • violence
  • icerinkissue
  • glass-breakingissue
The match has been stopped temporarily and will resume after a delay. The delay in minutes should be passed in the value field. The qualifiers can be used to give a reason for the delay.
  cancelled   The match will not be started
  abandoned   The match has been stopped and will not restart
  rescheduled   The match has been stopped (or has not started) and will not start/restart. It will be played again at another time.
  finished   The match has come to the end
  protested   The match has come to the end, but the result has been protested
  complete   The match is complete, all scores have been confirmed and result is official
periodstatus     Indicates a change in the period status
  pending   Indicates the period is about to start
  started   Indicates the period has started
  ended   Indicates the period has ended
  confirmed   Indicates that scores have been confirmed for the period
clock      
  start    
  stop    
  adjustment   The number of seconds adjustment should be passed in the value field. Negative values are allowed
possessionchange      
capturestatus   Applies to all subTypes:
  • score
 
  unreliable   Indicates that the state of the game being sent by the software differs significantly from the actual situation.
  reliable   Indicates that the state of the game being sent by the software now matches the actual situation.
environmentcondition pitch Applies to pitch subTypes:
  • regular
  • excellent
  • wetfast
  • wetslow
  • frozen
  • bad
  • artificial
 
  weather Applies to weather subTypes:
  • sun
  • clouds
  • rain
  • snow
  • fog
  • roof
  • night
  • normal
 
risk (empty)
  • goal
  • var
  • penalty
 

Playing Surface Definitions

Coordinates

area, x, y and side are defined based upon the diagram below.

x and y are defined as percentage measurments of the total width and height of the ice hockey court. The origin (0,0) is the bottom left corner of the image meaning the top right point is (100,100).

Example:
A North America Ice Hockey court length is 200 feet and goal line is at 11 feet
Therefore the x coordinate of the goal line = 11/200 * 100 = 5.5
and the x coordinate of the other goal line = (200-11)/200 * 100 = 94.5

Action Areas

area is defined by which of the defined boxes the player was in when the action occurred.

The value of area in reference to the diagram are as follows:

Number on diagram Value
1 goalGreen
2 goalRed
3 behindGoal
4 goalBrown
5 leftWing
6 rightWing
7 goalDarkBlue
8 neutralZone

Face-off Spots

The value of spot in reference to the diagram are as follows:

Number on diagram Value
0 spot0
1 spot1
2 spot2
3 spot3
4 spot4
5 spot5
6 spot6
7 spot7
8 spot8

Rink Types(svg)

NCAA Rink(svg)

width 25.9m (85 feet)
length 60.96m (200 feet)
corners radius 6.1m (20 feet)
goal line distance 3.35m (11 feet)
blue line distance 19.51m (64 feet)