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

GAMESET
GOLDENSET
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

points integer

The number of points for this team in current period

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)

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

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.

colorCode string(7)

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

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.

UNIVERSAL
Universal
LIBERO
Libero
OUTSIDEHITTER
Outside Hitter
OPPOSITE
Opposite
MIDDLEBLOCKER
Middle Blocker
SETTER
Setter
DS-L
Libero / Defensive specialist
DS
Defensive specialist
MH
Middle Hitter
RS
Right Side
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.

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

Example

{
    "messageId": 23,
    "teams": [{
        "players": [{
            "active": 1,
            "pno": 1,
            "firstName": "Natalie",
            "personId": 485217,
            "shirtNumber": "2",
            "playingPosition": "",
            "height": 0,
            "familyName": "Barstow",
            "starter": 1,
            "captain": 0
        }, {
            "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
        }
    }, {
        "players": [{
            "active": 0,
            "pno": 1,
            "firstName": "Sally",
            "personId": 305610,
            "shirtNumber": "2",
            "playingPosition": "",
            "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": "G",
            "height": 0,
            "familyName": "White",
            "starter": 1,
            "captain": 0
        }, {
            "active": 1,
            "pno": 3,
            "firstName": "Riley",
            "personId": 51833,
            "shirtNumber": "8",
            "playingPosition": "G",
            "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": "G",
            "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
        }
    }],
    "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

  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
1ST_REFEREE
First Referee
2ND_REFEREE
Second Referee
LINE_JUDGE
Line Judge
VIDEO_REFEREE
Video Referee

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.

pairMatchId integer

Unique identifier for the pair match

sAssists integer

An assist is awarded when a player passes, sets or digs a ball to a teammate who attacks the ball for a kill.

sAttackBlocked decimal

The opponent blocks the attack and scores a point.

sAttackBlockedCovered integer

Attack blocked but covered by the team that performed the attack.

sAttackBlockedFirstBall integer

sAttackBlockedFirstTransition integer

sAttackBlockedPercentageFirstBall decimal

Calculated Field

$sAttackBlockedFirstBall/ $sAttacksFirstBall
sAttackBlockedPercentageFirstTransition decimal

Calculated Field

$sAttackBlockedFirstTransition / $sAttacksFirstTransition
sAttackBlockedPercentageTransition decimal

Calculated Field

$sAttackBlockedTransition / $sAttacksTransition
sAttackBlockedTransition integer

sAttackEfficiency decimal

Calculated Field. An index that allows to compare positive and negative actions. The range is -100%...+100%.

($sPointsFromAttack - $sAttackBlocked - $sAttackError) / $sAttacks
sAttackEfficiencyFirstBall decimal

Calculated Field

($sPointsFromAttackFirstBall - $sAttackBlockedFirstBall - $sAttackErrorFirstBall) / $sAttacksFirstBall
sAttackEfficiencyFirstTransition decimal

Calculated Field

($sPointsFromAttackFirstTransition - $sAttackBlockedFirstTransition - $sAttackErrorFirstTransition) / $sAttacksFirstTransition
sAttackEfficiencyTransition decimal

Calculated Field

($sPointsFromAttackTransition - $sAttackBlockedTransition - $sAttackErrorTransition) / $sAttacksTransition
sAttackError integer

Ball out, net ball, invasion.

sAttackErrorFirstBall integer

sAttackErrorFirstTransition integer

sAttackErrorTransition integer

sAttackErrorTotal integer

Calculated Field. Ball out, net ball, invasion and blocked.

$sAttackError + $sAttackBlocked
sAttackNegative integer

An attack that was easily dug by the opponent who can try and play the ball again.

sAttackNegativityFirstBall decimal

Calculated Field

$sAttackErrorFirstBall / $sAttacksFirstBall
sAttackNegativityFirstTransition decimal

Calculated Field

$sAttackErrorFirstTransition / $sAttacksFirstTransition
sAttackNegativityTransition decimal

Calculated Field

$sAttackErrorTransition/$sAttacksTransition
sAttackPercentage decimal

Calculated Field. An index that allows to compare positive and negative actions.

($sPointsFromAttack - $sAttackBlocked - $sAttackError) / $sAttacks
sAttackPositive integer

The opponent team defended with difficulty and it allows a second attack chance.

sAttackPositivity decimal

Calculated Field. An index about the positive attacks over the total attacks.

$sPointsFromAttack / $sAttacks
sAttackPositivityFirstBall decimal

Calculated Field

$sPointsFromAttackFirstBall / $sAttacksFirstBall
sAttackPositivityFirstTransition decimal

Calculated Field

$sPointsFromAttackFirstTransition / $sAttacksFirstTransition
sAttackPositivityTransition decimal

Calculated Field

$sPointsFromAttackTransition / $sAttacksTransition
sAttacks integer

The sum of all attacks.

sAttacksFirstBall integer

sAttacksFirstTransition integer

sAttacksTransition integer

sBallHandlingError integer

A ball-handling error is charged when the official calls a lifted ball, a thrown ball or a double hit.

sBlocksTotal decimal

The sum of all the blocks made. Assist plus Solo.

sBlockAssist integer

A Block Assist is awarded when two or three players block the ball into the opposition's court or out of bounds off the opposition leading directly to a point or side-out. Each player attempting to block receives a block assist even if only one player act

sBlockAssist2 integer

sBlockAssist3 integer

sBlockEfficiency decimal

Calculated Field. An index that allows to compare positive and negative actions. The range is -100%...+100%.

($sPointsFromBlock + $sBlockPositive) - ($sBlockInvasion + $sBlockError)/$sBlocks
sBlockError integer

Hands out, net ball, ball landed in own side.

sBlockInvasion integer

Antenna touch, net touch, foot invasion. Point goes to the opponent team.

sBlockNegative integer

The ball is touched, defended with difficulty and the team cannot perform an attack.

sBlockPoor integer

Covered by the team that performed the attack.

sBlockPositive integer

The ball is touched and the own team can perform an attack.

sBlocks decimal

The sum of all blocks.

sBlockSolo integer

A block solo is awarded when one player blocks the ball into the opposition's court or out of bounds off the opposition leading directory to a point or sideout.

sDigEfficiency decimal

Calculated Field. An index that allows to compare positive and negative actions. The range is -100%...+100%.

($sDigPositive + $sDigPerfect + $sDigGood + $sDigVeryPoor)/$sDigs
sDigError integer

Ball not defended or determines the end of the rally.

sDigGood integer

The ball is covered after a blocked attack.

sDigNegative integer

The dig doesn’t allow an attack.

sDigPerfect integer

Very difficult dig or dig after a tip that allows to perform an attack.

sDigPositive integer

Easy dig that allows to perform an attack.

sDigs integer

The sum of all digs.

sDigsToKill integer

sDigsToKillPercentage decimal

Calculated Field

$sDigsToKill / $sDigs
sDigVeryPoor integer

The ball is sent directly in the other court.

sErrorSideOut decimal

Calculated Field

($sPointsSideOut-$sServeError)/$sReceives
sFirstBallOnSideOutPercentage decimal

Calculated Field

$sReceiveToKill / $sReceives
sFreeBallEfficiency decimal

Calculated Field. An index that allows to compare positive and negative actions. The range is -100%...+100%.

(($sFreeBallPerfect + $sFreeBallPositive) - ($sFreeBallVeryPoor + $sFreeBallError))/$sFreeBalls
sFreeBallError integer

On the floor or out.

sFreeBallGood integer

The pass landing point is on the 3 meters line (10 foot line) or the ball trajectory is too much directed to the antenna of zone 4 or zone 2.

sFreeBallNegative integer

The team can set only high ball or one hand set.

sFreeBallPerfect integer

The ball passed within the 3 meter line, it allows all attack combinations.

sFreeBallPositive integer

The ball passed within the 3 meter line (1 or 2 meters from the net), more than one attack can be performed.

sFreeBalls integer

The sum of all freeBalls

sFreeBallVeryPoor integer

The ball is sent directly in the other court or the pass doesn’t allow a set.

sLibero integer

Player is marked as libero

sMinutes decimal

sPeriods integer

Periods played

sPeriodsWon integer

Periods won

sPeriodsLost integer

Periods lost

sPeriodsDrawn integer

Periods drawn

sPoints decimal

The sum of all points

sPointScoringPerServe decimal

Calculated Field

$sPointsPointScoring/$sServes
sPointsFromAttack integer

The sum of all points made through attacks.

sPointsFromAttackFirstBall integer

sPointsFromAttackFirstTransition integer

sPointsFromAttackTransition integer

sPointsFromBlock decimal

The sum of all points made through blocks.

sPointsFromServe integer

The sum of all points made through aces.

sPointsPointScoring integer

sPointsSideOut integer

sReceive0 integer

Calculated Field. An index to evaluate the receptions.

$sReceives- $sReceiveError
sReceiveEfficiency decimal

Calculated Field. An index that allows to compare positive and negative actions. The range is -100%...+100%.

($sReceivePerfect + $sReceivePositive)/$sReceives
sReceiveError integer

The team can't receive, the serve determines the end of the rally or rotation fault.

sReceiveExcellentPercentage decimal

Calculated Field. An index to evaluate the perfect receptions, when the ball arrive in 3 meters line.

$sReceivePerfect/$sReceives
sReceiveGood integer

The reception landing point is on the 3 meters line or the ball trajectory is too much directed to the antenna of zone 4 or zone 2.

sReceiveNegative integer

The team can set only high ball or one hand set.

sReceivePercentage decimal

Calculated Field. An index to evaluate the receptions.

($sReceives- $sReceiveError)/$sReceives
sReceivePerfect integer

Ball received within the 3 meters line, all attack combinations can be set.

sReceivePositive integer

Ball received within the 3 meters line (1 or 2 meters from the net), more than one attack can be performed.

sReceivePositivePercentage decimal

Calculated Field. An index about the positive receptions over the total receptions.

($sReceivePerfect + $sReceivePositive)/$sReceives
sReceives integer

The sum of total receptions.

sReceiveToKill integer

sReceiveVeryPoor integer

The ball is sent directly in the other court or the reception doesn’t allow a set.

sServeEfficiency decimal

Calculated Field. An index that allows to compare positive and negative actions. The range is -100%...+100%.

($sPointsFromServe + $sServePositive + $sServePoor + $sServeVeryPositive) / $sServes
sServeError integer

Net, ball out, foot foul

sServeNegative integer

It generates a positive or a perfect reception that allow the opponent setter to set all attack combinations.

sServeNegativity integer

Calculated Field

$sServeError/$sServes
sServePercentage decimal

Calculated Field. An index that allows to compare positive and negative actions.

($sServes - $sServeError) / $sServes
sServePoor integer

The reception landing point is on the 3 meters line (10 foot line) or the ball trajectory is too much directed to the antenna.

sServePositive integer

The opponent can only set high ball or one hand set.

sServePositivity decimal

Calculated Field. An index about the aces over the total serves.

($sPointsFromServe/$sServes)
sServes integer

The sum of all serves.

sServesSetFirst integer

Indicates person that serves first.

sServeVeryPositive integer

The reception of the opponent team is poor. The ball is sent directly in the other court or the reception doesn't allow a set.

sSetAssist integer

Awarded when a player sets a ball to a teammate who attacks the ball for a kill.

sSetEfficiency decimal

Calculated Field. An index that allows to compare positive and negative actions. The range is -100%...+100%.

(($sSetPerfect + $sSetPositive)- ($sSetError + $sSetVeryPoor))/$sSets
sSetError integer

In the net, out, set foul, court invasion during set.

sSetGood integer

The set is not accurate

sSetNegative integer

The spiker cannot perform a perfect attack.

sSetPercentage decimal

Calculated Field. An index that allows to compare positive and negative actions.

$sSetAssist/$sSets
sSetPerfect integer

The following attack is without Block or 1 player block.

sSetPositive integer

The following attack is with a block of 2 or 3 players.

sSets integer

A sum of all sets.

sSetVeryPoor integer

The ball is sent directly in the other court.

sSideOutPercentage decimal

Calculated Field

$sPointsSideOut/$sServes
team associativearray

The team's boxscore statistics

pairMatchId integer

Unique identifier for the pair match

sAssists integer

An assist is awarded when a player passes, sets or digs a ball to a teammate who attacks the ball for a kill.

sAttackBlocked integer

The opponent blocks the attack and scores a point.

sAttackBlockedCovered integer

Attack blocked but covered by the team that performed the attack.

sAttackBlockedFirstBall integer

sAttackBlockedFirstTransition integer

sAttackBlockedPercentageFirstBall decimal

Calculated Field

$sAttackBlockedFirstBall/ $sAttacksFirstBall
sAttackBlockedPercentageFirstTransition decimal

Calculated Field

$sAttackBlockedFirstTransition / $sAttacksFirstTransition
sAttackBlockedPercentageTransition decimal

Calculated Field

$sAttackBlockedTransition / $sAttacksTransition
sAttackBlockedTransition integer

sAttackEfficiency decimal

Calculated Field. An index that allows to compare positive and negative actions. The range is -100%...+100%.

($sPointsFromAttack - $sAttackBlocked - $sAttackError) / $sAttacks
sAttackEfficiencyFirstBall decimal

Calculated Field

($sPointsFromAttackFirstBall - $sAttackBlockedFirstBall - $sAttackErrorFirstBall) / $sAttacksFirstBall
sAttackEfficiencyFirstTransition decimal

Calculated Field

($sPointsFromAttackFirstTransition - $sAttackBlockedFirstTransition - $sAttackErrorFirstTransition) / $sAttacksFirstTransition
sAttackEfficiencyTransition decimal

Calculated Field

($sPointsFromAttackTransition - $sAttackBlockedTransition - $sAttackErrorTransition) / $sAttacksTransition
sAttackError integer

Ball out, net ball, invasion.

sAttackErrorFirstBall integer

sAttackErrorFirstTransition integer

sAttackErrorTransition integer

sAttackErrorTotal integer

Calculated Field. Ball out, net ball, invasion and blocked.

$sAttackError + $sAttackBlocked
sAttackNegative integer

An attack that was easily dug by the opponent who can try and play the ball again.

sAttackNegativityFirstBall decimal

Calculated Field

$sAttackErrorFirstBall / $sAttacksFirstBall
sAttackNegativityFirstTransition decimal

Calculated Field

$sAttackErrorFirstTransition / $sAttacksFirstTransition
sAttackNegativityTransition decimal

Calculated Field

$sAttackErrorTransition/$sAttacksTransition
sAttackPercentage decimal

Calculated Field. An index that allows to compare positive and negative actions.

($sPointsFromAttack - $sAttackBlocked - $sAttackError) / $sAttacks
sAttackPositive integer

The opponent team defended with difficulty and it allows a second attack chance.

sAttackPositivity decimal

Calculated Field. An index about the positive attacks over the total attacks.

$sPointsFromAttack / $sAttacks
sAttackPositivityFirstBall decimal

Calculated Field

$sPointsFromAttackFirstBall / $sAttacksFirstBall
sAttackPositivityFirstTransition decimal

Calculated Field

$sPointsFromAttackFirstTransition / $sAttacksFirstTransition
sAttackPositivityTransition decimal

Calculated Field

$sPointsFromAttackTransition / $sAttacksTransition
sAttacks integer

The sum of all attacks.

sAttacksFirstBall integer

sAttacksFirstTransition integer

sAttacksTransition integer

sBiggestLead integer

sBiggestLeadScore string

sBiggestScoringRun integer

sBiggestScoringRunScore string

sBallHandlingError integer

A ball-handling error is charged when the official calls a lifted ball, a thrown ball or a double hit.

sBlocksTotal decimal

The sum of all the blocks made. Assist plus Solo.

sBlockAssist integer

A Block Assist is awarded when two or three players block the ball into the opposition's court or out of bounds off the opposition leading directly to a point or side-out. Each player attempting to block receives a block assist.

sBlockAssist2 integer

sBlockAssist3 integer

sBlockEfficiency decimal

Calculated Field. An index that allows to compare positive and negative actions. The range is -100%...+100%.

(($sPointsFromBlock + $sBlockPositive) - ($sBlockInvasion + $sBlockError))/$sBlocks
sBlockError integer

Hands out, net ball, ball landed in own side.

sBlockInvasion integer

Antenna touch, net touch, foot invasion. Point goes to the opponent team.

sBlockNegative integer

The ball is touched, defended with difficulty and the team cannot perform an attack.

sBlockPoor integer

Covered by the team that performed the attack.

sBlockPositive integer

The ball is touched and the own team can perform an attack.

sBlocks decimal

The sum of all blocks.

sBlockSolo integer

A block solo is awarded when one player blocks the ball into the opposition's court or out of bounds off the opposition leading directory to a point or sideout.

sDigEfficiency decimal

Calculated Field. An index that allows to compare positive and negative actions. The range is -100%...+100%.

($sDigPositive + $sDigPerfect + $sDigGood + $sDigVeryPoor)/$sDigs
sDigError integer

Ball not defended or determines the end of the rally.

sDigGood integer

The ball is covered after a blocked attack.

sDigNegative integer

The dig doesn’t allow an attack.

sDigPerfect integer

Very difficult dig or dig after a tip that allows to perform an attack.

sDigPositive integer

Easy dig that allows to perform an attack.

sDigs integer

The sum of all digs.

sDigsToKill integer

sDigsToKillPercentage decimal

Calculated Field

$sDigsToKill / $sDigs
sDigVeryPoor integer

The ball is sent directly in the other court.

sErrorSideOut decimal

Calculated Field

($sPointsSideOut-$sServeError)/$sReceives
sFirstBallOnSideOutPercentage decimal

Calculated Field

$sReceiveToKill / $sReceives
sFreeBallEfficiency decimal

Calculated Field. An index that allows to compare positive and negative actions. The range is -100%...+100%.

(($sFreeBallPerfect + $sFreeBallPositive) - ($sFreeBallVeryPoor + $sFreeBallError))/$sFreeBalls
sFreeBallError integer

On the floor or out.

sFreeBallGood integer

The pass landing point is on the 3 meters line (10 foot line) or the ball trajectory is too much directed to the antenna of zone 4 or zone 2.

sFreeBallNegative integer

The team can set only high ball or one hand set.

sFreeBallPerfect integer

The ball passed within the 3 meter line, it allows all attack combinations.

sFreeBallPositive integer

The ball passed within the 3 meter line (1 or 2 meters from the net), more than one attack can be performed.

sFreeBalls integer

The sum of all freeballs

sFreeBallVeryPoor integer

The ball is sent directly in the other court or the pass doesn’t allow a set.

sLeadChanges integer

sMinutes decimal

sPeriods integer

Number of periods played.

sPeriodsDrawn integer

Number of periods drawn.

sPeriodsLost integer

Number of periods lost.

sPeriodsWon integer

Number of periods won.

sPoints integer

The sum of all points

sPointScoringPerServe decimal

Calculated Field

$sPointsPointScoring/$sServes
sTotalPlayerPoints decimal

The sum of all player points

sPointsFromAttack integer

The sum of all points made through attacks.

sPointsFromAttackFirstBall integer

sPointsFromAttackFirstTransition integer

sPointsFromAttackTransition integer

sPointsFromBlock decimal

The sum of all points made through blocks.

sPointsFromServe integer

The sum of all points made through aces.

sPointsPointScoring integer

sPointsSideOut integer

sReceive0 integer

Calculated Field. An index to evaluate the receptions.

$sReceives- $sReceiveError
sReceiveEfficiency decimal

Calculated Field. An index that allows to compare positive and negative actions. The range is -100%...+100%.

($sReceivePerfect + $sReceivePositive)/$sReceives
sReceiveError integer

The team can't receive, the serve determines the end of the rally or rotation fault.

sReceiveExcellentPercentage decimal

Calculated Field. An index to evaluate the perfect receptions, when the ball arrive in 3 meters line.

$sReceivePerfect/$sReceives
sReceiveGood integer

The reception landing point is on the 3 meters line or the ball trajectory is too much directed to the antenna of zone 4 or zone 2.

sReceiveNegative integer

The team can set only high ball or one hand set.

sReceivePercentage decimal

Calculated Field. An index to evaluate the receptions.

($sReceives- $sReceiveError)/$sReceives
sReceivePerfect integer

Ball received within the 3 meters line, all attack combinations can be set.

sReceivePositive integer

Ball received within the 3 meters line (1 or 2 meters from the net), more than one attack can be performed.

sReceivePositivePercentage decimal

Calculated Field. An index about the positive receptions over the total receptions.

($sReceivePerfect + $sReceivePositive)/$sReceives
sReceives integer

The total number of reception

sReceiveToKill integer

sReceiveVeryPoor integer

The ball is sent directly in the other court or the reception doesn’t allow a set.

sReceptionErrorforTeam integer

When Serve falls between two players and you cannot decide whose fault it was

sServeEfficiency decimal

Calculated Field. An index that allows to compare positive and negative actions. The range is -100%...+100%.

($sPointsFromServe + $sServePositive + $sServePoor + $sServeVeryPositive) / $sServes
sServeError integer

Net, ball out, foot foul

sServeNegative integer

It generate a positive or a perfect reception that allow the opponent setter to set all attack combinations.

sServeNegativity integer

Calculated Field

$sServeError/$sServes
sServePercentage decimal

Calculated Field. An index that allows to compare positive and negative actions.

($sServes - $sServeError) / $sServes
sServePoor integer

The reception landing point is on the 3 meters line (10 foot line) or the ball trajectory is too much directed to the antenna.

sServePositive integer

The opponent can only set high ball or one hand set.

sServePositivity decimal

Calculated Field. An index about the aces over the total serves.

($sPointsFromServe/$sServes)
sServes integer

The sum of all serves.

sServeVeryPositive integer

The reception of the opponent team is poor. The ball is sent directly in the other court or the reception doesn't allow a set.

sSetAssist integer

Awarded when a player sets a ball to a teammate who attacks the ball for a kill.

sSetEfficiency decimal

Calculated Field. An index that allows to compare positive and negative actions. The range is -100%...+100%.

(($sSetPerfect + $sSetPositive)- ($sSetError + $sSetVeryPoor))/$sSets
sSetError integer

In the net, out, set foul, court invasion during set.

sSetGood integer

The set is not accurate

sSetNegative integer

The spiker cannot perform a perfect attack.

sSetPercentage decimal

Calculated Field. An index that allows to compare positive and negative actions.

$sSetAssist/$sSets
sSetPerfect integer

The following attack is without Block or 1 player block.

sSetPositive integer

The following attack is with a block of 2 or 3 players.

sSets integer

A sum of all sets.

sSetVeryPoor integer

The ball is sent directly in the other court.

sSideOutPercentage decimal

Calculated Field

$sPointsSideOut/$sServes
sTeamBlocks decimal

Calculated Field. The total number of team blocks is the sum of block solos and half the number of block assists

($sBlockAssist / 2) + $sBlockSolo
sTimesScoresLevel integer

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

GAMESET
GOLDENSET
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.

pairMatchId integer

Unique identifier for the pair match

sAssists integer

An assist is awarded when a player passes, sets or digs a ball to a teammate who attacks the ball for a kill.

sAttackBlocked decimal

The opponent blocks the attack and scores a point.

sAttackBlockedCovered integer

Attack blocked but covered by the team that performed the attack.

sAttackBlockedFirstBall integer

sAttackBlockedFirstTransition integer

sAttackBlockedPercentageFirstBall decimal

Calculated Field

$sAttackBlockedFirstBall/ $sAttacksFirstBall
sAttackBlockedPercentageFirstTransition decimal

Calculated Field

$sAttackBlockedFirstTransition / $sAttacksFirstTransition
sAttackBlockedPercentageTransition decimal

Calculated Field

$sAttackBlockedTransition / $sAttacksTransition
sAttackBlockedTransition integer

sAttackEfficiency decimal

Calculated Field. An index that allows to compare positive and negative actions. The range is -100%...+100%.

($sPointsFromAttack - $sAttackBlocked - $sAttackError) / $sAttacks
sAttackEfficiencyFirstBall decimal

Calculated Field

($sPointsFromAttackFirstBall - $sAttackBlockedFirstBall - $sAttackErrorFirstBall) / $sAttacksFirstBall
sAttackEfficiencyFirstTransition decimal

Calculated Field

($sPointsFromAttackFirstTransition - $sAttackBlockedFirstTransition - $sAttackErrorFirstTransition) / $sAttacksFirstTransition
sAttackEfficiencyTransition decimal

Calculated Field

($sPointsFromAttackTransition - $sAttackBlockedTransition - $sAttackErrorTransition) / $sAttacksTransition
sAttackError integer

Ball out, net ball, invasion.

sAttackErrorFirstBall integer

sAttackErrorFirstTransition integer

sAttackErrorTransition integer

sAttackErrorTotal integer

Calculated Field. Ball out, net ball, invasion and blocked.

$sAttackError + $sAttackBlocked
sAttackNegative integer

An attack that was easily dug by the opponent who can try and play the ball again.

sAttackNegativityFirstBall decimal

Calculated Field

$sAttackErrorFirstBall / $sAttacksFirstBall
sAttackNegativityFirstTransition decimal

Calculated Field

$sAttackErrorFirstTransition / $sAttacksFirstTransition
sAttackNegativityTransition decimal

Calculated Field

$sAttackErrorTransition/$sAttacksTransition
sAttackPercentage decimal

Calculated Field. An index that allows to compare positive and negative actions.

($sPointsFromAttack - $sAttackBlocked - $sAttackError) / $sAttacks
sAttackPositive integer

The opponent team defended with difficulty and it allows a second attack chance.

sAttackPositivity decimal

Calculated Field. An index about the positive attacks over the total attacks.

$sPointsFromAttack / $sAttacks
sAttackPositivityFirstBall decimal

Calculated Field

$sPointsFromAttackFirstBall / $sAttacksFirstBall
sAttackPositivityFirstTransition decimal

Calculated Field

$sPointsFromAttackFirstTransition / $sAttacksFirstTransition
sAttackPositivityTransition decimal

Calculated Field

$sPointsFromAttackTransition / $sAttacksTransition
sAttacks integer

The sum of all attacks.

sAttacksFirstBall integer

sAttacksFirstTransition integer

sAttacksTransition integer

sBallHandlingError integer

A ball-handling error is charged when the official calls a lifted ball, a thrown ball or a double hit.

sBlocksTotal decimal

The sum of all the blocks made. Assist plus Solo.

sBlockAssist integer

A Block Assist is awarded when two or three players block the ball into the opposition's court or out of bounds off the opposition leading directly to a point or side-out. Each player attempting to block receives a block assist even if only one player act

sBlockAssist2 integer

sBlockAssist3 integer

sBlockEfficiency decimal

Calculated Field. An index that allows to compare positive and negative actions. The range is -100%...+100%.

($sPointsFromBlock + $sBlockPositive) - ($sBlockInvasion + $sBlockError)/$sBlocks
sBlockError integer

Hands out, net ball, ball landed in own side.

sBlockInvasion integer

Antenna touch, net touch, foot invasion. Point goes to the opponent team.

sBlockNegative integer

The ball is touched, defended with difficulty and the team cannot perform an attack.

sBlockPoor integer

Covered by the team that performed the attack.

sBlockPositive integer

The ball is touched and the own team can perform an attack.

sBlocks decimal

The sum of all blocks.

sBlockSolo integer

A block solo is awarded when one player blocks the ball into the opposition's court or out of bounds off the opposition leading directory to a point or sideout.

sDigEfficiency decimal

Calculated Field. An index that allows to compare positive and negative actions. The range is -100%...+100%.

($sDigPositive + $sDigPerfect + $sDigGood + $sDigVeryPoor)/$sDigs
sDigError integer

Ball not defended or determines the end of the rally.

sDigGood integer

The ball is covered after a blocked attack.

sDigNegative integer

The dig doesn’t allow an attack.

sDigPerfect integer

Very difficult dig or dig after a tip that allows to perform an attack.

sDigPositive integer

Easy dig that allows to perform an attack.

sDigs integer

The sum of all digs.

sDigsToKill integer

sDigsToKillPercentage decimal

Calculated Field

$sDigsToKill / $sDigs
sDigVeryPoor integer

The ball is sent directly in the other court.

sErrorSideOut decimal

Calculated Field

($sPointsSideOut-$sServeError)/$sReceives
sFirstBallOnSideOutPercentage decimal

Calculated Field

$sReceiveToKill / $sReceives
sFreeBallEfficiency decimal

Calculated Field. An index that allows to compare positive and negative actions. The range is -100%...+100%.

(($sFreeBallPerfect + $sFreeBallPositive) - ($sFreeBallVeryPoor + $sFreeBallError))/$sFreeBalls
sFreeBallError integer

On the floor or out.

sFreeBallGood integer

The pass landing point is on the 3 meters line (10 foot line) or the ball trajectory is too much directed to the antenna of zone 4 or zone 2.

sFreeBallNegative integer

The team can set only high ball or one hand set.

sFreeBallPerfect integer

The ball passed within the 3 meter line, it allows all attack combinations.

sFreeBallPositive integer

The ball passed within the 3 meter line (1 or 2 meters from the net), more than one attack can be performed.

sFreeBalls integer

The sum of all freeBalls

sFreeBallVeryPoor integer

The ball is sent directly in the other court or the pass doesn’t allow a set.

sLibero integer

Player is marked as libero

sMinutes decimal

sPeriods integer

Periods played

sPeriodsWon integer

Periods won

sPeriodsLost integer

Periods lost

sPeriodsDrawn integer

Periods drawn

sPoints decimal

The sum of all points

sPointScoringPerServe decimal

Calculated Field

$sPointsPointScoring/$sServes
sPointsFromAttack integer

The sum of all points made through attacks.

sPointsFromAttackFirstBall integer

sPointsFromAttackFirstTransition integer

sPointsFromAttackTransition integer

sPointsFromBlock decimal

The sum of all points made through blocks.

sPointsFromServe integer

The sum of all points made through aces.

sPointsPointScoring integer

sPointsSideOut integer

sReceive0 integer

Calculated Field. An index to evaluate the receptions.

$sReceives- $sReceiveError
sReceiveEfficiency decimal

Calculated Field. An index that allows to compare positive and negative actions. The range is -100%...+100%.

($sReceivePerfect + $sReceivePositive)/$sReceives
sReceiveError integer

The team can't receive, the serve determines the end of the rally or rotation fault.

sReceiveExcellentPercentage decimal

Calculated Field. An index to evaluate the perfect receptions, when the ball arrive in 3 meters line.

$sReceivePerfect/$sReceives
sReceiveGood integer

The reception landing point is on the 3 meters line or the ball trajectory is too much directed to the antenna of zone 4 or zone 2.

sReceiveNegative integer

The team can set only high ball or one hand set.

sReceivePercentage decimal

Calculated Field. An index to evaluate the receptions.

($sReceives- $sReceiveError)/$sReceives
sReceivePerfect integer

Ball received within the 3 meters line, all attack combinations can be set.

sReceivePositive integer

Ball received within the 3 meters line (1 or 2 meters from the net), more than one attack can be performed.

sReceivePositivePercentage decimal

Calculated Field. An index about the positive receptions over the total receptions.

($sReceivePerfect + $sReceivePositive)/$sReceives
sReceives integer

The sum of total receptions.

sReceiveToKill integer

sReceiveVeryPoor integer

The ball is sent directly in the other court or the reception doesn’t allow a set.

sServeEfficiency decimal

Calculated Field. An index that allows to compare positive and negative actions. The range is -100%...+100%.

($sPointsFromServe + $sServePositive + $sServePoor + $sServeVeryPositive) / $sServes
sServeError integer

Net, ball out, foot foul

sServeNegative integer

It generates a positive or a perfect reception that allow the opponent setter to set all attack combinations.

sServeNegativity integer

Calculated Field

$sServeError/$sServes
sServePercentage decimal

Calculated Field. An index that allows to compare positive and negative actions.

($sServes - $sServeError) / $sServes
sServePoor integer

The reception landing point is on the 3 meters line (10 foot line) or the ball trajectory is too much directed to the antenna.

sServePositive integer

The opponent can only set high ball or one hand set.

sServePositivity decimal

Calculated Field. An index about the aces over the total serves.

($sPointsFromServe/$sServes)
sServes integer

The sum of all serves.

sServesSetFirst integer

Indicates person that serves first.

sServeVeryPositive integer

The reception of the opponent team is poor. The ball is sent directly in the other court or the reception doesn't allow a set.

sSetAssist integer

Awarded when a player sets a ball to a teammate who attacks the ball for a kill.

sSetEfficiency decimal

Calculated Field. An index that allows to compare positive and negative actions. The range is -100%...+100%.

(($sSetPerfect + $sSetPositive)- ($sSetError + $sSetVeryPoor))/$sSets
sSetError integer

In the net, out, set foul, court invasion during set.

sSetGood integer

The set is not accurate

sSetNegative integer

The spiker cannot perform a perfect attack.

sSetPercentage decimal

Calculated Field. An index that allows to compare positive and negative actions.

$sSetAssist/$sSets
sSetPerfect integer

The following attack is without Block or 1 player block.

sSetPositive integer

The following attack is with a block of 2 or 3 players.

sSets integer

A sum of all sets.

sSetVeryPoor integer

The ball is sent directly in the other court.

sSideOutPercentage decimal

Calculated Field

$sPointsSideOut/$sServes
team associativearray

The team's boxscore statistics

pairMatchId integer

Unique identifier for the pair match

sAssists integer

An assist is awarded when a player passes, sets or digs a ball to a teammate who attacks the ball for a kill.

sAttackBlocked integer

The opponent blocks the attack and scores a point.

sAttackBlockedCovered integer

Attack blocked but covered by the team that performed the attack.

sAttackBlockedFirstBall integer

sAttackBlockedFirstTransition integer

sAttackBlockedPercentageFirstBall decimal

Calculated Field

$sAttackBlockedFirstBall/ $sAttacksFirstBall
sAttackBlockedPercentageFirstTransition decimal

Calculated Field

$sAttackBlockedFirstTransition / $sAttacksFirstTransition
sAttackBlockedPercentageTransition decimal

Calculated Field

$sAttackBlockedTransition / $sAttacksTransition
sAttackBlockedTransition integer

sAttackEfficiency decimal

Calculated Field. An index that allows to compare positive and negative actions. The range is -100%...+100%.

($sPointsFromAttack - $sAttackBlocked - $sAttackError) / $sAttacks
sAttackEfficiencyFirstBall decimal

Calculated Field

($sPointsFromAttackFirstBall - $sAttackBlockedFirstBall - $sAttackErrorFirstBall) / $sAttacksFirstBall
sAttackEfficiencyFirstTransition decimal

Calculated Field

($sPointsFromAttackFirstTransition - $sAttackBlockedFirstTransition - $sAttackErrorFirstTransition) / $sAttacksFirstTransition
sAttackEfficiencyTransition decimal

Calculated Field

($sPointsFromAttackTransition - $sAttackBlockedTransition - $sAttackErrorTransition) / $sAttacksTransition
sAttackError integer

Ball out, net ball, invasion.

sAttackErrorFirstBall integer

sAttackErrorFirstTransition integer

sAttackErrorTransition integer

sAttackErrorTotal integer

Calculated Field. Ball out, net ball, invasion and blocked.

$sAttackError + $sAttackBlocked
sAttackNegative integer

An attack that was easily dug by the opponent who can try and play the ball again.

sAttackNegativityFirstBall decimal

Calculated Field

$sAttackErrorFirstBall / $sAttacksFirstBall
sAttackNegativityFirstTransition decimal

Calculated Field

$sAttackErrorFirstTransition / $sAttacksFirstTransition
sAttackNegativityTransition decimal

Calculated Field

$sAttackErrorTransition/$sAttacksTransition
sAttackPercentage decimal

Calculated Field. An index that allows to compare positive and negative actions.

($sPointsFromAttack - $sAttackBlocked - $sAttackError) / $sAttacks
sAttackPositive integer

The opponent team defended with difficulty and it allows a second attack chance.

sAttackPositivity decimal

Calculated Field. An index about the positive attacks over the total attacks.

$sPointsFromAttack / $sAttacks
sAttackPositivityFirstBall decimal

Calculated Field

$sPointsFromAttackFirstBall / $sAttacksFirstBall
sAttackPositivityFirstTransition decimal

Calculated Field

$sPointsFromAttackFirstTransition / $sAttacksFirstTransition
sAttackPositivityTransition decimal

Calculated Field

$sPointsFromAttackTransition / $sAttacksTransition
sAttacks integer

The sum of all attacks.

sAttacksFirstBall integer

sAttacksFirstTransition integer

sAttacksTransition integer

sBiggestLead integer

sBiggestLeadScore string

sBiggestScoringRun integer

sBiggestScoringRunScore string

sBallHandlingError integer

A ball-handling error is charged when the official calls a lifted ball, a thrown ball or a double hit.

sBlocksTotal decimal

The sum of all the blocks made. Assist plus Solo.

sBlockAssist integer

A Block Assist is awarded when two or three players block the ball into the opposition's court or out of bounds off the opposition leading directly to a point or side-out. Each player attempting to block receives a block assist.

sBlockAssist2 integer

sBlockAssist3 integer

sBlockEfficiency decimal

Calculated Field. An index that allows to compare positive and negative actions. The range is -100%...+100%.

(($sPointsFromBlock + $sBlockPositive) - ($sBlockInvasion + $sBlockError))/$sBlocks
sBlockError integer

Hands out, net ball, ball landed in own side.

sBlockInvasion integer

Antenna touch, net touch, foot invasion. Point goes to the opponent team.

sBlockNegative integer

The ball is touched, defended with difficulty and the team cannot perform an attack.

sBlockPoor integer

Covered by the team that performed the attack.

sBlockPositive integer

The ball is touched and the own team can perform an attack.

sBlocks decimal

The sum of all blocks.

sBlockSolo integer

A block solo is awarded when one player blocks the ball into the opposition's court or out of bounds off the opposition leading directory to a point or sideout.

sDigEfficiency decimal

Calculated Field. An index that allows to compare positive and negative actions. The range is -100%...+100%.

($sDigPositive + $sDigPerfect + $sDigGood + $sDigVeryPoor)/$sDigs
sDigError integer

Ball not defended or determines the end of the rally.

sDigGood integer

The ball is covered after a blocked attack.

sDigNegative integer

The dig doesn’t allow an attack.

sDigPerfect integer

Very difficult dig or dig after a tip that allows to perform an attack.

sDigPositive integer

Easy dig that allows to perform an attack.

sDigs integer

The sum of all digs.

sDigsToKill integer

sDigsToKillPercentage decimal

Calculated Field

$sDigsToKill / $sDigs
sDigVeryPoor integer

The ball is sent directly in the other court.

sErrorSideOut decimal

Calculated Field

($sPointsSideOut-$sServeError)/$sReceives
sFirstBallOnSideOutPercentage decimal

Calculated Field

$sReceiveToKill / $sReceives
sFreeBallEfficiency decimal

Calculated Field. An index that allows to compare positive and negative actions. The range is -100%...+100%.

(($sFreeBallPerfect + $sFreeBallPositive) - ($sFreeBallVeryPoor + $sFreeBallError))/$sFreeBalls
sFreeBallError integer

On the floor or out.

sFreeBallGood integer

The pass landing point is on the 3 meters line (10 foot line) or the ball trajectory is too much directed to the antenna of zone 4 or zone 2.

sFreeBallNegative integer

The team can set only high ball or one hand set.

sFreeBallPerfect integer

The ball passed within the 3 meter line, it allows all attack combinations.

sFreeBallPositive integer

The ball passed within the 3 meter line (1 or 2 meters from the net), more than one attack can be performed.

sFreeBalls integer

The sum of all freeballs

sFreeBallVeryPoor integer

The ball is sent directly in the other court or the pass doesn’t allow a set.

sLeadChanges integer

sMinutes decimal

sPeriods integer

Number of periods played.

sPeriodsDrawn integer

Number of periods drawn.

sPeriodsLost integer

Number of periods lost.

sPeriodsWon integer

Number of periods won.

sPoints integer

The sum of all points

sPointScoringPerServe decimal

Calculated Field

$sPointsPointScoring/$sServes
sTotalPlayerPoints decimal

The sum of all player points

sPointsFromAttack integer

The sum of all points made through attacks.

sPointsFromAttackFirstBall integer

sPointsFromAttackFirstTransition integer

sPointsFromAttackTransition integer

sPointsFromBlock decimal

The sum of all points made through blocks.

sPointsFromServe integer

The sum of all points made through aces.

sPointsPointScoring integer

sPointsSideOut integer

sReceive0 integer

Calculated Field. An index to evaluate the receptions.

$sReceives- $sReceiveError
sReceiveEfficiency decimal

Calculated Field. An index that allows to compare positive and negative actions. The range is -100%...+100%.

($sReceivePerfect + $sReceivePositive)/$sReceives
sReceiveError integer

The team can't receive, the serve determines the end of the rally or rotation fault.

sReceiveExcellentPercentage decimal

Calculated Field. An index to evaluate the perfect receptions, when the ball arrive in 3 meters line.

$sReceivePerfect/$sReceives
sReceiveGood integer

The reception landing point is on the 3 meters line or the ball trajectory is too much directed to the antenna of zone 4 or zone 2.

sReceiveNegative integer

The team can set only high ball or one hand set.

sReceivePercentage decimal

Calculated Field. An index to evaluate the receptions.

($sReceives- $sReceiveError)/$sReceives
sReceivePerfect integer

Ball received within the 3 meters line, all attack combinations can be set.

sReceivePositive integer

Ball received within the 3 meters line (1 or 2 meters from the net), more than one attack can be performed.

sReceivePositivePercentage decimal

Calculated Field. An index about the positive receptions over the total receptions.

($sReceivePerfect + $sReceivePositive)/$sReceives
sReceives integer

The total number of reception

sReceiveToKill integer

sReceiveVeryPoor integer

The ball is sent directly in the other court or the reception doesn’t allow a set.

sReceptionErrorforTeam integer

When Serve falls between two players and you cannot decide whose fault it was

sServeEfficiency decimal

Calculated Field. An index that allows to compare positive and negative actions. The range is -100%...+100%.

($sPointsFromServe + $sServePositive + $sServePoor + $sServeVeryPositive) / $sServes
sServeError integer

Net, ball out, foot foul

sServeNegative integer

It generate a positive or a perfect reception that allow the opponent setter to set all attack combinations.

sServeNegativity integer

Calculated Field

$sServeError/$sServes
sServePercentage decimal

Calculated Field. An index that allows to compare positive and negative actions.

($sServes - $sServeError) / $sServes
sServePoor integer

The reception landing point is on the 3 meters line (10 foot line) or the ball trajectory is too much directed to the antenna.

sServePositive integer

The opponent can only set high ball or one hand set.

sServePositivity decimal

Calculated Field. An index about the aces over the total serves.

($sPointsFromServe/$sServes)
sServes integer

The sum of all serves.

sServeVeryPositive integer

The reception of the opponent team is poor. The ball is sent directly in the other court or the reception doesn't allow a set.

sSetAssist integer

Awarded when a player sets a ball to a teammate who attacks the ball for a kill.

sSetEfficiency decimal

Calculated Field. An index that allows to compare positive and negative actions. The range is -100%...+100%.

(($sSetPerfect + $sSetPositive)- ($sSetError + $sSetVeryPoor))/$sSets
sSetError integer

In the net, out, set foul, court invasion during set.

sSetGood integer

The set is not accurate

sSetNegative integer

The spiker cannot perform a perfect attack.

sSetPercentage decimal

Calculated Field. An index that allows to compare positive and negative actions.

$sSetAssist/$sSets
sSetPerfect integer

The following attack is without Block or 1 player block.

sSetPositive integer

The following attack is with a block of 2 or 3 players.

sSets integer

A sum of all sets.

sSetVeryPoor integer

The ball is sent directly in the other court.

sSideOutPercentage decimal

Calculated Field

$sPointsSideOut/$sServes
sTeamBlocks decimal

Calculated Field. The total number of team blocks is the sum of block solos and half the number of block assists

($sBlockAssist / 2) + $sBlockSolo
sTimesScoresLevel integer

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"
            },
            "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,
                "sPER": 0,
                "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,
                "sPER": 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,
                "sPER": 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,
                "sPER": 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,
                "sPER": 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,
                "sPER": 0,
                "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,
                "sPER": 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,
                "sPER": 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,
                "sPER": 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,
                "sPER": 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,
                "sPER": 0,
                "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,
                "sPER": 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,
                "sPER": 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,
                "sPER": 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,
                "sPER": 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,
                "sPER": 0,
                "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,
                "sPER": 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,
                "sPER": 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,
                "sPER": 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,
                "sPER": 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,
                "sPER": 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,
                "sPER": 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,
                "sPER": 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,
                "sPER": 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,
                "sPER": 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,
                "sPER": 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,
                "sPER": 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,
                "sPER": 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,
                "sPER": 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,
                "sPER": 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,
                "sPER": 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,
                "sPER": 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,
                "sPER": 0,
                "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,
                "sPER": 0,
                "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,
                "sPER": 0,
                "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,
                "sPER": 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,
                "sPER": 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,
                "sPER": 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,
                "sPER": 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,
                "sPER": 0,
                "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,
                "sPER": 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,
                "sPER": 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,
                "sPER": 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,
                "sPER": 0,
                "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,
                "sPER": 0,
                "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,
                "sPER": 0,
                "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,
                "sPER": 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,
                "sPER": 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,
                "sPER": 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,
                "sPER": 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,
                "sPER": 0,
                "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,
                "sPER": 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,
                "sPER": 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,
                "sPER": 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,
                "sPER": 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,
                "sPER": 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,
                "sPER": 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,
                "sPER": 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,
                "sPER": 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,
                "sPER": 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,
                "sPER": 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,
                "sPER": 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,
                "sPER": 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

GAMESET
GOLDENSET
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.

setScore1 integer

Set score of team 1 when this action occurred. The score should be the score after the completion of the action.

setScore2 integer

Set score of team 2 when this action occurred. The score should be the score after the completion of the action.

players associativearray

team1 array

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

team2 array

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

edited datetime

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

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

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

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

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

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

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

sendDelay float

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

completionDelay float

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

underReview enum

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

0
No (Default)
1
Yes
orderNumber integer

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

possible enum

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

0
No (Default)
1
Yes

Example

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

playbyplay

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

The type of the message

playbyplay
actions array

Array of play by play actions, sorted ascending

actionNumber integer

Unique sequence number for this action

teamNumber integer

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

pno integer

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

clock string

The time on the clock when this action occurred.

Format is: MM:SS:CC
timeActual datetime

The date/time when this action occurred in UTC.

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

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

periodType enum

The type of period

GAMESET
GOLDENSET
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.

setScore1 integer

Set score of team 1 when this action occurred. The score should be the score after the completion of the action.

setScore2 integer

Set score of team 2 when this action occurred. The score should be the score after the completion of the action.

players associativearray

team1 array

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

team2 array

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

edited datetime

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

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

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

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

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

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

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

sendDelay float

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

completionDelay float

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

underReview enum

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

0
No (Default)
1
Yes
orderNumber integer

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

possible enum

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

0
No (Default)
1
Yes

Example

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

summary

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

The type of the message

summary
messageId integer

Unique identifier of the message being sent

timeActual datetime

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

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

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

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

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

durationActual integer

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

temperature integer

The temperature during the match (degrees Celsius)

hasFlaggedActions enum

Indication if match has game actions that need to be fixed

0
No (Default)
1
Yes
attendance integer

The number of people who attended the match

Example

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

Action Types

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

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

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

Sport Action Types

type subType qualifiers
game start    
  end Applies to end subType:
  • confirmed
 
period start Applies to start subType:
  • team1Libero1
  • team1Libero2
  • team2Libero1
  • team2Libero2
players: send qualifiers as string
|team1Libero1:pno1,
team1Libero2:pno2,
team2Libero1:pno3,
team2Libero2:pno4|.
ex.:
"team1Libero1:7",
"team1Libero2:8",
"team2Libero1:32",
"team2Libero2:33"
  end Applies to end subType:
  • confirmed
 
playersRotation (empty) Applies to all subTypes:
  • p1
  • p2
  • p3
  • p4
  • p5
  • p6
  •  
  • Send qualifiers as string |p1:pno1;p2:pno2;p3:pno3...|. ex. "p1:32;p2:41;p3:15"
comment (empty)   Comment text should be passed in the value field
assist (empty)
attack (empty) Applies to all subTypes:
  • blocked
  • covered
  • negative
  • positive
  •  
  firstBall  
  firstTransition  
  transition  
ballHandlingError (empty)
block Applies to all subTypes:
  • attacker
  •  
  • The person Number who attacked.
error Applies to error subType:
  • invasion
in Applies to in subType:
  • negative
  • positive
over Applies to over subType:
  • blockAssist2
  • blockAssist3
  • blockSolo
challengeOutcome (empty) Applies to all subTypes:
  • refereeDecision
    • teamIsRight
    • teamIsWrong
    • inconclusive
    • canceled
  • requestedBy
    • referee
    • team
  • scoreChanges
    • assignScoreToRequestingTeam
    • assignScoreToOppositeTeam
    • confirmCurrentScore
    • cancelLastPoint
    • reverseLastPoint
  •  
challengeRequest Applies to all subTypes:
  • challengeType
    • undefined
    • ballInOut
    • blockTouch
    • netTouch
    • antenna
    • centerLineFault
    • serviceLineFault
    • floorTouch
    • other
  • requestedBy
    • team
    • referee
  •  
afterRally
duringRally
cointoss (empty) Applies to all subTypes:
  • loserchoicecourt
    • left
    • right
  • loserchoiseservice
    • serve
    • receive
  • winnerchoicecourt
    • left
    • right
  • winnerchoiceservice
    • serve
    • receive
  •  
startofgame
tiebreak
dig Applies to all subType:
  • toKill
error
in Applies to in subType:
  • good
  • negative
  • perfect
  • positive
over
freeBall
error
in Applies to in subType:
  • good
  • negative
  • perfect
  • positive
over
gameSetWin (empty) Overwrites sPeriodsWon statistic. Should be used after period:end action.
injury
officialInjury
playerInjury
staffInjury
liberoReplace (empty)
liberoUnableToPlay (empty)
point Applies to all subTypes:
  • challenge
    • inReview
    • confirmed
    • canceled
    • inverted
    • assigned
  • pointScoring
  • sideOut
  •  
ace
attack Applies to attack subType:
  • firstBall
  • firstTransition
  • method
    • set
    • spike
  • transition
block
error
protest (empty)
reception Applies to all subType:
  • toKill
error Applies to error subType:
  • receptionTeamError
in Applies to in subType:
  • good
  • negative
  • perfect
  • positive
over Applies to over subType:
  • server
replay (empty)
sanction Applies to all subTypes:
  • sanctionType
    • yellowCard
    • redCard
    • yellowRedCard
    • warning
    • penalty
    • expulsion
    • disqualification
  •  
player
staff Applies to staff subType:
  • staffId
team
serve Applies to all subTypes:
  • negative
  • poor
  • positive
  • veryPositive
  •  
firstSetServe
set
error
in Applies to in subType:
  • assist
  • good
  • negative
  • perfect
  • positive
over
substitution Applies to all subTypes:
  • libero
(empty) Applies to (empty) subType:
  • in
  • out
  •  
  • send qualifiers as string |out:pno1;in:pno2|. ex. "out:3;in:4"
in
out
bulksubstitution Applies to all subTypes:
  • players
  •  
  • players: send qualifiers as string |players:pno1,pno2,pno3|. ex. "players:3,4,5"
in
out
court enters Applies to enters subType:
  • players
  •  
  • players: send qualifiers as string |players:pno1,pno2,pno3|. ex. "players:3,4,5"
exits
  • Marks players as inactive for that team
switch
  • Means that teams are switching sides of a court
team lose Applies to lose subType:
  • default
  • forfeit
  • incomplete
  • oppTeamSetScore
  • teamSetScore
  • Qualifiers: default, forfeit or incomplete should be sent together with qualifiers teamSetScore and oppTeamSetScore
  • ex.: default;teamSetScore:0;oppTeamSetScore:21
timeout Applies to all subTypes (except team):
  • end
  • start
  •  
facultative
media
technical
team
participated Applies to all subTypes:
  • players
  •  
  • players: send qualifiers as string |players:pno1,pno2,pno3|. ex. players:3,4,5;

Administrative Action Types

type subType qualifiers  
status     Indicates a change in the status of the match
  delayed
  • 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
  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
  • underreview
  • equipment
  • venue
  • weather
  • spectator
  • medical
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
capturestatus   Applies to all subTypes:
  • statistics
  • score
 
  unreliable   Indicates that the state of the game being sent by the software differs significantly from the actual situation.
  reliable   Indicates that the state of the game being sent by the software now matches the actual situation.
risk (empty)
  • goal
  • cardyellow
  • var
  • cardred
  • penalty