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)
EXTRATIME
PENALTYSHOOTOUT
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.

summary object

Summary data about the match, keyed by team number in the match, 1 or 2

goals string

The times of any goals for this team (space separated)

cardsRed string

The times of any red cards for this team (space separated)

cardsYellow string

The times of any yellow cards for this team (space separated)

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

length integer

The length of each period (in minutes)

extraTime enum

Whether a match in this competition can play overtime? 1=Yes, 0=No.

1
Yes
0
No
extraTimeLength integer

The length of each overtime period (in minutes)

courtType enum

Court type of the match.

1
Default

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

colorCode string(7)

Team kit color in RGB format (e.g. '#FFFFFF')

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.

STRIKER
Striker
LEFTWINGER
Left Winger
RIGHTWINGER
Right Winger
LEFTFORWARD
Left Forward
RIGHTFORWARD
Right Forward
CENTERATTACKINGMIDFIELD
Center Attacking Midfield
CENTERDEFENSIVEMIDFIELD
Center Defensive Midfield
LEFTMIDFIELD
Left Midfield
RIGHTMIDFIELD
Right Midfield
CENTERMIDFIELD
Center Midfield
LEFTBACK
Left Back
RIGHTBACK
Right Back
RIGHTWINGBACK
Right Wing Back
LEFTWINGBACK
Left Wing Back
CENTERBACK
Center Back
GOALKEEPER
Goal Keeper
FORWARD
Forward
DEFENDER
Defender
MIDFIELDER
Midfielder
UNKNOWN
Unknown
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)
standsAtGoal enum

Is the person currently playing as goalie.

1
Yes
0
No (Default)
formation associativearray

Team formation

name string

Formation name: 4-4-2

positions array

Starting players positions on the playing surface. In Football need to include Goalkeeper.

pno integer

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

x float

X coordinate of player position on the playing surface.

y float

Y coordinate of player position on the playing surface.

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

CAPTAIN
Captain
VICE_CAPTAIN
Vice Captain
HEAD_COACH
Head Coach
COACH
Coach
ASSISTANT_COACH
Assistant Coach
UMPIRE
Umpire
externalId string(50)

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

Example

{
    "messageId": 23,
    "teams": [{
        "players": [{
            "active": 1,
            "pno": 1,
            "firstName": "Natalie",
            "personId": 485217,
            "shirtNumber": "2",
            "playingPosition": "GOALKEEPER",
            "height": 0,
            "familyName": "Barstow",
            "starter": 1,
            "captain": 0,
            "startsAtGoal": 1,
            "standsAtGoal": 1
        }, {
            "active": 1,
            "pno": 13,
            "firstName": "Sarah",
            "personId": 51301,
            "shirtNumber": "4",
            "playingPosition": "",
            "height": 0,
            "familyName": "Lucas",
            "starter": 1,
            "captain": 1,
            "familyNameTV": "",
            "firstNameTV": "",
            "nickName": "",
            "scoreboardName": "",
            "internationalFirstName": "",
            "internationalFamilyName": "",
            "externalId": "83",
            "internationalReference": "",
            "nationalityCodeIOC": "",
            "nationalityCode": "",
            "nationality": "",
            "website": "",
            "dob": null,
            "photo": {
                "S1": {
                    "size": "S1",
                    "height": 200,
                    "width": 200,
                    "bytes": 6482,
                    "url": "http:\/\/img.wh.sportingpulseinternational.com\/e6f242b743acefcfdbeb6cb0a6065362S1.jpg"
                },
                "T1": {
                    "size": "T1",
                    "height": 75,
                    "width": 75,
                    "bytes": 2101,
                    "url": "http:\/\/img.wh.sportingpulseinternational.com\/e6f242b743acefcfdbeb6cb0a6063462T1.jpg"
                }
            }
        }, {
            "active": 0,
            "pno": 2,
            "firstName": "Mary",
            "personId": 459148,
            "shirtNumber": "7",
            "playingPosition": "",
            "height": 0,
            "familyName": "Carson",
            "starter": 0,
            "captain": 0
        }, {
            "active": 1,
            "pno": 3,
            "firstName": "Kirsten",
            "personId": 456849,
            "shirtNumber": "8",
            "playingPosition": "",
            "height": 0,
            "familyName": "Sampson",
            "starter": 1,
            "captain": 0
        }, {
            "active": 0,
            "pno": 4,
            "firstName": "Karen",
            "personId": 485623,
            "shirtNumber": "9",
            "playingPosition": "",
            "height": 0,
            "familyName": "Robertson",
            "starter": 0,
            "captain": 0
        }, {
            "active": 1,
            "pno": 5,
            "firstName": "Sarah",
            "personId": 51323,
            "shirtNumber": "10",
            "playingPosition": "",
            "height": 0,
            "familyName": "Thomas",
            "starter": 1,
            "captain": 0
        }, {
            "active": 0,
            "pno": 6,
            "firstName": "Hannah",
            "personId": 539730,
            "shirtNumber": "11",
            "playingPosition": "",
            "height": 0,
            "familyName": "Mason",
            "starter": 0,
            "captain": 0
        }, {
            "active": 0,
            "pno": 7,
            "firstName": "Rebecca",
            "personId": 459547,
            "shirtNumber": "12",
            "playingPosition": "",
            "height": 0,
            "familyName": "Mitchell",
            "starter": 0,
            "captain": 0
        }, {
            "active": 0,
            "pno": 8,
            "firstName": "Shawna",
            "personId": 485659,
            "shirtNumber": "16",
            "playingPosition": "",
            "height": 0,
            "familyName": "Milleton",
            "starter": 0,
            "captain": 0
        }, {
            "active": 1,
            "pno": 9,
            "firstName": "Trixie",
            "personId": 529759,
            "shirtNumber": "43",
            "playingPosition": "",
            "height": 0,
            "familyName": "Mountford",
            "starter": 1,
            "captain": 0
        }],
        "assistcoach2": {
            "firstName": "",
            "personId": 0,
            "familyName": ""
        },
        "assistcoach1": {
            "firstName": "Joshua",
            "personId": 0,
            "familyName": "Webber"
        },
        "teamNumber": 1,
        "coach": {
            "firstName": "Barry",
            "personId": 0,
            "familyName": "Sanders"
        },
        "detail": {
            "teamName": "Southern Knights",
            "teamCode": "SKN",
            "teamNickname": "Knights",
            "teamId": 36348
        },
        "formation": {
            "name": "4-4-2",
            "positions": [{
                "pno": 1,
                "x": 15,
                "y": 50
            }, {
                "pno": 2,
                "x": 30,
                "y": 20
            }, {
                "pno": 3,
                "x": 30,
                "y": 40
            }, {
                "pno": 4,
                "x": 25,
                "y": 60
            }, {
                "pno": 5,
                "x": 30,
                "y": 80
            }, {
                "pno": 6,
                "x": 30,
                "y": 20
            }, {
                "pno": 7,
                "x": 60,
                "y": 40
            }, {
                "pno": 8,
                "x": 60,
                "y": 60
            }, {
                "pno": 9,
                "x": 60,
                "y": 80
            }, {
                "pno": 10,
                "x": 80,
                "y": 40
            }, {
                "pno": 11,
                "x": 80,
                "y": 60
            }]
        }
    }, {
        "players": [{
            "active": 0,
            "pno": 1,
            "firstName": "Sally",
            "personId": 305610,
            "shirtNumber": "2",
            "playingPosition": "GOALKEEPER",
            "height": 0,
            "familyName": "Bright",
            "starter": 0,
            "captain": 0
        }, {
            "active": 0,
            "pno": 13,
            "firstName": "Edwina",
            "personId": 557261,
            "shirtNumber": "4",
            "playingPosition": "",
            "height": 0,
            "familyName": "Donaldson",
            "starter": 0,
            "captain": 0
        }, {
            "active": 1,
            "pno": 15,
            "firstName": "Nola",
            "personId": 544313,
            "shirtNumber": "6",
            "playingPosition": "",
            "height": 0,
            "familyName": "Queen",
            "starter": 1,
            "captain": 0
        }, {
            "active": 1,
            "pno": 2,
            "firstName": "Nora",
            "personId": 51028,
            "shirtNumber": "7",
            "playingPosition": "CM",
            "height": 0,
            "familyName": "White",
            "starter": 1,
            "captain": 0
        }, {
            "active": 1,
            "pno": 3,
            "firstName": "Riley",
            "personId": 51833,
            "shirtNumber": "8",
            "playingPosition": "CM",
            "height": 0,
            "familyName": "Richardson",
            "starter": 1,
            "captain": 0
        }, {
            "active": 0,
            "pno": 4,
            "firstName": "Casey",
            "personId": 459027,
            "shirtNumber": "12",
            "playingPosition": "",
            "height": 0,
            "familyName": "Brown",
            "starter": 0,
            "captain": 0
        }, {
            "active": 0,
            "pno": 5,
            "firstName": "Jacklyn",
            "personId": 53608,
            "shirtNumber": "15",
            "playingPosition": "ST",
            "height": 0,
            "familyName": "Trudeau",
            "starter": 0,
            "captain": 0
        }, {
            "active": 0,
            "pno": 6,
            "firstName": "Coral",
            "personId": 450828,
            "shirtNumber": "20",
            "playingPosition": "",
            "height": 0,
            "familyName": "Walker",
            "starter": 0,
            "captain": 0
        }, {
            "active": 1,
            "pno": 7,
            "firstName": "Caroline",
            "personId": 550029,
            "shirtNumber": "21",
            "playingPosition": "",
            "height": 0,
            "familyName": "Brightman",
            "starter": 1,
            "captain": 0
        }, {
            "active": 1,
            "pno": 8,
            "firstName": "Alison",
            "personId": 450829,
            "shirtNumber": "23",
            "playingPosition": "",
            "height": 0,
            "familyName": "Frederickson",
            "starter": 1,
            "captain": 0
        }, {
            "active": 0,
            "pno": 17,
            "firstName": "Elsie",
            "personId": 270906,
            "shirtNumber": "25",
            "playingPosition": "",
            "height": 0,
            "familyName": "Charles",
            "starter": 0,
            "captain": 0
        }],
        "assistcoach2": {
            "firstName": "",
            "personId": 0,
            "familyName": ""
        },
        "assistcoach1": {
            "firstName": "",
            "personId": 0,
            "familyName": ""
        },
        "teamNumber": 2,
        "coach": {
            "firstName": "",
            "personId": 0,
            "familyName": ""
        },
        "detail": {
            "teamName": "Northern Dragons",
            "teamCode": "NOR",
            "teamNickname": "Dragons",
            "teamId": 550
        },
        "formation": {
            "name": "3-5-2",
            "positions": [{
                "pno": 1,
                "x": 15,
                "y": 50
            }, {
                "pno": 2,
                "x": 30,
                "y": 30
            }, {
                "pno": 3,
                "x": 30,
                "y": 50
            }, {
                "pno": 4,
                "x": 30,
                "y": 70
            }, {
                "pno": 5,
                "x": 50,
                "y": 15
            }, {
                "pno": 6,
                "x": 50,
                "y": 75
            }, {
                "pno": 7,
                "x": 60,
                "y": 30
            }, {
                "pno": 8,
                "x": 60,
                "y": 50
            }, {
                "pno": 9,
                "x": 60,
                "y": 70
            }, {
                "pno": 10,
                "x": 40,
                "y": 40
            }, {
                "pno": 11,
                "x": 40,
                "y": 60
            }]
        }
    }],
    "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

CAPTAIN
Captain
VICE_CAPTAIN
Vice Captain
HEAD_COACH
Head Coach
COACH
Coach
ASSISTANT_COACH
Assistant Coach
REFEREE
Referee
ASSISTANT_REFEREE
Assistant Referee
RESERVE_REFEREE
Reserve Referee
RESERVE_ASSISTANT_REFEREE
Reserve Assistant Referee
TEAM
Team
MEDICAL_STAFF
Medical Staff
MATCH_OFFICIAL
Match Official
COMMISSIONER
Commissioner
STATISTICIAN
Statistician
SCOREKEEPER
Scorekeeper
ASSISTANT_SCOREKEEPER
Assistant Scorekeeper
TIMEKEEPER
Timekeeper
VIDEO_OPERATOR
Video Operator
VIDEO_ASSISTANT_REFEREE
Video Assistant Referee
ALTERNATE_OFFICIAL
Alternate Official
FOURTH_OFFICIAL
Fourth Official

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

sBallsRecovered integer

sBlocks integer

sChancesCreated integer

sClaimedCrosses integer

sClaimedSmother integer

sCleanSheets integer

sClearances integer

sClearancesHeader integer

sCorners integer

sCrosses integer

sCrossesCompleted integer

sCrossesPercentage decimal

The percentage of crosses completed

$sCrossesCompleted / $sCrosses
sDuels integer

sDuelsLost integer

sDuelsPercentage decimal

Calculated Field

$sDuelsWon / $sDuels
sDuelsWon integer

sEfficiency decimal

sEfficiencyCustom decimal

sFirstGoalInMatch integer

sFirstGoalInMatchTime string

sFoulsCommitted integer

sFoulsWon integer

sFreeKicks integer

sGoals integer

sGoalKicks integer

sUnassistedGoals integer

sGoalsConceded integer

Goals Conceded

sGoalsFreeKick integer

sGoalsHeader integer

sGoalsLeftFoot integer

sGoalsOffCorner integer

sGoalsPenaltyKick integer

DEPRECATED: please use sPenaltyShotsMade

sGoalsPercentage decimal

Calculated Field

$sGoals / $sShotsOnTarget
sGoalsRightFoot integer

sGoalsTimes string

sHatTricks integer

sHatTrickTimes string

sInterceptions integer

sMinutes decimal

sMinutesStoppage integer

Amount of minutes played during stoppage time

sMinutesWithStoppage integer

Calculated Field

$sMinutes + $sMinutesStoppage
sMinutesAsGoalkeeper decimal

Minutes for how long player played in a match as goalkeeper

sStarterAsGoalkeeper int

Player started match as goalkeeper

sParticipatedAsGoalkeeper int

Player participated as goalkeeper

sWinsAsGoalkeeper integer

Wether the player was GOALKEEPER when Game Winning Goal was scored by his team

sDrawsAsGoalkeeper integer

Wether the player was GOALKEEPER when Game Tying Goal was scored

sLossesAsGoalkeeper integer

Wether the player was GOALKEEPER when Game Winning Goal was scored by his team

sMVPVotes integer

sOffsides integer

sOwnGoalsAgainst integer

sOwnGoalsAgainstTimes string

sPasses integer

sPassesCompleted integer

sPassesKey integer

sPassingDistanceCovered integer

sPassingPercentage decimal

Calculated Field

$sPassesCompleted / $sPasses
sPenaltyShootOutAttempted integer

sPenaltyShootOutMade integer

sPenaltyShootOutPercentage decimal

Calculated Field

$sPenaltyShootOutMade / $sPenaltyShootOutAttempted
sPenaltyShootOutResults string

sPenaltyShootOutSave integer

sPenaltyShotsAttempted integer

sPenaltyShotsMade integer

sPenaltyShotsPercentage decimal

Calculated Field

$sPenaltyShotsMade / $sPenaltyShotsAttempted
sPossessionsPercentage decimal

Calculated Field

$sPassesCompleted / ( $sPassesCompletedTeam + $sPassesCompletedTeamOpp )
sRedCards integer

sRedCardsTimes string

sShots integer

sShotsBlocked integer

sShotsInsideBox integer

sShotsOffTarget integer

sShotsOnTarget integer

sShotsOnTargetPercentage decimal

Calculated Field

$sShotsOnTarget / $sShots
sShotsOnWoodwork integer

sShotsOutsideBox integer

Calculated Field

$sShots - $sShotsInsideBox
sShotsSaved integer

sShutout integer

sShutoutCombined integer

sSubstitutionOffTime string

sSubstitutionOnTime string

sTackles integer

sTacklesLost integer

sTacklesPercentage decimal

Calculated Field

$sTacklesWon / $sTackles
sTacklesWon integer

sThrowIns integer

Throw Ins taken

sTyingGoals integer

sTyingGoalTime string

sWinningGoals integer

sWinningGoalTime string

sYellowCards integer

sYellowCardsTimes string

team associativearray

The team's boxscore statistics

sAssists integer

sBallsRecovered integer

sBlocks integer

sChancesCreated integer

sClaimedCrosses integer

sClaimedSmother integer

sCleanSheets integer

sClearances integer

sClearancesHeader integer

sCorners integer

sCrosses integer

sCrossesCompleted integer

sCrossesPercentage decimal

Calculated Field

$sCrossesCompleted / $sCrosses
sDuels integer

sDuelsLost integer

sDuelsPercentage decimal

Calculated Field

$sDuelsWon / $sDuels
sDuelsWon integer

sEfficiency decimal

sEfficiencyCustom decimal

sFirstGoalInMatch integer

sFirstGoalInMatchTime string

sFormation string

sFoulsCommitted integer

sFoulsWon integer

sFreeKicks integer

sGoals integer

sGoalKicks integer

sUnassistedGoals integer

sGoalsOffCorner integer

sGoalsConceded integer

Goals Conceded

sGoalsFreeKick integer

sGoalsHeader integer

sGoalsLeftFoot integer

sGoalsPenaltyKick integer

DEPRECATED: please use sPenaltyShotsMade

sGoalsPercentage decimal

Calculated Field

$sGoals / $sShotsOnTarget
sGoalsRightFoot integer

sGoalsTimes string

sHatTricks integer

sHatTrickTimes string

sInterceptions integer

sMinutes decimal

sOffsides integer

sOwnGoalsAgainst integer

sOwnGoalsAgainstTimes string

sOwnGoalsFor integer

sOwnGoalsForTimes string

sPasses integer

sPassesCompleted integer

sPassesKey integer

sPassingDistanceCovered integer

sPassingPercentage decimal

Calculated Field

$sPassesCompleted / $sPasses
sPenaltyShootOutAttempted integer

sPenaltyShootOutMade integer

sPenaltyShootOutPercentage decimal

Calculated Field

$sPenaltyShootOutMade / $sPenaltyShootOutAttempted
sPenaltyShootOutResults string

sPenaltyShootOutSave integer

sPenaltyShotsAttempted integer

sPenaltyShotsMade integer

sPenaltyShotsPercentage decimal

Calculated Field

$sPenaltyShotsMade / $sPenaltyShotsAttempted
sPossessions integer

Time-based Team Possession sent by scouting software.

sPossessionsPercentage decimal

Passes-based Team Possession, calculated by the formula.

$sPassesCompleted / ( $sPassesCompleted + $sPassesCompletedOpp )
sRedCards integer

sRedCardsTimes string

sShots integer

sShotsBlocked integer

sShotsInsideBox integer

sShotsOffTarget integer

sShotsOnTarget integer

sShotsOnTargetPercentage decimal

Calculated Field

$sShotsOnTarget / $sShots
sShotsOnWoodwork integer

sShotsOutsideBox integer

Calculated Field

$sShots - $sShotsInsideBox
sShotsSaved integer

sShutout integer

sShutoutCombined integer

sTackles integer

sTacklesLost integer

sTacklesPercentage decimal

Calculated Field

$sTacklesWon / $sTackles
sTacklesWon integer

sThrowIns integer

Throw Ins taken

sTyingGoals integer

sTyingGoalTime string

sWinningGoals integer

sWinningGoalTime string

sYellowCards integer

sYellowCardsTimes string

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)
EXTRATIME
PENALTYSHOOTOUT
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

sBallsRecovered integer

sBlocks integer

sChancesCreated integer

sClaimedCrosses integer

sClaimedSmother integer

sCleanSheets integer

sClearances integer

sClearancesHeader integer

sCorners integer

sCrosses integer

sCrossesCompleted integer

sCrossesPercentage decimal

The percentage of crosses completed

$sCrossesCompleted / $sCrosses
sDuels integer

sDuelsLost integer

sDuelsPercentage decimal

Calculated Field

$sDuelsWon / $sDuels
sDuelsWon integer

sEfficiency decimal

sEfficiencyCustom decimal

sFirstGoalInMatch integer

sFirstGoalInMatchTime string

sFoulsCommitted integer

sFoulsWon integer

sFreeKicks integer

sGoals integer

sGoalKicks integer

sUnassistedGoals integer

sGoalsConceded integer

Goals Conceded

sGoalsFreeKick integer

sGoalsHeader integer

sGoalsLeftFoot integer

sGoalsOffCorner integer

sGoalsPenaltyKick integer

DEPRECATED: please use sPenaltyShotsMade

sGoalsPercentage decimal

Calculated Field

$sGoals / $sShotsOnTarget
sGoalsRightFoot integer

sGoalsTimes string

sHatTricks integer

sHatTrickTimes string

sInterceptions integer

sMinutes decimal

sMinutesStoppage integer

Amount of minutes played during stoppage time

sMinutesWithStoppage integer

Calculated Field

$sMinutes + $sMinutesStoppage
sMinutesAsGoalkeeper decimal

Minutes for how long player played in a match as goalkeeper

sStarterAsGoalkeeper int

Player started match as goalkeeper

sParticipatedAsGoalkeeper int

Player participated as goalkeeper

sWinsAsGoalkeeper integer

Wether the player was GOALKEEPER when Game Winning Goal was scored by his team

sDrawsAsGoalkeeper integer

Wether the player was GOALKEEPER when Game Tying Goal was scored

sLossesAsGoalkeeper integer

Wether the player was GOALKEEPER when Game Winning Goal was scored by his team

sMVPVotes integer

sOffsides integer

sOwnGoalsAgainst integer

sOwnGoalsAgainstTimes string

sPasses integer

sPassesCompleted integer

sPassesKey integer

sPassingDistanceCovered integer

sPassingPercentage decimal

Calculated Field

$sPassesCompleted / $sPasses
sPenaltyShootOutAttempted integer

sPenaltyShootOutMade integer

sPenaltyShootOutPercentage decimal

Calculated Field

$sPenaltyShootOutMade / $sPenaltyShootOutAttempted
sPenaltyShootOutResults string

sPenaltyShootOutSave integer

sPenaltyShotsAttempted integer

sPenaltyShotsMade integer

sPenaltyShotsPercentage decimal

Calculated Field

$sPenaltyShotsMade / $sPenaltyShotsAttempted
sPossessionsPercentage decimal

Calculated Field

$sPassesCompleted / ( $sPassesCompletedTeam + $sPassesCompletedTeamOpp )
sRedCards integer

sRedCardsTimes string

sShots integer

sShotsBlocked integer

sShotsInsideBox integer

sShotsOffTarget integer

sShotsOnTarget integer

sShotsOnTargetPercentage decimal

Calculated Field

$sShotsOnTarget / $sShots
sShotsOnWoodwork integer

sShotsOutsideBox integer

Calculated Field

$sShots - $sShotsInsideBox
sShotsSaved integer

sShutout integer

sShutoutCombined integer

sSubstitutionOffTime string

sSubstitutionOnTime string

sTackles integer

sTacklesLost integer

sTacklesPercentage decimal

Calculated Field

$sTacklesWon / $sTackles
sTacklesWon integer

sThrowIns integer

Throw Ins taken

sTyingGoals integer

sTyingGoalTime string

sWinningGoals integer

sWinningGoalTime string

sYellowCards integer

sYellowCardsTimes string

team associativearray

The team's boxscore statistics

sAssists integer

sBallsRecovered integer

sBlocks integer

sChancesCreated integer

sClaimedCrosses integer

sClaimedSmother integer

sCleanSheets integer

sClearances integer

sClearancesHeader integer

sCorners integer

sCrosses integer

sCrossesCompleted integer

sCrossesPercentage decimal

Calculated Field

$sCrossesCompleted / $sCrosses
sDuels integer

sDuelsLost integer

sDuelsPercentage decimal

Calculated Field

$sDuelsWon / $sDuels
sDuelsWon integer

sEfficiency decimal

sEfficiencyCustom decimal

sFirstGoalInMatch integer

sFirstGoalInMatchTime string

sFormation string

sFoulsCommitted integer

sFoulsWon integer

sFreeKicks integer

sGoals integer

sGoalKicks integer

sUnassistedGoals integer

sGoalsOffCorner integer

sGoalsConceded integer

Goals Conceded

sGoalsFreeKick integer

sGoalsHeader integer

sGoalsLeftFoot integer

sGoalsPenaltyKick integer

DEPRECATED: please use sPenaltyShotsMade

sGoalsPercentage decimal

Calculated Field

$sGoals / $sShotsOnTarget
sGoalsRightFoot integer

sGoalsTimes string

sHatTricks integer

sHatTrickTimes string

sInterceptions integer

sMinutes decimal

sOffsides integer

sOwnGoalsAgainst integer

sOwnGoalsAgainstTimes string

sOwnGoalsFor integer

sOwnGoalsForTimes string

sPasses integer

sPassesCompleted integer

sPassesKey integer

sPassingDistanceCovered integer

sPassingPercentage decimal

Calculated Field

$sPassesCompleted / $sPasses
sPenaltyShootOutAttempted integer

sPenaltyShootOutMade integer

sPenaltyShootOutPercentage decimal

Calculated Field

$sPenaltyShootOutMade / $sPenaltyShootOutAttempted
sPenaltyShootOutResults string

sPenaltyShootOutSave integer

sPenaltyShotsAttempted integer

sPenaltyShotsMade integer

sPenaltyShotsPercentage decimal

Calculated Field

$sPenaltyShotsMade / $sPenaltyShotsAttempted
sPossessions integer

Time-based Team Possession sent by scouting software.

sPossessionsPercentage decimal

Passes-based Team Possession, calculated by the formula.

$sPassesCompleted / ( $sPassesCompleted + $sPassesCompletedOpp )
sRedCards integer

sRedCardsTimes string

sShots integer

sShotsBlocked integer

sShotsInsideBox integer

sShotsOffTarget integer

sShotsOnTarget integer

sShotsOnTargetPercentage decimal

Calculated Field

$sShotsOnTarget / $sShots
sShotsOnWoodwork integer

sShotsOutsideBox integer

Calculated Field

$sShots - $sShotsInsideBox
sShotsSaved integer

sShutout integer

sShutoutCombined integer

sTackles integer

sTacklesLost integer

sTacklesPercentage decimal

Calculated Field

$sTacklesWon / $sTackles
sTacklesWon integer

sThrowIns integer

Throw Ins taken

sTyingGoals integer

sTyingGoalTime string

sWinningGoals integer

sWinningGoalTime string

sYellowCards integer

sYellowCardsTimes string

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)
EXTRATIME
PENALTYSHOOTOUT
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
possession associativearray

Field that defines team1 and team2 ball possession in game and period.

team1 associativearray

Team1 game and period possession

period integer

possession value for current period.

overall integer

possession value for whole game.

zones associativearray

danger zones possessions.

defensive integer

possession for "Defensive possession" zone

defensivemidfield integer

possession for "Defensive midfield possession" zone

offensivemidfield integer

possession for "Offensive midfield possession" zone

offensive integer

possession for "Offensive possession" zone

team2 associativearray

Team2 game and period possession

period integer

possession value for current period.

overall integer

possession value for whole game.

zones associativearray

danger zones possessions.

defensive integer

possession for "Defensive possession" zone

defensivemidfield integer

possession for "Defensive midfield possession" zone

offensivemidfield integer

possession for "Offensive midfield possession" zone

offensive integer

possession for "Offensive possession" zone

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)
EXTRATIME
PENALTYSHOOTOUT
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
possession associativearray

Field that defines team1 and team2 ball possession in game and period.

team1 associativearray

Team1 game and period possession

period integer

possession value for current period.

overall integer

possession value for whole game.

zones associativearray

danger zones possessions.

defensive integer

possession for "Defensive possession" zone

defensivemidfield integer

possession for "Defensive midfield possession" zone

offensivemidfield integer

possession for "Offensive midfield possession" zone

offensive integer

possession for "Offensive possession" zone

team2 associativearray

Team2 game and period possession

period integer

possession value for current period.

overall integer

possession value for whole game.

zones associativearray

danger zones possessions.

defensive integer

possession for "Defensive possession" zone

defensivemidfield integer

possession for "Defensive midfield possession" zone

offensivemidfield integer

possession for "Offensive midfield possession" zone

offensive integer

possession for "Offensive possession" zone

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 (empty) 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
 
abandon
period start    
  end Applies to end subType:
  • confirmed
 
comment (empty)   Comment text should be passed in the value field
goal (empty) Applies to all subTypes:
  • from
    • leftfoot
    • rightfoot
    • head
    • other
  • freekick
  • corner
  • noassist
  • penaltykick
  • goalkick
  • goalmouth
    • woodworkleft
    • woodworkhigh
    • woodworkright
    • highleft
    • lowleft
    • highcenter
    • lowcenter
    • highright
    • lowright
  • var
    • review
    • complete
 
  own    
  disallowed    
  var_overturned Applies to var_overturned subType:
  • wasOwnGoal
 
shot (empty)
  • from
    • leftfoot
    • rightfoot
    • head
    • other
  • freekick
  • insidebox
  • blocked
  • goalmouth
    • outleft
    • outhighleft
    • outhigh
    • outhighright
    • outright
    • woodworkleft
    • woodworkhigh
    • woodworkright
    • highleft
    • lowleft
    • highcenter
    • lowcenter
    • highright
    • lowright
 
penaltykick   Applies to all subTypes:
  • var
    • review
    • complete
 
  conceded    
  taken Applies to taken/retaken subTypes:
  • onTarget
  • offTarget
  • from
    • leftfoot
    • rightfoot
  • woodwork
  • goalmouth
    • outleft
    • outhighleft
    • outhigh
    • outhighright
    • outright
    • woodworkleft
    • woodworkhigh
    • woodworkright
    • highleft
    • lowleft
    • highcenter
    • lowcenter
    • highright
    • lowright
 
  retaken  
  var_overturned    
save (empty) Applies to all subTypes:
  • hands
  • feet
  • arms
  • body
  • reach
  • diveright
  • diveleft
 
  caught    
  deflected    
  smother    
  punch    
toss (empty) Applies to all subTypes:
  • startgame
  • penalty
  • extratime
 
  won    
  lost    
droppedball (empty)    
substitution in    
  out Applies to out subType:
  • injury
 
bulksubstitution Applies to all subTypes:
  • players
  •  
  • players: send qualifiers as string |players:pno1,pno2,pno3|. ex. "players:3,4,5"
in
out
retired return    
  out    
keeperchange (empty)    
  toplayer    
  fromplayer    
throwin conceded    
  taken    
freekick      
  conceded Applies to conceded subType:
  • fromfoul
  • indirect
  taken    
cardyellow (empty) Applies to all subTypes:
  • secondyellow
  • var
    • review
    • complete
  • official
  •  
  •  
  •  
  •  
  •  
  • official: send id as string |official:official_id|. ex. "official:12"
  delayingrestart    
  dissent    
  fieldofplay    
  encroaching    
  persistentinfringement    
  unsporting    
  simulation    
  changeposition    
  reckless    
  intefereattack    
  handball    
  markingpitch    
  playonleaving    
  lackofrespect    
  backpass    
  verbaldistraction    
  excessivecelebration    
  timewasting    
  failtorespectdistance    
  reenterfield    
  leavefield    
  dogsoinsidepa    
  teamofficialcaution    
  enterrra    
  excessivevarsignal    
  coach Applies to coach and var_overturned subTypes:
  • coachId

(with a value of personId of the coach)
  var_overturned    
cardred (empty) Applies to all subTypes:
  • var
    • review
    • complete
  • official
  •  
  •  
  •  
  •  
  • official: send id as string |official:official_id|. ex. "official:12"
  secondyellow    
  deliberatehandball    
  professionalfoul    
  seriousfoulplay    
  spitting    
  violentconduct    
  abusiveconduct    
  dissent    
  deniedgoalscoringchance    
  fighting    
  refereeassault    
  dogsohandball    
  dogsoinsidepa    
  dogsooutsidepa    
  teamofficialsendoff    
  enteringvor    
  coach Applies to coach and var_overturned subTypes:
  • coachId

(with a value of personId of the coach)
  var_overturned    
out (empty)    
corner conceded    
  taken    
goalkick conceded    
  taken    
delay (empty) Applies to all subTypes:
  • injury
  • bloodrule
  • weather
  • pitchcondition
  • pitchinvasion
 
  start    
  end    
assist (empty)    
  cross    
  header    
  throwin    
  goalkick    
clearance (empty) Applies to all subTypes:
  • from
    • leftfoot
    • rightfoot
    • head
    • other
 
  punch    
interception (empty)    
foul (empty)    
  careless    
  reckless    
  excessiveforce    
  handball    
  holding    
  impeding    
  spitting    
  dangerousplay    
  heldtoolong    
  other    
foulwon (empty)    
shootoutkick (empty) Applies to all subTypes:
  • onTarget
  • offTarget
  • from
    • leftfoot
    • rightfoot
  • goalmouth
    • outleft
    • outhighleft
    • outhigh
    • outhighright
    • outright
    • woodworkleft
    • woodworkhigh
    • woodworkright
    • highleft
    • lowleft
    • highcenter
    • lowcenter
    • highright
    • lowright
  • var
    • review
    • complete
 
  retaken    
shootoutsave (empty) Applies to all subTypes:
  • hands
  • feet
  • arms
  • body
  • reach
  • diveright
  • diveleft
 
  caught    
  deflected    
  smother    
  punch    
tackle (empty)    
  won    
  lost    
block (empty)    
pass (empty) Applies to all subTypes:
  • keypass
  • long
  • distance
 
  cross    
  received    
duel (empty) Applies to all subTypes:
  • aerial
 
  won    
  lost    
claim   Applies to all subTypes:
  • fromcross
 
  caught    
  smother    
recovery (empty)    
offside (empty)    
injurytime (empty)   The number of minutes added should be passed in the value field
injury (empty)
sustained Player injury occurred on pitch
recovered Previously injured player entered the pitch again
kickoff (empty)   Indication that game is started or restarted after goal
varreview start Applies to start subType:
  • for
    • yellowCard
    • redCard
    • goal
    • penalty
 
  complete Applies to complete subType:
  • outcome
    • overturned
    • pass
 
participated Applies to all subTypes:
  • players
  •  
  • players: send qualifiers as string |players:pno1,pno2,pno3|. ex. players:3,4,5;
team forfeit

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
  • equipment
  • venue
  • weather
  • spectator
  • medical
  • drinksbreak
  • violence
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
  • cardyellow
  • cardred
  • corners
  • time
 
  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
  • windy
  • partlyCloudy
  • indoor
 
risk (empty)
  • goal
  • cardyellow
  • var
  • cardred
  • penalty
 

Playing Surface Definitions

Coordinates

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 football pitch. The origin (0,0) is the bottom left corner of the image meaning the top right point is (100,100).

Danger Zones

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

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

Number on diagram Value Description
1 defensive defensive possession
2 defensivemidfield defensive midfield possession
3 offensivemidfield offensive midfield possession
4 offensive offensive possession

Court Types(svg)

Football Pitch(svg)