Introduction

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

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

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

Character Set

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

All responses will be provided as UTF-8 strings.

Authentication

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

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

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

Message Format

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

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

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

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

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

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

Read

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

connection

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

The type of the message

connection
instance string(100)

This unique identifier of the controlling instance for this match.

status enum

This status of the connection to the capture device

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

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

total associativearray

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

1m float

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

5m float

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

15m float

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

process associativearray

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

1m float

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

5m float

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

15m float

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

capture associativearray

The latency of the connection caused by the capture device

1m float

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

5m float

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

15m float

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

Example

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

status

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

The type of the message

status
status enum

The status of the match.

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

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

current integer

The current period number. Overtime periods start at 1.

periodType enum

The type of period

REGULAR
(Default)
OVERTIME
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.

currentPlay object

playType enum

KICKOFF
SNAP
EXTRAPOINT
downNumber integer

lineOfScrimmage object

teamNumber integer

yardline integer

firstDownLine object

teamNumber integer

yardline integer

playFormation enum

SHOTGUN
UNDERCENTER
FIELDGOAL
PUNT
TWOPOINTCONVERSION
EXTRAPOINT
quarterback integer

Pno of current QB

currentDrive object

plays integer

yardsGained integer

timeOfPossession decimal

driveStart object

The yard line where the drive started

teamNumber integer

yardline integer

driveEnd object

The yard line where the drive ended

teamNumber integer

yardline integer

howObtained enum

How the particular drive started

KICKOFF
PUNT
INTERCEPTION
FUMBLE
DOWNS
UNKNOWN
howLost enum

How the particular drive ended

TOUCHDOWN
FIELDGOAL
SAFETY
PUNT
INTERCEPTION
FUMBLE
ENDOFHALF
DOWNS
UNKNOWN

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

numberOfPeriods integer

The number of periods played per game.

4
(Default)
halfTimeBreak integer

The length of the break between halves, in minutes.

15
(Default)
timeouts associativearray

timeoutsPerHalf integer

The number of timeouts allowed per half of the game.

3
(Default)
timeoutsOvertime integer

The number of timeouts allowed per overtime.

1
(Default)
allowOvertime integer

Allow overtime.

1
Yes (Default)
0
No
numberOfPlayers integer

The default number of players on field per team.

0
Unlimited (Default)
minimumAbandonTime integer

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

70
(Default)
customEfficiencyFormula string(10000)

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

Example

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

matchInformation

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

The type of the message

matchInformation
competition associativearray

competitionName string(100)

The name of the competition

competitionAbbrev string(50)

An abbreviation for this competition

competitionNameInternational string(100)

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

competitionAbbrevInternational string(50)

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

standard enum

The level/standard of this competition.

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

Unique identifier for the competition

externalId string(50)

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

twitter string(150)

The public twitter account

gender enum

The gender of the competition.

MALE
Male
FEMALE
Female
MIXED
Both male and female
year integer

The starting year of the competition. 4 digits

ageGroup enum

The rough age group of the competition.

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

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

associativearray

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

size enum

The name of the size

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

The size of the file in bytes

width integer

The width of the file in pixels

height integer

The height of the file in pixels

url url

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

venue associativearray

  venueName string(100)

The name of the venue

venueCode string(50)

Short Code of the venue

venueNickname string(50)

A non-offical name of the venue

venueId integer

Unique identifier for the venue

venueNameInternational string(100)

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

venueCodeInternational string(50)

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

venueNicknameInternational string(50)

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

externalId string

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

countryCode string(2)

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

countryCodeIOC string(3)

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

country string(100)

The country. Defaults to league value if blank

suburb string(200)

The suburb/town

latitude decimal

Latitude of the venue

longitude decimal

Longitude of the venue

surfaceName string(100)

The name of the surface

seatingCapacity integer

Total number of seats available

timezone string

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

league associativearray

leagueName string(100)

The name of the league

leagueAbbrev string(50)

An abbreviated form of the name of the league

leagueNameInternational string(100)

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

leagueAbbrevInternational string(50)

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

leagueId integer

Unique identifier for the league

externalId string(50)

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

countryCode string(2)

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

countryCodeIOC string(3)

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

country string(100)

The country. Defaults to league value if blank

geographicRegion enum

How geographically widespread is this league.

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

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

associativearray

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

size enum

The name of the size

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

The size of the file in bytes

width integer

The width of the file in pixels

height integer

The height of the file in pixels

url url

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

match associativearray

matchTime datetime

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

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

The name of the match

matchNumber integer

The number of the match in the competition

phaseName string(100)

The name of the phase

poolNumber integer

The identifier of the pool

roundDescription string(30)

A description of the round. eg. Rivalry Round

roundNumber string(30)

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

matchType enum

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

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

A twitter hashtag for the match

matchId integer

Unique identifier for the match

externalId string(50)

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

pool associativearray

  poolName string(100)

The name of the pool

  poolNumber integer

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

externalId string(50)

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

Example

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

teams

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

The type of the message

teams
messageId integer

Unique identifier of the message being sent

teams array

An array of team records

teamNumber integer

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

detail associativearray

teamName string(100)

The name of the team

isHomeCompetitor enum

Is this a 'home' match for this competitor.

0
No
1
Yes
teamNameInternational string(100)

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

teamId integer

Unique identifier for the team

externalId string

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

internationalReference string

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

teamNickname string(50)

A non-offical name of the team

teamCode string(3)

A three letter code for this team

teamCodeInternational string(3)

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

teamNicknameInternational string(50)

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

countryCode string(2)

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

countryCodeIOC string(3)

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

country string(100)

The country. Defaults to league value if blank

sportClass string(64)

Total team sport class value used for para-sports.

website string(150)

The website for this team

logo

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

associativearray

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

size enum

The name of the size

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

The size of the file in bytes

width integer

The width of the file in pixels

height integer

The height of the file in pixels

url url

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

players array

pno integer

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

personId integer

Unique identifier for the person

familyName string(50)

The family name of the person

firstName string(50)

The first name of the person

internationalFamilyName string(50)

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

internationalFirstName string(50)

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

scoreboardName string(50)

The name of the person suitable for Scoreboard

TVName string(50)

The name of the person suitable for TV or other media

nickName string(50)

A non-official name of the person

website string(150)

The website for this entity

dob date

Date of birth

Format is: YYYY-MM-DD
height double

The height of the person, in cms

sportClass string(64)

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

externalId string(50)

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

internationalReference string(30)

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

shirtNumber string

Player's shirt Number for the match.

playingPosition enum

Player's playing position for the match.

QB
Quarterback
RB
Running Back
FB
Full Back
OL
Offensive Line
OT
Offensive Tackle
OG
Offensive Guard
OC
Offensive Center
WR
Wide Receiver
TE
Tight End
DL
Defensive Line
DE
Defensive End
DT
Defensive Tackle
LB
Linebacker
DB
Defensive Back
CB
Cornerback
S
Safety
K
Kicker
P
Punter
LS
Long Snapper
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
externalId string(50)

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

Example

{
    "messageId": 23,
    "teams": [{
        "players": [{
            "active": 1,
            "pno": 1,
            "firstName": "Natalie",
            "personId": 485217,
            "shirtNumber": "2",
            "playingPosition": "",
            "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"
}

actions batch

This message type has information about edited and iserted match actions.
  type enum

The type of the message

actionsbatch
messageId integer

Unique identifier of the message being sent

  actions associativearray

Match action array with changed edited and inserted actions

actionNumber integer

Unique sequence number for this action

teamNumber integer

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

pno integer

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

clock string

The time on the clock when this action occurred.

Format is: MM:SS:CC
timeActual datetime

The date/time when this action occurred in UTC.

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

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

periodType enum

The type of period

REGULAR
(Default)
OVERTIME
actionType string(20)

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

success enum

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

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

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

qualifiers array

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

value string(1000)

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

previousAction integer

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

officialId integer

The unique identifier for the official calling the action

x float

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

y float

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

area string

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

side enum

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

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

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

score2 string

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

players associativearray

team1 array

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

team2 array

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

edited datetime

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

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

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

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

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

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

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

sendDelay float

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

completionDelay float

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

underReview enum

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

0
No (Default)
1
Yes
orderNumber integer

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

drive integer

Drive number

yardline object

Current yardline

teamNumber integer

yardline integer

play integer

Play number

playOverall integer

Play number overal in a game

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
text string

Play summary text.

officials

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

The type of the message

officials
messageId integer

Unique identifier of the message being sent

commissioner associativearray

DEPRECATED. Use matchOfficials property instead

personId integer

Unique identifier for the person

familyName string(50)

The family name of the person

firstName string(50)

The first name of the person

TVName string(50)

The name of the person suitable for TV or other media

nickName string(50)

A non-official name of the person

externalId string(50)

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

referee1 associativearray

DEPRECATED. Use matchOfficials property instead

personId integer

Unique identifier for the person

familyName string(50)

The family name of the person

firstName string(50)

The first name of the person

TVName string(50)

The name of the person suitable for TV or other media

nickName string(50)

A non-official name of the person

externalId string(50)

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

referee2 associativearray

DEPRECATED. Use matchOfficials property instead

personId integer

Unique identifier for the person

familyName string(50)

The family name of the person

firstName string(50)

The first name of the person

TVName string(50)

The name of the person suitable for TV or other media

nickName string(50)

A non-official name of the person

externalId string(50)

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

referee3 associativearray

DEPRECATED. Use matchOfficials property instead

personId integer

Unique identifier for the person

familyName string(50)

The family name of the person

firstName string(50)

The first name of the person

TVName string(50)

The name of the person suitable for TV or other media

nickName string(50)

A non-official name of the person

externalId string(50)

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

technicaldelegate associativearray

DEPRECATED. Use matchOfficials property instead

personId integer

Unique identifier for the person

familyName string(50)

The family name of the person

firstName string(50)

The first name of the person

TVName string(50)

The name of the person suitable for TV or other media

nickName string(50)

A non-official name of the person

externalId string(50)

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

statisticians array

An array of statisticians

firstName string(100)

The first name of the statistician

familyName string(100)

The family name of the statistician

statisticianId integer

The unique id given to this statistician

statisticianType enum

The job the statistician is performing for this match

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

A list of match officials

firstName string(100)

The first name of the official

familyName string(100)

The family name of the official

shirtNumber string(30)

Shirt number

personId integer

Unique id of the person

externalId string(50)

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

  officialType enum

Official Type

CAPTAIN
Captain
VICE_CAPTAIN
Vice Captain
HEAD_COACH
Head Coach
COACH
Coach
ASSISTANT_COACH
Assistant Coach
REFEREE
Referee
ASSISTANT_REFEREE
Assistant Referee
RESERVE_REFEREE
Reserve Referee
RESERVE_ASSISTANT_REFEREE
Reserve Assistant Referee
TEAM
Team
MEDICAL_STAFF
Medical Staff
MATCH_OFFICIAL
Match Official
COMMISSIONER
Commissioner
STATISTICIAN
Statistician
SCOREKEEPER
Scorekeeper
ASSISTANT_SCOREKEEPER
Assistant Scorekeeper
TIMEKEEPER
Timekeeper
VIDEO_OPERATOR
Video Operator
UMPIRE
Umpire
HEAD_LINESMAN
Head Linesman
LINE_JUDGE
Line Judge
FIELD_JUDGE
Field Judge
SIDE_JUDGE
Side Judge
BACK_JUDGE
Back Judge
CENTER_JUDGE
Center Judge
REPLAY_OFFICIAL
Replay Official

boxscore

This message type contains box score information.
type enum

The type of the message

boxscore
teams array

An array of teams

teamNumber integer

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

total associativearray

players array

An array of players' boxscore data

pno integer

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

sMinutes decimal

sEfficiency decimal

sEfficiencyCustom decimal

s1stDownAttempts integer

1st down plays

s1stDownConversions integer

1st down plays where player earned a first down

s2ndDownAttempts integer

2nd down plays

s2ndDownConversions integer

2nd down plays where player earned a first down

s3rdDownAttempts integer

3rd round attempts

s3rdDownConversionPassing integer

3rd down conversion via pass

s3rdDownConversionPenalty integer

3rd down conversion via penalty

s3rdDownConversionRushing integer

3rd down conversion via rush

s3rdDownConversions integer

3rd down conversions

s4thDownAttempts integer

4th down attempts

s4thDownConversionPassing integer

4th down conversion via pass

s4thDownConversionPenalty integer

4th down conversion via penalty

s4thDownConversionRushing integer

4th down conversion via rush

s4thDownConversions integer

4th down conversions

sDefensiveExtraPoints integer

Calculated Field. Defensive extra points (DXP) made

$sPatFumbleReturnConversions + $sPatInterceptionReturnConversions + $sPatKickReturnConversions + $sPatSafetyConversions
sDefensiveExtraPointsAttempts integer

Calculated Field. number of defensive extra points (DXP) attempts

$sPatFumbleReturns + $sPatInterceptionReturns + $sPatKickReturns
sFieldGoalAttemptLongest integer

Longest field goal attempt

sFieldGoalAttempts1to19 integer

Number of FGA 1-19 yards

sFieldGoalAttempts20to29 integer

Number of FGA 20-29 yards

sFieldGoalAttempts30to39 integer

Number of FGA 30-39 yards

sFieldGoalAttempts40to49 integer

Number of FGA 40-49 yards

sFieldGoalAttempts50to59 integer

Number of Field Goals Attempt 50-59 yards

sFieldGoalAttempts60Plus integer

Number of Field Goals Attempt 60+ yards

sFieldGoalMadeLongest integer

Longest field goal made

sFieldGoalReturns integer

Field goal return on unsuccessful attempt

sFieldGoalsAttempted integer

Attempt to a field goal

sFieldGoalsBlocked integer

Blocked field goals

sFieldGoalsMade integer

Field goals made

sFieldGoalsMade1to19 integer

Number of FGM 1-19 yards

sFieldGoalsMade20to29 integer

Number of FGM 20-29 yards

sFieldGoalsMade30to39 integer

Number of FGM 30-39 yards

sFieldGoalsMade40to49 integer

Number of FGM 40-49 yards

sFieldGoalsMade50to59 integer

Number of Field Goals Made 50-59 yards

sFieldGoalsMade60Plus integer

Number of Field Goals Made 60+ yards

sFieldGoalsPercentage decimal

Calculated Field. Field goals made Percentage

$sFieldGoalsMade / $sFieldGoalsAttempted
sFirstDownPassing integer

Total first down by passing

sFirstDownPenalty integer

Total first down by penalty

sFirstDownRushing integer

Total first downs by rushing

sFirstDownTotal integer

Calculated Field. total number of first downs

$sFirstDownPassing + $sFirstDownRushing + $sFirstDownPenalty
sFumbleReturnLongest integer

Longest fumble return

sFumbleReturnTotal integer

Total number of fumble returns

sFumbleReturnTouchdowns integer

Number of touchdowns scored on fumble returns

sFumbleReturnYards integer

Total fumble return yards

sFumbleReturnYardsAverage decimal

Calculated Field. average yards per return

$sFumbleReturnYards / $sFumbleReturnTotal
sFumblesForced integer

Forced fumbles

sFumblesLost integer

Lost fumbles

sFumblesRecovered integer

Recovered fumbles

sFumblesTotal integer

Total number of fumbles

sGoalEfficiencyAttempt integer

possessions with 1st and goal, same as calculating RedZone instead we ignore the Yards.

sGoalEfficiencyFieldGoal integer

possession ending in field goal once 1st and goal.

sGoalEfficiencyPercentage decimal

Calculated Field. possession with 1st and goal ending in TD or FG / total possession of 1st and goal.

($sGoalEfficiencyTouchdowns + $sGoalEfficiencyFieldGoal) / $sGoalEfficiencyAttempt
sGoalEfficiencyTouchdowns integer

possession ending in TD once 1st and goal.

sInterceptionsAverage decimal

Calculated Field. Average yards per interception return

$sInterceptionsReturnYards / $sPassInterceptions
sInterceptionsReturnLongest integer

Longest interception return

sInterceptionsReturnYards integer

Interceptions return yards

sInterceptionsTouchdowns integer

Touchdowns after interception

sKickoffsGrossAverage decimal

Calculated Field. Average gross yards from kickoff

$sKickoffsGrossYards / $sKickoffsTotal
sKickoffsGrossYards integer

Kickoff gross yards

sKickoffsNetAverage decimal

Calculated Field. Average of net yards from the kickoff

$sKickoffsNetYards / $sKickoffsTotal
sKickoffsNetYards integer

Net yards from the kickoff

sKickoffsOutOfBound integer

Kickoffs out of bounds

sKickoffsReturned integer

Returned kickoffs

sKickoffsTotal integer

Total number of kickoffs

sKickoffsTouchbacks integer

Touchbacks after kickoff

sKickOnSideAttempts integer

Number of on-side kicks attempted

sKickReturnsAverage decimal

Calculated Field. Average yards from kick return

$sKickReturnsYards / $sKickReturnsTotal
sKickReturnsLongest integer

Longest kick return

sKickReturnsTotal integer

Total kick returns

sKickReturnsTouchdowns integer

Touchdown from kick return

sKickReturnsYards integer

Kick return yards

sKicksBlocked integer

Calculated Field. number of kicks blocked

$sPuntsBlocked + $sFieldGoalsBlocked + $sPatBlockedKicks
sPuntsBlockedBy integer

sPuntsBlockedBy

sPatBlockedKicksBy integer

sPatBlockedKicksBy

sFieldGoalsBlockedBy integer

sFieldGoalsBlockedBy

sKicksBlockedBy integer

Calculated Field. sKicksBlockedBy

$sPuntsBlockedBy + $sFieldGoalsBlockedBy + $sPatBlockedKicksBy
sKicksOnSide integer

Number of on-side kicks successful

sPassBreakUps integer

Pass break ups

sPassEfficiency decimal

Calculated Field. Pass Efficiency

((8.4 * sPassesYards) + (330 * sPassesTouchdowns) - (200 * sPassesIntercepted) + (100 * sPassesCompleted)) / sPasses
sPasses integer

Total number of passes

sPassesAverageYardsPerCompletion decimal

Calculated Field. Passing average yards per completion

sPassesYards/sPassesCompleted
sPassesCompleted integer

Complete passes

sPassesIntercepted integer

Intercepted passes

sPassesInterceptionPercentage decimal

Calculated Field. Passing interception percentage

sPassesIntercepted/sPasses
sPassesLeft integer

Number of left pass plays

sPassesLongest integer

Longest completed pass

sPassesMiddle integer

Number of middle pass plays

sPassesPercentage decimal

Calculated Field. Percentage of completed passes

$sPassesCompleted / $sPasses
sPassesRight integer

Number of right passes plays

sPassesSacked integer

Sacked passes

sPassesTouchDownPercentage decimal

Calculated Field. Passing touch down percentage

sPassesTouchdowns/sTouchdowns
sPassesTouchdowns integer

Touchdowns after passes

sPassesYards integer

Total passing yards

sPassesYardsPerAttempt decimal

Calculated Field. Average yards per pass attempt

$sPassesYards / $sPasses
sPassesYardsPerCatch decimal

Calculated Field. Average yards per completed pass (catch)

$sPassesYards / $sPassesCompleted
sPassesYardsSacked integer

Yards lost due to sack

sPassIncompleteDropped integer

Player that dropped the ball after an incomplete pass.

sPassing0 integer

Number of plays with complete passes for 0 yards or more.

sPassing10 integer

Number of plays with complete passes for 10 yards or more.

sPassing20 integer

Number of plays with complete passes for 20 yards or more.

sPassing30 integer

Number of plays with complete passes for 30 yards or more.

sPassing40 integer

Number of plays with complete passes for 40 yards or more.

sPassing50 integer

Number of plays with complete passes for 50 yards or more.

sPassingNegative integer

Number of plays with complete passes for less than 0 yards.

sPassInterceptions integer

Pass interceptions

sPassQuarterbackHurries integer

Quarterback hurries

sPatAttempts integer

Calculated Field. Total pat attempts

$sPatKicksAttempted + $sPatTwoPointsAttempt
sPatBlockedKicks integer

Blocked points after touchdown kicks

sPatFumbleReturnConversions integer

PAT snap is fumbled by the holder and recovered and returned by defense and scored for 2pt conversion

sPatFumbleReturns integer

PAT snap is fumbled by the holder and recovered and returned by defense

sPatInterceptionReturnConversions integer

PAT pass is intercepted by the defense and returned and scored for 2pt conversion

sPatInterceptionReturns integer

PAT pass is intercepted by the defense and returned

sPatKickReturnConversions integer

PAT is blocked and returned by defense and scored for 2pt conversion

sPatKickReturns integer

PAT is blocked and returned by defense

sPatKicksAttempted integer

Points after touchdown - kick attempts

sPatKicksMade integer

Points after touchdown - kicks made

sPatKicksPercentage decimal

Calculated Field. Points after touchdown - kicks percentage

$sPatKicksAttempted / $sPatKicksMade
sPatMade integer

Calculated Field. Pat Made

$sPatKicksMade + $sPatTwoPointsMade
sPatPassAttempts integer

Pass attempts during PAT play

sPatPasses integer

Passes during points after touchdown situation

sPatPercentage decimal

Calculated Field. Pat Percetage

$sPatMade / $sPatAttempts * 100
sPatReceives integer

Receives during points after touchdown situation

sPatRushAttempts integer

Rush attempts during PAT play

sPatRushes integer

Rushes during points after touchdown situation

sPatSafetyConversions integer

PAT results in defense trying to return either fumble or interception or blocked kick out of own endzone but is tackled then back in own endzone for 1pt safety

sPatTwoPointsAttempt integer

Calculated Field. Points after touchdown - two point attempts

$sPatPassAttempts + $sPatRushAttempts
sPatTwoPointsMade integer

Calculated Field. Points after touchdown - two points made

$sPatPasses + $sPatRushes
sPenalty integer

Total number of penalties received

sPenaltyYards integer

Penalty yards received

sPlaysAllPurposeTotal integer

Calculated Field. All-purpose running is the combined net yards gained by rushing, receiving, interception returns, punt returns, kickoff returns and runbacks of field goal attempts

$sRushingAttempts + $sReceptions + $sPassInterceptions + $sPuntReturns + $sKickReturnsTotal + $sFieldGoalReturns
sPlaysTotal integer

Calculated Field. Total number of offensive plays consisting of rushing attempts plus passing attempts

$sRushingAttempts + $sPasses
sPoints integer

Total player scored points

sPuntReturns integer

Total number of punt returns

sPuntReturns0 integer

Number of punt returns for 0 yards or more.

sPuntReturns10 integer

Number of punt returns for 10 yards or more.

sPuntReturns20 integer

Number of punt returns for 20 yards or more.

sPuntReturns30 integer

Number of punt returns for 30 yards or more.

sPuntReturns40 integer

Number of punt returns for 40 yards or more.

sPuntReturns50 integer

Number of punt returns for 50 yards or more.

sPuntReturnsAverage decimal

Calculated Field. Net yards per return

$sPuntReturnsYards / $sPuntReturns
sPuntReturnsLongest integer

Longest punt return in yards

sPuntReturnsTouchdown integer

Touchdowns after punt return

sPuntReturnsYards integer

total yards per punt returns

sPunts integer

Total number of punts

sPunts50plus integer

Punts longer than 50 gross yards

sPuntsAverage decimal

Calculated Field. Gross punting yards / number of punts

$sPuntsYards / $sPunts
sPuntsBlocked integer

Blocked punts

sPuntsFairCatches integer

Punts resulting in fair catch

sPuntsInside20 integer

Number of punts received inside 20 yard line including fair catches and touchbacks

sPuntsLongest integer

Longest punt

sPuntsNetAverage decimal

Calculated Field. Net yards per punt

$sPuntsYardsNet / $sPunts
sPuntsTouchbacks integer

Number of punts resulting in touchback

sPuntsYards integer

Gross total punt yards

sPuntsYardsNet integer

Net punts yards

sReceiving0 integer

Number of plays with complete passes for 0 yards or more.

sReceiving10 integer

Number of plays with complete passes for 10 yards or more.

sReceiving20 integer

Number of plays with complete passes for 20 yards or more.

sReceiving30 integer

Number of plays with complete passes for 30 yards or more.

sReceiving40 integer

Number of plays with complete passes for 40 yards or more.

sReceiving50 integer

Number of plays with complete passes for 50 yards or more.

sReceivingNegative integer

Number of plays with complete passes for less than 0 yards.

sReceptions integer

Total number of receptions

sReceptionsAverage decimal

Calculated Field. Average yards per reception

$sReceptionsYards / $sReceptions
sReceptionsLongest integer

Longest reception in yards

sReceptionsTouchdown integer

Touchdowns after reception

sReceptionsYards integer

Number of receiving yards

sReceptionsYardsAfterCatch integer

Yards from point of catch to end of play

sRedZonePassing integer

Passing red zone attempts - number of passing plays starting at or inside opponent 20

sRushing0 integer

Number of plays with rushing for 0 yards or more.

sRushing10 integer

Number of plays with rushing for 10 yards or more.

sRushing20 integer

Number of plays with rushing for 20 yards or more.

sRushing30 integer

Number of plays with rushing for 30 yards or more.

sRushing40 integer

Number of plays with rushing for 40 yards or more.

sRushing50 integer

Number of plays with rushing for 50 yards or more.

sRushingNegative integer

Number of plays with rushing for less than 0 yards.

sRushingAttempts integer

Rushing attempts

sRushingLeft integer

Number of rushing to the left plays

sRushingLongest integer

Longest rush in yards from scrimmage

sRushingMiddle integer

Number of rushing to the middle plays

sRushingNetYardsAverage decimal

Calculated Field. Net rushing yards / number of rushes

$sRushingYardsNet / $sRushingAttempts
sRushingRight integer

Number of rushing to the right plays

sRushingTouchdowns integer

Touchdowns after rushing

sRushingYardsGain integer

Gross rushing yards gain

sRushingYardsLoss integer

Gross yards loss during rush

sRushingYardsNet integer

Calculated Field. Net rushing yards (gained yards - lost yards)

$sRushingYardsGain - $sRushingYardsLoss
sSacksAssisted integer

Number of assisted sacks

sSacksTotal decimal

Number of sacks (assisted + unassisted)

sSacksUnassisted integer

Number of solo sacks

sSacksYards decimal

Yards lost due to sacks

sSafetiesOnePoint integer

number of safeties one point

sSafetiesTwoPoints integer

Number of safeties two points

sTacklesAssisted integer

Number of assisted tackles

sTacklesForcedFumble integer

Tackles on forced fumble

sTacklesForLossAssisted integer

Number of tackles for loss assisted

sTacklesForLossSolo integer

Number of tackles for loss solo

sTacklesForLossTotal decimal

Number of tackles for loss

sTacklesFumble integer

Tackles on fumble play

sTacklesInterception integer

Tackles on interception plays

sTacklesKickoff integer

Tackles on kickoff

sTacklesKickoffReturn integer

Tackles on kickoff return

sTacklesPassing integer

Tackles on passing plays

sTacklesPunt integer

Tackles on punting

sTacklesPuntReturn integer

Tackles on punt return plays

sTacklesRushing integer

Tackles on rushing plays

sTacklesSolo integer

Number of solo tackles

sTacklesTotal integer

Calculated Field. Total number of Tackles

$sTacklesSolo + $sTacklesAssisted
sTacklesYards decimal

Tackle for loss yards

sTakeaways integer

Takeaways

sTouchdowns integer

Total number of touchdowns from all categories, e.g. passing

sTurnoversCaused integer

Caused turnovers (forced fumbled + interceptions)

sTurnoversCommitted integer

Committed turnovers (forced fumbles + interceptions)

sYardsAllPurposeTotal integer

Calculated Field. Total number of yards consisting of rushing yards + receiving yards + return yards

$sRushingYardsNet + $sReceptionsYards + $sKickReturnsYards + $sInterceptionsReturnYards + $sPuntReturnsYards
sYardsOffensiveTotal integer

Calculated Field. Total yards from scrimmage line consisting of rushing yards plus passing yards

$sRushingYardsNet + $sPassesYards
sYardsPerPlayAverage decimal

Calculated Field. Average yards per play (yards / (rush att. + pass att.))

$sYardsOffensiveTotal / $sPlaysTotal
team associativearray

The team's boxscore statistics

sMinutes decimal

sBiggestLead integer

sBiggestLeadScore string

Format is: 22-45
sBiggestScoringRun integer

sBiggestScoringRunScore string

sLeadChanges integer

sTimeLeading decimal

sTimesScoresLevel integer

sEfficiency decimal

sEfficiencyCustom decimal

s1stDownAttempts integer

number of 1st down plays

s1stDownConversions integer

number of 1st down plays where offense earns first down

s2ndDownAttempts integer

number of 2nd down plays

s2ndDownConversions integer

number of 2nd down plays where offense earns first down

s3rdDownAttempts integer

number of 3rd down plays

s3rdDownConversionPassing integer

3rd down conversion via pass

s3rdDownConversionPenalty integer

3rd down conversion via penalty

s3rdDownConversionRushing integer

3rd down conversion via rush

s3rdDownConversions integer

number of 3rd down plays where offense earns first down

s4thDownAttempts integer

number of 4th down plays

s4thDownConversionPassing integer

4th down conversion via pass

s4thDownConversionPenalty integer

4th down conversion via penalty

s4thDownConversionRushing integer

4th down conversion via rush

s4thDownConversions integer

number of 4th down plays where offense earns first down

sDefensiveExtraPoints integer

Calculated Field. number of defensive extra points (DXP)

$sPatFumbleReturnConversions + $sPatInterceptionReturnConversions + $sPatKickReturnConversions + $sPatSafetyConversions
sDefensiveExtraPointsAttempts integer

Calculated Field. number of defensive extra points (DXP) attempts

$sPatFumbleReturns + $sPatInterceptionReturns + $sPatKickReturns
sEndOfPlays integer

End of plays

sFieldGoalAttemptLongest integer

Longest field goal attempt

sFieldGoalAttempts1to19 integer

Number of FGA 1-19 yards

sFieldGoalAttempts20to29 integer

Number of FGA 20-29 yards

sFieldGoalAttempts30to39 integer

Number of FGA 30-39 yards

sFieldGoalAttempts40to49 integer

Number of FGA 40-49 yards

sFieldGoalAttempts50to59 integer

Number of Field Goals Attempt 50-59 yards

sFieldGoalAttempts60Plus integer

Number of Field Goals Attempt 60+ yards

sFieldGoalMadeLongest integer

Longest field goal made

sFieldGoalReturns integer

Field goal return on unsuccessful attempt

sFieldGoalsAttempted integer

total number of field goal attempts

sFieldGoalsBlocked integer

total number of field goals blocked

sFieldGoalsMade integer

total number of field goals made

sFieldGoalsMade1to19 integer

Number of FGM 1-19 yards

sFieldGoalsMade20to29 integer

Number of FGM 20-29 yards

sFieldGoalsMade30to39 integer

Number of FGM 30-39 yards

sFieldGoalsMade40to49 integer

Number of FGM 40-49 yards

sFieldGoalsMade50to59 integer

Number of Field Goals Made 50-59 yards

sFieldGoalsMade60Plus integer

Number of Field Goals Made 60+ yards

sFieldGoalsPercentage decimal

Calculated Field. Field goals percentage

$sFieldGoalsMade / $sFieldGoalsAttempted
sFirstDownPassing integer

number of times team gets a first down of a passing play

sFirstDownPenalty integer

number of times team gets a first down due to penalty

sFirstDownRushing integer

number of times team gets a first down off a rushing play

sFirstDownTotal integer

Calculated Field. Total number of first downs

$sFirstDownPassing + $sFirstDownRushing + $sFirstDownPenalty
sFormationFieldGoal integer

Number of plays where field goal was attempted

sFormationPunt integer

Plays in punt formation

sFormationShotgun integer

Plays in shotgun formation

sFormationUnderCenter integer

Plays under center

sFumbleReturnLongest integer

longest fumble return

sFumbleReturnTotal integer

number of fumble returns

sFumbleReturnTouchdowns integer

number of touchdowns score on fumble returns

sFumbleReturnYards integer

total fumble return yards

sFumbleReturnYardsAverage decimal

Calculated Field. Average yards per fumble return

$sFumbleReturnYards / $sFumbleReturnTotal
sFumblesForced integer

number of fumbles forced

sFumblesLost integer

total number of fumbles team lost when they committed the fumble

sFumblesRecovered integer

number of fumbles recovered

sFumblesTotal integer

total number of fumbles

sGoalEfficiencyAttempt integer

possessions with 1st and goal, same as calculating RedZone instead we ignore the Yards.

sGoalEfficiencyFieldGoal integer

possession ending in field goal once 1st and goal.

sGoalEfficiencyPercentage decimal

Calculated Field. possession with 1st and goal ending in TD or FG / total possession of 1st and goal.

($sGoalEfficiencyTouchdowns + $sGoalEfficiencyFieldGoal) / $sGoalEfficiencyAttempt
sGoalEfficiencyTouchdowns integer

possession ending in TD once 1st and goal.

sInterceptionsAverage decimal

Calculated Field. Average yards after interception

$sInterceptionsReturnYards / $sPassInterceptions
sInterceptionsReturnLongest integer

longest interception return

sInterceptionsReturnYards integer

total yards off interception returns

sInterceptionsTouchdowns integer

number of touchdowns scored off interception

sKickoffsGrossAverage decimal

Calculated Field. Average yards per kickoff

$sKickoffsGrossYards / $sKickoffsTotal
sKickoffsGrossYards integer

total gross kickoff yards

sKickoffsNetAverage decimal

Calculated Field. Net kickoff yards average

$sKickoffsNetYards / $sKickoffsTotal
sKickoffsNetYards integer

Net kickoff yards

sKickoffsOutOfBound integer

number of kickoffs out of bounds

sKickoffsReturned integer

number  of kickoffs returned

sKickoffsTotal integer

total number of kickoffs

sKickoffsTouchbacks integer

number of touchbacks

sKickOnSideAttempts integer

Number of on-side kicks attempted

sKickReturnsAverage decimal

Calculated Field. Average yards during kick return

$sKickReturnsYards / $sKickReturnsTotal
sKickReturnsLongest integer

Longest kick return

sKickReturnsTotal integer

total number of kick returns

sKickReturnsTouchdowns integer

Number of touchdowns scored on kick return

sKickReturnsYards integer

Net Kick return yards

sKicksBlocked integer

Calculated Field. number of kicks blocked

$sPuntsBlocked + $sFieldGoalsBlocked + $sPatBlockedKicks
sPuntsBlockedBy integer

sPuntsBlockedBy

sPatBlockedKicksBy integer

sPatBlockedKicksBy

sFieldGoalsBlockedBy integer

sFieldGoalsBlockedBy

sKicksBlockedBy integer

Calculated Field. sKicksBlockedBy

$sPuntsBlockedBy + $sFieldGoalsBlockedBy + $sPatBlockedKicksBy
sKicksOnSide integer

Number of on-side kicks successful

sKneelsDown integer

Quarterback kneels down

sLossesLeadingAtHalf integer

1 when lost when leading after first half

sWinsLeadingAtHalf integer

1 when won when leading after first half

sMoneyPlays integer

Number of plays where 1st down is earned or a touchdown scored

sLossesOvertime integer

1 if games lost in overtime.

sWinsOvertime integer

1 if games won in overtime.

sPassBreakUps integer

total number of pass break ups

sPassEfficiency decimal

Calculated Field. Pass Efficiency

((8.4 * sPassesYards) + (330 * sPassesTouchdowns) - (200 * sPassesIntercepted) + (100 * sPassesCompleted)) / sPasses
sPasses integer

total number of pass attempts

sPassesAverageYardsPerCompletion decimal

Calculated Field. Passing average yards per completion

sPassesYards/sPassesCompleted
sPassesCompleted integer

total number of pass completions

sPassesIntercepted integer

total number of pass interceptions

sPassesInterceptionPercentage decimal

Calculated Field. Passing interception percentage

sPassesIntercepted/sPasses
sPassesLeft integer

Number of pass left plays

sPassesLongest integer

longest pass completions

sPassesMiddle integer

Number of pass middle plays

sPassesPercentage decimal

Calculated Field. Passing percentage

$sPassesCompleted / $sPasses
sPassesRight integer

Number of pass right plays

sPassesSacked integer

total number of sacks

sPassesTouchDownPercentage decimal

Calculated Field. Passing touch down percentage

sPassesTouchdowns/sTouchdowns
sPassesTouchdowns integer

total number of passing touchdowns

sPassesYards integer

net total passing yards

sPassesYardsPerAttempt decimal

Calculated Field. Average yards per pass attempt

$sPassesYards / $sPasses
sPassesYardsPerCatch decimal

Calculated Field. Average yards per completed pass

$sPassesYards / $sPassesCompleted
sPassesYardsSacked integer

total yards loss due to being sacked

sPassIncompleteDropped integer

Player that dropped the ball after an incomplete pass.

sPassing0 integer

Number of plays with complete passes for 0 yards or more.

sPassing10 integer

Number of plays with complete passes for 10 yards or more.

sPassing20 integer

Number of plays with complete passes for 20 yards or more.

sPassing30 integer

Number of plays with complete passes for 30 yards or more.

sPassing40 integer

Number of plays with complete passes for 40 yards or more.

sPassing50 integer

Number of plays with complete passes for 50 yards or more.

sPassingNegative integer

Number of plays with complete passes for less than 0 yards.

sPassInterceptions integer

total number of interceptions

sPassQuarterbackHurries integer

number of quarterback hurries

sPatAttempts integer

Calculated Field. Total pat attempts

$sPatKicksAttempted + $sPatTwoPointsAttempt
sPatBlockedKicks integer

PAT kick is blocked

sPatFumbleReturnConversions integer

PAT snap is fumbled by the holder and recovered and returned by defense and scored for 2pt conversion

sPatFumbleReturns integer

PAT snap is fumbled by the holder and recovered and returned by defense

sPatInterceptionReturnConversions integer

PAT pass is intercepted by the defense and returned and scored for 2pt conversion

sPatInterceptionReturns integer

PAT pass is intercepted by the defense and returned

sPatKickReturnConversions integer

PAT is blocked and returned by defense and scored for 2pt conversion

sPatKickReturns integer

PAT is blocked and returned by defense

sPatKicksAttempted integer

number of extra point kicks attempted

sPatKicksMade integer

total number of PAT kicks made

sPatKicksPercentage decimal

Calculated Field. PAT situation kicks percentage

$sPatKicksMade / $sPatKicksAttempted
sPatMade integer

Calculated Field. Total pat made

$sPatKicksMade + $sPatTwoPointsMade
sPatPassAttempts integer

Pass attempts during PAT play

sPatPasses integer

total number of passes on PAT

sPatPercentage decimal

Calculated Field. Pat Percentage

$sPatMade / $sPatAttempts * 100
sPatReceives integer

total number of receptions on PAT

sPatRushAttempts integer

Rush attempts during PAT play

sPatRushes integer

total number of rushes on PAT

sPatSafetyConversions integer

PAT results in defense trying to return either fumble or interception or blocked kick out of own endzone but is tackled then back in own endzone for 1pt safety

sPatTwoPointsAttempt integer

Calculated Field. total number of 2 pt conversion attempts

$sPatPassAttempts + $sPatRushAttempts
sPatTwoPointsMade integer

Calculated Field. total number of 2 pt conversions made

$sPatPasses + $sPatRushes
sPenalty integer

total number of accepted penalties

sPenaltyYards integer

total number of penalty yards

sPlayLateral integer

Lateral plays

sPlaysAllPurposeTotal integer

Calculated Field. All-purpose running is the combined net yards gained by rushing, receiving, interception returns, punt returns, kickoff returns and runbacks of field goal attempts

$sRushingAttempts + $sReceptions + $sPassInterceptions + $sPuntReturns + $sKickReturnsTotal + $sFieldGoalReturns
sPlaysHuddle integer

Number of plays where team had huddle

sPlaysNoHuddle integer

Number of plays where team did not have huddle

sPlaysTotal integer

Calculated Field. Total number of offensive plays from scrimmage

$sRushingAttempts + $sPasses
sPoints integer

Total team points

sPointsFromTurnover integer

Points scored following opponents turnover due to fumble, interception or down

sPossessionTime decimal

Posession time

sPuntReturns integer

number of punt returns

sPuntReturns0 integer

Number of punt returns for 0 yards or more.

sPuntReturns10 integer

Number of punt returns for 10 yards or more.

sPuntReturns20 integer

Number of punt returns for 20 yards or more.

sPuntReturns30 integer

Number of punt returns for 30 yards or more.

sPuntReturns40 integer

Number of punt returns for 40 yards or more.

sPuntReturns50 integer

Number of punt returns for 50 yards or more.

sPuntReturnsAverage decimal

Calculated Field. Average yards per punt return

$sPuntReturnsYards / $sPuntReturns
sPuntReturnsLongest integer

longest punt return

sPuntReturnsTouchdown integer

number of touchdown scored on punt return

sPuntReturnsYards integer

net punt return yards

sPunts integer

total number of punts

sPunts50plus integer

number of punt distances 50 or more yards

sPuntsAverage decimal

Calculated Field. Average yards per punting

$sPuntsYards / $sPunts
sPuntsBlocked integer

number of punts blocked

sPuntsFairCatches integer

number of punts resulting in fair catch

sPuntsInside20 integer

number of punts recovered inside opponent 20 yard line

sPuntsLongest integer

longest punt

sPuntsNetAverage decimal

Calculated Field. Net put yards average

$sPuntsYardsNet / $sPunts
sPuntsTouchbacks integer

number of punts resulting in touchback

sPuntsYards integer

gross total of punt yards

sPuntsYardsNet integer

Net punts yards

sReceiving0 integer

Number of plays with complete passes for 0 yards or more.

sReceiving10 integer

Number of plays with complete passes for 10 yards or more.

sReceiving20 integer

Number of plays with complete passes for 20 yards or more.

sReceiving30 integer

Number of plays with complete passes for 30 yards or more.

sReceiving40 integer

Number of plays with complete passes for 40 yards or more.

sReceiving50 integer

Number of plays with complete passes for 50 yards or more.

sReceivingNegative integer

Number of plays with complete passes for less than 0 yards.

sReceptions integer

total number of receptions

sReceptionsAverage decimal

Calculated Field. Average receiving yards per reception

$sReceptionsYards / $sReceptions
sReceptionsLongest integer

longest pass reception

sReceptionsTouchdown integer

total number of receiving touchdowns

sReceptionsYards integer

total number of receiving yards

sReceptionsYardsAfterCatch integer

Total yards gained after point of reception to end of play

sRedZoneAttempts integer

number of possessions when team on offense has the ball inside their opponents 20 yard line

sRedZoneDowns integer

number of times in redzone where teams fails to convert on 4th down

sRedZoneFieldGoalAttempts integer

Number of field goal attempts in redzone

sRedZoneFieldGoalMade integer

Field goals made in the redzone

sRedZoneFumbleLost integer

number of fumbles lost on red zone possesions 

sRedZoneGameEnd integer

number of times in redzone where team doesn't score because clock in game runs out

sRedZoneHalfEnd integer

number of times in redzone where team doesn't score because clock in 1st half runs out

sRedZoneInterceptions integer

number of interceptions thrown on red zone possessions

sRedZoneMade integer

number of possessions when team on offense has the ball inside their opponents 20 yard line and they either score a touchdown or field goal on the possessions

sRedZonePassing integer

Passing red zone attempts - number of passing plays starting at or inside opponent 20

sRedZonePoints integer

Points scored from red zone, including points after touchdown

sRedZoneTouchdownsReceptions integer

number of touchdowns scored in redzone by reception

sRedZoneTouchdownsRushes integer

number of touchdowns scored in redzone by rushing

sRushing0 integer

Number of plays with rushing for 0 yards or more.

sRushing10 integer

Number of plays with rushing for 10 yards or more.

sRushing20 integer

Number of plays with rushing for 20 yards or more.

sRushing30 integer

Number of plays with rushing for 30 yards or more.

sRushing40 integer

Number of plays with rushing for 40 yards or more.

sRushing50 integer

Number of plays with rushing for 50 yards or more.

sRushingNegative integer

Number of plays with rushing for less than 0 yards.

sRushingAttempts integer

total number of rushing attempts

sRushingLeft integer

Number of rush left plays

sRushingLongest integer

longest rush from scrimmage

sRushingMiddle integer

Number of rush middle plays

sRushingNetYardsAverage decimal

Calculated Field. Average net yards per rush attempt

$sRushingYardsNet / $sRushingAttempts
sRushingRight integer

Number of rush right plays

sRushingTouchdowns integer

total number of touchdowns on rushing plays

sRushingYardsGain integer

Gross Positive Yards rushing

sRushingYardsLoss integer

Gross Negative Yards rushing

sRushingYardsNet integer

Calculated Field. Net total rushing yards

$sRushingYardsGain - $sRushingYardsLoss
sSacksAssisted integer

number of sacks involving 2 players

sSacksTotal decimal

number of sacks

sSacksUnassisted integer

number of solo sacks

sSacksYards decimal

number of yards lost due to sackes

sSafetiesOnePoint integer

number of safeties one point

sSafetiesTwoPoints integer

number of safeties two points

sScrambles integer

Quarterback scrambles

sTacklesAssisted integer

number of tackles involving 2 players

sTacklesForcedFumble integer

number of tackles on forced fumbles

sTacklesForLossAssisted integer

number of assisted tackle for loss

sTacklesForLossSolo integer

number of solo tackle for loss 

sTacklesForLossTotal decimal

total number of tackles behind line of scrimmage

sTacklesFumble integer

number of tackles on fumble plays

sTacklesInterception integer

total number of tackles after interception is thrown

sTacklesKickoff integer

total number of tackles when team is kicking off

sTacklesKickoffReturn integer

number of tackles on kickoff returns

sTacklesPassing integer

number of tackles on passing plays

sTacklesPunt integer

total number of tackles when team is punting

sTacklesPuntReturn integer

number of tackles on punt return

sTacklesRushing integer

number of tackles on rushing plays

sTacklesSolo integer

number of solo tackles

sTacklesTotal integer

Calculated Field. total number of tackles

$sTacklesSolo + $sTacklesAssisted
sTacklesYards decimal

Tackle for loss yards

sTakeaways integer

Takeaways

sTeamFieldGoalAttemptLongest integer

Longest field goal attempt awarded to team

sTeamFieldGoalAttempts integer

Field goal attempts awarded to team

sTeamFieldGoalAttempts1to19 integer

Field goal attempts between 1 and 19 yards awarded to team

sTeamFieldGoalAttempts20to29 integer

Field goal attempts between 20 and 29 yards awarded to team

sTeamFieldGoalAttempts30to39 integer

Field goal attempts between 30 and 39 yards awarded to team

sTeamFieldGoalAttempts40to49 integer

Field goal attempts between 40 and 49 yards awarded to team

sTeamFieldGoalAttempts50to59 integer

Field goal attempts between 50 and 59 yards awarded to team

sTeamFieldGoalAttempts60Plus integer

Field goal attempts longer than 60 awarded to team

sTeamFieldGoalsBlocked integer

Blocked field goals awarded to team

sTeamFumbles integer

Number of team fumbles

sTeamFumblesLost integer

Number of team fumbles

sTeamKickReturns integer

Number of tean kickoff returns

sTeamKickReturnsYards integer

Net team kickoff return yards

sTeamPasses integer

Number of team pass attempts

sTeamPassYardsLoss integer

Passing yards loss due to spike

sTeamPlaysTotal integer

Calculated Field. Number of team offensive plays from scrimmage

$sTeamPasses + $sTeamRushingAttempts
sTeamPoints integer

Points scored awarded to team as individual

sTeamPuntReturns integer

Number of team punt returns

sTeamPuntReturnsYards integer

Net team punt return yards

sTeamPunts integer

Number team of punts

sTeamPuntsBlocked integer

Number of team punts blocked

sTeamPuntsYards integer

Gross total of team punt yards

sTeamRushingAttempts integer

number of team rushing attempts

sTeamRushingYardsLoss integer

Team gross negative yards rushing

sTeamRushingYardsNet integer

Calculated Field. Net total team rushing yards

0 - $sTeamRushingYardsLoss
sTeamSafetiesTwoPoints integer

Two point safeties scored by team

sTeamYardsOffensiveTotal integer

Calculated Field. Team net rushing yards + team net receiving yards

$sTeamRushingYardsNet - $sTeamPassYardsLoss
sTouchdowns integer

number of touchdowns scored (the total number of all tds from all categories ex. Passing)

sTurnovers integer

Calculated Field. Total number of times team lost possession due to fumble, interception, or downs

$sPassesIntercepted + $sFumblesLost
sWinsby7PointsOrLess integer

1 when whon when score difference is <7.

sYardsAllPurposeTotal integer

Calculated Field. Total number of yards consisting of rushing yards + receiving yards + return yards

$sRushingYardsNet + $sReceptionsYards + $sKickReturnsYards + $sInterceptionsReturnYards + $sPuntReturnsYards + $sTeamRushingYardsNet
sYardsMiscellaneous integer

Total mic yards due to referee misplaced ball

sYardsOffensiveTotal integer

Calculated Field. Net rushing yards + net receiving yards

$sRushingYardsNet + $sPassesYards
sYardsPerPlayAverage decimal

Calculated Field. Average of total offensive yards per play

$sYardsOffensiveTotal / $sPlaysTotal
periods array

An array of periods. Optionally depending on types parameter

period integer

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

periodType enum

The type of period

REGULAR
(Default)
OVERTIME
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.

sMinutes decimal

sEfficiency decimal

sEfficiencyCustom decimal

s1stDownAttempts integer

1st down plays

s1stDownConversions integer

1st down plays where player earned a first down

s2ndDownAttempts integer

2nd down plays

s2ndDownConversions integer

2nd down plays where player earned a first down

s3rdDownAttempts integer

3rd round attempts

s3rdDownConversionPassing integer

3rd down conversion via pass

s3rdDownConversionPenalty integer

3rd down conversion via penalty

s3rdDownConversionRushing integer

3rd down conversion via rush

s3rdDownConversions integer

3rd down conversions

s4thDownAttempts integer

4th down attempts

s4thDownConversionPassing integer

4th down conversion via pass

s4thDownConversionPenalty integer

4th down conversion via penalty

s4thDownConversionRushing integer

4th down conversion via rush

s4thDownConversions integer

4th down conversions

sDefensiveExtraPoints integer

Calculated Field. Defensive extra points (DXP) made

$sPatFumbleReturnConversions + $sPatInterceptionReturnConversions + $sPatKickReturnConversions + $sPatSafetyConversions
sDefensiveExtraPointsAttempts integer

Calculated Field. number of defensive extra points (DXP) attempts

$sPatFumbleReturns + $sPatInterceptionReturns + $sPatKickReturns
sFieldGoalAttemptLongest integer

Longest field goal attempt

sFieldGoalAttempts1to19 integer

Number of FGA 1-19 yards

sFieldGoalAttempts20to29 integer

Number of FGA 20-29 yards

sFieldGoalAttempts30to39 integer

Number of FGA 30-39 yards

sFieldGoalAttempts40to49 integer

Number of FGA 40-49 yards

sFieldGoalAttempts50to59 integer

Number of Field Goals Attempt 50-59 yards

sFieldGoalAttempts60Plus integer

Number of Field Goals Attempt 60+ yards

sFieldGoalMadeLongest integer

Longest field goal made

sFieldGoalReturns integer

Field goal return on unsuccessful attempt

sFieldGoalsAttempted integer

Attempt to a field goal

sFieldGoalsBlocked integer

Blocked field goals

sFieldGoalsMade integer

Field goals made

sFieldGoalsMade1to19 integer

Number of FGM 1-19 yards

sFieldGoalsMade20to29 integer

Number of FGM 20-29 yards

sFieldGoalsMade30to39 integer

Number of FGM 30-39 yards

sFieldGoalsMade40to49 integer

Number of FGM 40-49 yards

sFieldGoalsMade50to59 integer

Number of Field Goals Made 50-59 yards

sFieldGoalsMade60Plus integer

Number of Field Goals Made 60+ yards

sFieldGoalsPercentage decimal

Calculated Field. Field goals made Percentage

$sFieldGoalsMade / $sFieldGoalsAttempted
sFirstDownPassing integer

Total first down by passing

sFirstDownPenalty integer

Total first down by penalty

sFirstDownRushing integer

Total first downs by rushing

sFirstDownTotal integer

Calculated Field. total number of first downs

$sFirstDownPassing + $sFirstDownRushing + $sFirstDownPenalty
sFumbleReturnLongest integer

Longest fumble return

sFumbleReturnTotal integer

Total number of fumble returns

sFumbleReturnTouchdowns integer

Number of touchdowns scored on fumble returns

sFumbleReturnYards integer

Total fumble return yards

sFumbleReturnYardsAverage decimal

Calculated Field. average yards per return

$sFumbleReturnYards / $sFumbleReturnTotal
sFumblesForced integer

Forced fumbles

sFumblesLost integer

Lost fumbles

sFumblesRecovered integer

Recovered fumbles

sFumblesTotal integer

Total number of fumbles

sGoalEfficiencyAttempt integer

possessions with 1st and goal, same as calculating RedZone instead we ignore the Yards.

sGoalEfficiencyFieldGoal integer

possession ending in field goal once 1st and goal.

sGoalEfficiencyPercentage decimal

Calculated Field. possession with 1st and goal ending in TD or FG / total possession of 1st and goal.

($sGoalEfficiencyTouchdowns + $sGoalEfficiencyFieldGoal) / $sGoalEfficiencyAttempt
sGoalEfficiencyTouchdowns integer

possession ending in TD once 1st and goal.

sInterceptionsAverage decimal

Calculated Field. Average yards per interception return

$sInterceptionsReturnYards / $sPassInterceptions
sInterceptionsReturnLongest integer

Longest interception return

sInterceptionsReturnYards integer

Interceptions return yards

sInterceptionsTouchdowns integer

Touchdowns after interception

sKickoffsGrossAverage decimal

Calculated Field. Average gross yards from kickoff

$sKickoffsGrossYards / $sKickoffsTotal
sKickoffsGrossYards integer

Kickoff gross yards

sKickoffsNetAverage decimal

Calculated Field. Average of net yards from the kickoff

$sKickoffsNetYards / $sKickoffsTotal
sKickoffsNetYards integer

Net yards from the kickoff

sKickoffsOutOfBound integer

Kickoffs out of bounds

sKickoffsReturned integer

Returned kickoffs

sKickoffsTotal integer

Total number of kickoffs

sKickoffsTouchbacks integer

Touchbacks after kickoff

sKickOnSideAttempts integer

Number of on-side kicks attempted

sKickReturnsAverage decimal

Calculated Field. Average yards from kick return

$sKickReturnsYards / $sKickReturnsTotal
sKickReturnsLongest integer

Longest kick return

sKickReturnsTotal integer

Total kick returns

sKickReturnsTouchdowns integer

Touchdown from kick return

sKickReturnsYards integer

Kick return yards

sKicksBlocked integer

Calculated Field. number of kicks blocked

$sPuntsBlocked + $sFieldGoalsBlocked + $sPatBlockedKicks
sPuntsBlockedBy integer

sPuntsBlockedBy

sPatBlockedKicksBy integer

sPatBlockedKicksBy

sFieldGoalsBlockedBy integer

sFieldGoalsBlockedBy

sKicksBlockedBy integer

Calculated Field. sKicksBlockedBy

$sPuntsBlockedBy + $sFieldGoalsBlockedBy + $sPatBlockedKicksBy
sKicksOnSide integer

Number of on-side kicks successful

sPassBreakUps integer

Pass break ups

sPassEfficiency decimal

Calculated Field. Pass Efficiency

((8.4 * sPassesYards) + (330 * sPassesTouchdowns) - (200 * sPassesIntercepted) + (100 * sPassesCompleted)) / sPasses
sPasses integer

Total number of passes

sPassesAverageYardsPerCompletion decimal

Calculated Field. Passing average yards per completion

sPassesYards/sPassesCompleted
sPassesCompleted integer

Complete passes

sPassesIntercepted integer

Intercepted passes

sPassesInterceptionPercentage decimal

Calculated Field. Passing interception percentage

sPassesIntercepted/sPasses
sPassesLeft integer

Number of left pass plays

sPassesLongest integer

Longest completed pass

sPassesMiddle integer

Number of middle pass plays

sPassesPercentage decimal

Calculated Field. Percentage of completed passes

$sPassesCompleted / $sPasses
sPassesRight integer

Number of right passes plays

sPassesSacked integer

Sacked passes

sPassesTouchDownPercentage decimal

Calculated Field. Passing touch down percentage

sPassesTouchdowns/sTouchdowns
sPassesTouchdowns integer

Touchdowns after passes

sPassesYards integer

Total passing yards

sPassesYardsPerAttempt decimal

Calculated Field. Average yards per pass attempt

$sPassesYards / $sPasses
sPassesYardsPerCatch decimal

Calculated Field. Average yards per completed pass (catch)

$sPassesYards / $sPassesCompleted
sPassesYardsSacked integer

Yards lost due to sack

sPassIncompleteDropped integer

Player that dropped the ball after an incomplete pass.

sPassing0 integer

Number of plays with complete passes for 0 yards or more.

sPassing10 integer

Number of plays with complete passes for 10 yards or more.

sPassing20 integer

Number of plays with complete passes for 20 yards or more.

sPassing30 integer

Number of plays with complete passes for 30 yards or more.

sPassing40 integer

Number of plays with complete passes for 40 yards or more.

sPassing50 integer

Number of plays with complete passes for 50 yards or more.

sPassingNegative integer

Number of plays with complete passes for less than 0 yards.

sPassInterceptions integer

Pass interceptions

sPassQuarterbackHurries integer

Quarterback hurries

sPatAttempts integer

Calculated Field. Total pat attempts

$sPatKicksAttempted + $sPatTwoPointsAttempt
sPatBlockedKicks integer

Blocked points after touchdown kicks

sPatFumbleReturnConversions integer

PAT snap is fumbled by the holder and recovered and returned by defense and scored for 2pt conversion

sPatFumbleReturns integer

PAT snap is fumbled by the holder and recovered and returned by defense

sPatInterceptionReturnConversions integer

PAT pass is intercepted by the defense and returned and scored for 2pt conversion

sPatInterceptionReturns integer

PAT pass is intercepted by the defense and returned

sPatKickReturnConversions integer

PAT is blocked and returned by defense and scored for 2pt conversion

sPatKickReturns integer

PAT is blocked and returned by defense

sPatKicksAttempted integer

Points after touchdown - kick attempts

sPatKicksMade integer

Points after touchdown - kicks made

sPatKicksPercentage decimal

Calculated Field. Points after touchdown - kicks percentage

$sPatKicksAttempted / $sPatKicksMade
sPatMade integer

Calculated Field. Pat Made

$sPatKicksMade + $sPatTwoPointsMade
sPatPassAttempts integer

Pass attempts during PAT play

sPatPasses integer

Passes during points after touchdown situation

sPatPercentage decimal

Calculated Field. Pat Percetage

$sPatMade / $sPatAttempts * 100
sPatReceives integer

Receives during points after touchdown situation

sPatRushAttempts integer

Rush attempts during PAT play

sPatRushes integer

Rushes during points after touchdown situation

sPatSafetyConversions integer

PAT results in defense trying to return either fumble or interception or blocked kick out of own endzone but is tackled then back in own endzone for 1pt safety

sPatTwoPointsAttempt integer

Calculated Field. Points after touchdown - two point attempts

$sPatPassAttempts + $sPatRushAttempts
sPatTwoPointsMade integer

Calculated Field. Points after touchdown - two points made

$sPatPasses + $sPatRushes
sPenalty integer

Total number of penalties received

sPenaltyYards integer

Penalty yards received

sPlaysAllPurposeTotal integer

Calculated Field. All-purpose running is the combined net yards gained by rushing, receiving, interception returns, punt returns, kickoff returns and runbacks of field goal attempts

$sRushingAttempts + $sReceptions + $sPassInterceptions + $sPuntReturns + $sKickReturnsTotal + $sFieldGoalReturns
sPlaysTotal integer

Calculated Field. Total number of offensive plays consisting of rushing attempts plus passing attempts

$sRushingAttempts + $sPasses
sPoints integer

Total player scored points

sPuntReturns integer

Total number of punt returns

sPuntReturns0 integer

Number of punt returns for 0 yards or more.

sPuntReturns10 integer

Number of punt returns for 10 yards or more.

sPuntReturns20 integer

Number of punt returns for 20 yards or more.

sPuntReturns30 integer

Number of punt returns for 30 yards or more.

sPuntReturns40 integer

Number of punt returns for 40 yards or more.

sPuntReturns50 integer

Number of punt returns for 50 yards or more.

sPuntReturnsAverage decimal

Calculated Field. Net yards per return

$sPuntReturnsYards / $sPuntReturns
sPuntReturnsLongest integer

Longest punt return in yards

sPuntReturnsTouchdown integer

Touchdowns after punt return

sPuntReturnsYards integer

total yards per punt returns

sPunts integer

Total number of punts

sPunts50plus integer

Punts longer than 50 gross yards

sPuntsAverage decimal

Calculated Field. Gross punting yards / number of punts

$sPuntsYards / $sPunts
sPuntsBlocked integer

Blocked punts

sPuntsFairCatches integer

Punts resulting in fair catch

sPuntsInside20 integer

Number of punts received inside 20 yard line including fair catches and touchbacks

sPuntsLongest integer

Longest punt

sPuntsNetAverage decimal

Calculated Field. Net yards per punt

$sPuntsYardsNet / $sPunts
sPuntsTouchbacks integer

Number of punts resulting in touchback

sPuntsYards integer

Gross total punt yards

sPuntsYardsNet integer

Net punts yards

sReceiving0 integer

Number of plays with complete passes for 0 yards or more.

sReceiving10 integer

Number of plays with complete passes for 10 yards or more.

sReceiving20 integer

Number of plays with complete passes for 20 yards or more.

sReceiving30 integer

Number of plays with complete passes for 30 yards or more.

sReceiving40 integer

Number of plays with complete passes for 40 yards or more.

sReceiving50 integer

Number of plays with complete passes for 50 yards or more.

sReceivingNegative integer

Number of plays with complete passes for less than 0 yards.

sReceptions integer

Total number of receptions

sReceptionsAverage decimal

Calculated Field. Average yards per reception

$sReceptionsYards / $sReceptions
sReceptionsLongest integer

Longest reception in yards

sReceptionsTouchdown integer

Touchdowns after reception

sReceptionsYards integer

Number of receiving yards

sReceptionsYardsAfterCatch integer

Yards from point of catch to end of play

sRedZonePassing integer

Passing red zone attempts - number of passing plays starting at or inside opponent 20

sRushing0 integer

Number of plays with rushing for 0 yards or more.

sRushing10 integer

Number of plays with rushing for 10 yards or more.

sRushing20 integer

Number of plays with rushing for 20 yards or more.

sRushing30 integer

Number of plays with rushing for 30 yards or more.

sRushing40 integer

Number of plays with rushing for 40 yards or more.

sRushing50 integer

Number of plays with rushing for 50 yards or more.

sRushingNegative integer

Number of plays with rushing for less than 0 yards.

sRushingAttempts integer

Rushing attempts

sRushingLeft integer

Number of rushing to the left plays

sRushingLongest integer

Longest rush in yards from scrimmage

sRushingMiddle integer

Number of rushing to the middle plays

sRushingNetYardsAverage decimal

Calculated Field. Net rushing yards / number of rushes

$sRushingYardsNet / $sRushingAttempts
sRushingRight integer

Number of rushing to the right plays

sRushingTouchdowns integer

Touchdowns after rushing

sRushingYardsGain integer

Gross rushing yards gain

sRushingYardsLoss integer

Gross yards loss during rush

sRushingYardsNet integer

Calculated Field. Net rushing yards (gained yards - lost yards)

$sRushingYardsGain - $sRushingYardsLoss
sSacksAssisted integer

Number of assisted sacks

sSacksTotal decimal

Number of sacks (assisted + unassisted)

sSacksUnassisted integer

Number of solo sacks

sSacksYards decimal

Yards lost due to sacks

sSafetiesOnePoint integer

number of safeties one point

sSafetiesTwoPoints integer

Number of safeties two points

sTacklesAssisted integer

Number of assisted tackles

sTacklesForcedFumble integer

Tackles on forced fumble

sTacklesForLossAssisted integer

Number of tackles for loss assisted

sTacklesForLossSolo integer

Number of tackles for loss solo

sTacklesForLossTotal decimal

Number of tackles for loss

sTacklesFumble integer

Tackles on fumble play

sTacklesInterception integer

Tackles on interception plays

sTacklesKickoff integer

Tackles on kickoff

sTacklesKickoffReturn integer

Tackles on kickoff return

sTacklesPassing integer

Tackles on passing plays

sTacklesPunt integer

Tackles on punting

sTacklesPuntReturn integer

Tackles on punt return plays

sTacklesRushing integer

Tackles on rushing plays

sTacklesSolo integer

Number of solo tackles

sTacklesTotal integer

Calculated Field. Total number of Tackles

$sTacklesSolo + $sTacklesAssisted
sTacklesYards decimal

Tackle for loss yards

sTakeaways integer

Takeaways

sTouchdowns integer

Total number of touchdowns from all categories, e.g. passing

sTurnoversCaused integer

Caused turnovers (forced fumbled + interceptions)

sTurnoversCommitted integer

Committed turnovers (forced fumbles + interceptions)

sYardsAllPurposeTotal integer

Calculated Field. Total number of yards consisting of rushing yards + receiving yards + return yards

$sRushingYardsNet + $sReceptionsYards + $sKickReturnsYards + $sInterceptionsReturnYards + $sPuntReturnsYards
sYardsOffensiveTotal integer

Calculated Field. Total yards from scrimmage line consisting of rushing yards plus passing yards

$sRushingYardsNet + $sPassesYards
sYardsPerPlayAverage decimal

Calculated Field. Average yards per play (yards / (rush att. + pass att.))

$sYardsOffensiveTotal / $sPlaysTotal
team associativearray

The team's boxscore statistics

sMinutes decimal

sBiggestLead integer

sBiggestLeadScore string

Format is: 22-45
sBiggestScoringRun integer

sBiggestScoringRunScore string

sLeadChanges integer

sTimeLeading decimal

sTimesScoresLevel integer

sEfficiency decimal

sEfficiencyCustom decimal

s1stDownAttempts integer

number of 1st down plays

s1stDownConversions integer

number of 1st down plays where offense earns first down

s2ndDownAttempts integer

number of 2nd down plays

s2ndDownConversions integer

number of 2nd down plays where offense earns first down

s3rdDownAttempts integer

number of 3rd down plays

s3rdDownConversionPassing integer

3rd down conversion via pass

s3rdDownConversionPenalty integer

3rd down conversion via penalty

s3rdDownConversionRushing integer

3rd down conversion via rush

s3rdDownConversions integer

number of 3rd down plays where offense earns first down

s4thDownAttempts integer

number of 4th down plays

s4thDownConversionPassing integer

4th down conversion via pass

s4thDownConversionPenalty integer

4th down conversion via penalty

s4thDownConversionRushing integer

4th down conversion via rush

s4thDownConversions integer

number of 4th down plays where offense earns first down

sDefensiveExtraPoints integer

Calculated Field. number of defensive extra points (DXP)

$sPatFumbleReturnConversions + $sPatInterceptionReturnConversions + $sPatKickReturnConversions + $sPatSafetyConversions
sDefensiveExtraPointsAttempts integer

Calculated Field. number of defensive extra points (DXP) attempts

$sPatFumbleReturns + $sPatInterceptionReturns + $sPatKickReturns
sEndOfPlays integer

End of plays

sFieldGoalAttemptLongest integer

Longest field goal attempt

sFieldGoalAttempts1to19 integer

Number of FGA 1-19 yards

sFieldGoalAttempts20to29 integer

Number of FGA 20-29 yards

sFieldGoalAttempts30to39 integer

Number of FGA 30-39 yards

sFieldGoalAttempts40to49 integer

Number of FGA 40-49 yards

sFieldGoalAttempts50to59 integer

Number of Field Goals Attempt 50-59 yards

sFieldGoalAttempts60Plus integer

Number of Field Goals Attempt 60+ yards

sFieldGoalMadeLongest integer

Longest field goal made

sFieldGoalReturns integer

Field goal return on unsuccessful attempt

sFieldGoalsAttempted integer

total number of field goal attempts

sFieldGoalsBlocked integer

total number of field goals blocked

sFieldGoalsMade integer

total number of field goals made

sFieldGoalsMade1to19 integer

Number of FGM 1-19 yards

sFieldGoalsMade20to29 integer

Number of FGM 20-29 yards

sFieldGoalsMade30to39 integer

Number of FGM 30-39 yards

sFieldGoalsMade40to49 integer

Number of FGM 40-49 yards

sFieldGoalsMade50to59 integer

Number of Field Goals Made 50-59 yards

sFieldGoalsMade60Plus integer

Number of Field Goals Made 60+ yards

sFieldGoalsPercentage decimal

Calculated Field. Field goals percentage

$sFieldGoalsMade / $sFieldGoalsAttempted
sFirstDownPassing integer

number of times team gets a first down of a passing play

sFirstDownPenalty integer

number of times team gets a first down due to penalty

sFirstDownRushing integer

number of times team gets a first down off a rushing play

sFirstDownTotal integer

Calculated Field. Total number of first downs

$sFirstDownPassing + $sFirstDownRushing + $sFirstDownPenalty
sFormationFieldGoal integer

Number of plays where field goal was attempted

sFormationPunt integer

Plays in punt formation

sFormationShotgun integer

Plays in shotgun formation

sFormationUnderCenter integer

Plays under center

sFumbleReturnLongest integer

longest fumble return

sFumbleReturnTotal integer

number of fumble returns

sFumbleReturnTouchdowns integer

number of touchdowns score on fumble returns

sFumbleReturnYards integer

total fumble return yards

sFumbleReturnYardsAverage decimal

Calculated Field. Average yards per fumble return

$sFumbleReturnYards / $sFumbleReturnTotal
sFumblesForced integer

number of fumbles forced

sFumblesLost integer

total number of fumbles team lost when they committed the fumble

sFumblesRecovered integer

number of fumbles recovered

sFumblesTotal integer

total number of fumbles

sGoalEfficiencyAttempt integer

possessions with 1st and goal, same as calculating RedZone instead we ignore the Yards.

sGoalEfficiencyFieldGoal integer

possession ending in field goal once 1st and goal.

sGoalEfficiencyPercentage decimal

Calculated Field. possession with 1st and goal ending in TD or FG / total possession of 1st and goal.

($sGoalEfficiencyTouchdowns + $sGoalEfficiencyFieldGoal) / $sGoalEfficiencyAttempt
sGoalEfficiencyTouchdowns integer

possession ending in TD once 1st and goal.

sInterceptionsAverage decimal

Calculated Field. Average yards after interception

$sInterceptionsReturnYards / $sPassInterceptions
sInterceptionsReturnLongest integer

longest interception return

sInterceptionsReturnYards integer

total yards off interception returns

sInterceptionsTouchdowns integer

number of touchdowns scored off interception

sKickoffsGrossAverage decimal

Calculated Field. Average yards per kickoff

$sKickoffsGrossYards / $sKickoffsTotal
sKickoffsGrossYards integer

total gross kickoff yards

sKickoffsNetAverage decimal

Calculated Field. Net kickoff yards average

$sKickoffsNetYards / $sKickoffsTotal
sKickoffsNetYards integer

Net kickoff yards

sKickoffsOutOfBound integer

number of kickoffs out of bounds

sKickoffsReturned integer

number  of kickoffs returned

sKickoffsTotal integer

total number of kickoffs

sKickoffsTouchbacks integer

number of touchbacks

sKickOnSideAttempts integer

Number of on-side kicks attempted

sKickReturnsAverage decimal

Calculated Field. Average yards during kick return

$sKickReturnsYards / $sKickReturnsTotal
sKickReturnsLongest integer

Longest kick return

sKickReturnsTotal integer

total number of kick returns

sKickReturnsTouchdowns integer

Number of touchdowns scored on kick return

sKickReturnsYards integer

Net Kick return yards

sKicksBlocked integer

Calculated Field. number of kicks blocked

$sPuntsBlocked + $sFieldGoalsBlocked + $sPatBlockedKicks
sPuntsBlockedBy integer

sPuntsBlockedBy

sPatBlockedKicksBy integer

sPatBlockedKicksBy

sFieldGoalsBlockedBy integer

sFieldGoalsBlockedBy

sKicksBlockedBy integer

Calculated Field. sKicksBlockedBy

$sPuntsBlockedBy + $sFieldGoalsBlockedBy + $sPatBlockedKicksBy
sKicksOnSide integer

Number of on-side kicks successful

sKneelsDown integer

Quarterback kneels down

sLossesLeadingAtHalf integer

1 when lost when leading after first half

sWinsLeadingAtHalf integer

1 when won when leading after first half

sMoneyPlays integer

Number of plays where 1st down is earned or a touchdown scored

sLossesOvertime integer

1 if games lost in overtime.

sWinsOvertime integer

1 if games won in overtime.

sPassBreakUps integer

total number of pass break ups

sPassEfficiency decimal

Calculated Field. Pass Efficiency

((8.4 * sPassesYards) + (330 * sPassesTouchdowns) - (200 * sPassesIntercepted) + (100 * sPassesCompleted)) / sPasses
sPasses integer

total number of pass attempts

sPassesAverageYardsPerCompletion decimal

Calculated Field. Passing average yards per completion

sPassesYards/sPassesCompleted
sPassesCompleted integer

total number of pass completions

sPassesIntercepted integer

total number of pass interceptions

sPassesInterceptionPercentage decimal

Calculated Field. Passing interception percentage

sPassesIntercepted/sPasses
sPassesLeft integer

Number of pass left plays

sPassesLongest integer

longest pass completions

sPassesMiddle integer

Number of pass middle plays

sPassesPercentage decimal

Calculated Field. Passing percentage

$sPassesCompleted / $sPasses
sPassesRight integer

Number of pass right plays

sPassesSacked integer

total number of sacks

sPassesTouchDownPercentage decimal

Calculated Field. Passing touch down percentage

sPassesTouchdowns/sTouchdowns
sPassesTouchdowns integer

total number of passing touchdowns

sPassesYards integer

net total passing yards

sPassesYardsPerAttempt decimal

Calculated Field. Average yards per pass attempt

$sPassesYards / $sPasses
sPassesYardsPerCatch decimal

Calculated Field. Average yards per completed pass

$sPassesYards / $sPassesCompleted
sPassesYardsSacked integer

total yards loss due to being sacked

sPassIncompleteDropped integer

Player that dropped the ball after an incomplete pass.

sPassing0 integer

Number of plays with complete passes for 0 yards or more.

sPassing10 integer

Number of plays with complete passes for 10 yards or more.

sPassing20 integer

Number of plays with complete passes for 20 yards or more.

sPassing30 integer

Number of plays with complete passes for 30 yards or more.

sPassing40 integer

Number of plays with complete passes for 40 yards or more.

sPassing50 integer

Number of plays with complete passes for 50 yards or more.

sPassingNegative integer

Number of plays with complete passes for less than 0 yards.

sPassInterceptions integer

total number of interceptions

sPassQuarterbackHurries integer

number of quarterback hurries

sPatAttempts integer

Calculated Field. Total pat attempts

$sPatKicksAttempted + $sPatTwoPointsAttempt
sPatBlockedKicks integer

PAT kick is blocked

sPatFumbleReturnConversions integer

PAT snap is fumbled by the holder and recovered and returned by defense and scored for 2pt conversion

sPatFumbleReturns integer

PAT snap is fumbled by the holder and recovered and returned by defense

sPatInterceptionReturnConversions integer

PAT pass is intercepted by the defense and returned and scored for 2pt conversion

sPatInterceptionReturns integer

PAT pass is intercepted by the defense and returned

sPatKickReturnConversions integer

PAT is blocked and returned by defense and scored for 2pt conversion

sPatKickReturns integer

PAT is blocked and returned by defense

sPatKicksAttempted integer

number of extra point kicks attempted

sPatKicksMade integer

total number of PAT kicks made

sPatKicksPercentage decimal

Calculated Field. PAT situation kicks percentage

$sPatKicksMade / $sPatKicksAttempted
sPatMade integer

Calculated Field. Total pat made

$sPatKicksMade + $sPatTwoPointsMade
sPatPassAttempts integer

Pass attempts during PAT play

sPatPasses integer

total number of passes on PAT

sPatPercentage decimal

Calculated Field. Pat Percentage

$sPatMade / $sPatAttempts * 100
sPatReceives integer

total number of receptions on PAT

sPatRushAttempts integer

Rush attempts during PAT play

sPatRushes integer

total number of rushes on PAT

sPatSafetyConversions integer

PAT results in defense trying to return either fumble or interception or blocked kick out of own endzone but is tackled then back in own endzone for 1pt safety

sPatTwoPointsAttempt integer

Calculated Field. total number of 2 pt conversion attempts

$sPatPassAttempts + $sPatRushAttempts
sPatTwoPointsMade integer

Calculated Field. total number of 2 pt conversions made

$sPatPasses + $sPatRushes
sPenalty integer

total number of accepted penalties

sPenaltyYards integer

total number of penalty yards

sPlayLateral integer

Lateral plays

sPlaysAllPurposeTotal integer

Calculated Field. All-purpose running is the combined net yards gained by rushing, receiving, interception returns, punt returns, kickoff returns and runbacks of field goal attempts

$sRushingAttempts + $sReceptions + $sPassInterceptions + $sPuntReturns + $sKickReturnsTotal + $sFieldGoalReturns
sPlaysHuddle integer

Number of plays where team had huddle

sPlaysNoHuddle integer

Number of plays where team did not have huddle

sPlaysTotal integer

Calculated Field. Total number of offensive plays from scrimmage

$sRushingAttempts + $sPasses
sPoints integer

Total team points

sPointsFromTurnover integer

Points scored following opponents turnover due to fumble, interception or down

sPossessionTime decimal

Posession time

sPuntReturns integer

number of punt returns

sPuntReturns0 integer

Number of punt returns for 0 yards or more.

sPuntReturns10 integer

Number of punt returns for 10 yards or more.

sPuntReturns20 integer

Number of punt returns for 20 yards or more.

sPuntReturns30 integer

Number of punt returns for 30 yards or more.

sPuntReturns40 integer

Number of punt returns for 40 yards or more.

sPuntReturns50 integer

Number of punt returns for 50 yards or more.

sPuntReturnsAverage decimal

Calculated Field. Average yards per punt return

$sPuntReturnsYards / $sPuntReturns
sPuntReturnsLongest integer

longest punt return

sPuntReturnsTouchdown integer

number of touchdown scored on punt return

sPuntReturnsYards integer

net punt return yards

sPunts integer

total number of punts

sPunts50plus integer

number of punt distances 50 or more yards

sPuntsAverage decimal

Calculated Field. Average yards per punting

$sPuntsYards / $sPunts
sPuntsBlocked integer

number of punts blocked

sPuntsFairCatches integer

number of punts resulting in fair catch

sPuntsInside20 integer

number of punts recovered inside opponent 20 yard line

sPuntsLongest integer

longest punt

sPuntsNetAverage decimal

Calculated Field. Net put yards average

$sPuntsYardsNet / $sPunts
sPuntsTouchbacks integer

number of punts resulting in touchback

sPuntsYards integer

gross total of punt yards

sPuntsYardsNet integer

Net punts yards

sReceiving0 integer

Number of plays with complete passes for 0 yards or more.

sReceiving10 integer

Number of plays with complete passes for 10 yards or more.

sReceiving20 integer

Number of plays with complete passes for 20 yards or more.

sReceiving30 integer

Number of plays with complete passes for 30 yards or more.

sReceiving40 integer

Number of plays with complete passes for 40 yards or more.

sReceiving50 integer

Number of plays with complete passes for 50 yards or more.

sReceivingNegative integer

Number of plays with complete passes for less than 0 yards.

sReceptions integer

total number of receptions

sReceptionsAverage decimal

Calculated Field. Average receiving yards per reception

$sReceptionsYards / $sReceptions
sReceptionsLongest integer

longest pass reception

sReceptionsTouchdown integer

total number of receiving touchdowns

sReceptionsYards integer

total number of receiving yards

sReceptionsYardsAfterCatch integer

Total yards gained after point of reception to end of play

sRedZoneAttempts integer

number of possessions when team on offense has the ball inside their opponents 20 yard line

sRedZoneDowns integer

number of times in redzone where teams fails to convert on 4th down

sRedZoneFieldGoalAttempts integer

Number of field goal attempts in redzone

sRedZoneFieldGoalMade integer

Field goals made in the redzone

sRedZoneFumbleLost integer

number of fumbles lost on red zone possesions 

sRedZoneGameEnd integer

number of times in redzone where team doesn't score because clock in game runs out

sRedZoneHalfEnd integer

number of times in redzone where team doesn't score because clock in 1st half runs out

sRedZoneInterceptions integer

number of interceptions thrown on red zone possessions

sRedZoneMade integer

number of possessions when team on offense has the ball inside their opponents 20 yard line and they either score a touchdown or field goal on the possessions

sRedZonePassing integer

Passing red zone attempts - number of passing plays starting at or inside opponent 20

sRedZonePoints integer

Points scored from red zone, including points after touchdown

sRedZoneTouchdownsReceptions integer

number of touchdowns scored in redzone by reception

sRedZoneTouchdownsRushes integer

number of touchdowns scored in redzone by rushing

sRushing0 integer

Number of plays with rushing for 0 yards or more.

sRushing10 integer

Number of plays with rushing for 10 yards or more.

sRushing20 integer

Number of plays with rushing for 20 yards or more.

sRushing30 integer

Number of plays with rushing for 30 yards or more.

sRushing40 integer

Number of plays with rushing for 40 yards or more.

sRushing50 integer

Number of plays with rushing for 50 yards or more.

sRushingNegative integer

Number of plays with rushing for less than 0 yards.

sRushingAttempts integer

total number of rushing attempts

sRushingLeft integer

Number of rush left plays

sRushingLongest integer

longest rush from scrimmage

sRushingMiddle integer

Number of rush middle plays

sRushingNetYardsAverage decimal

Calculated Field. Average net yards per rush attempt

$sRushingYardsNet / $sRushingAttempts
sRushingRight integer

Number of rush right plays

sRushingTouchdowns integer

total number of touchdowns on rushing plays

sRushingYardsGain integer

Gross Positive Yards rushing

sRushingYardsLoss integer

Gross Negative Yards rushing

sRushingYardsNet integer

Calculated Field. Net total rushing yards

$sRushingYardsGain - $sRushingYardsLoss
sSacksAssisted integer

number of sacks involving 2 players

sSacksTotal decimal

number of sacks

sSacksUnassisted integer

number of solo sacks

sSacksYards decimal

number of yards lost due to sackes

sSafetiesOnePoint integer

number of safeties one point

sSafetiesTwoPoints integer

number of safeties two points

sScrambles integer

Quarterback scrambles

sTacklesAssisted integer

number of tackles involving 2 players

sTacklesForcedFumble integer

number of tackles on forced fumbles

sTacklesForLossAssisted integer

number of assisted tackle for loss

sTacklesForLossSolo integer

number of solo tackle for loss 

sTacklesForLossTotal decimal

total number of tackles behind line of scrimmage

sTacklesFumble integer

number of tackles on fumble plays

sTacklesInterception integer

total number of tackles after interception is thrown

sTacklesKickoff integer

total number of tackles when team is kicking off

sTacklesKickoffReturn integer

number of tackles on kickoff returns

sTacklesPassing integer

number of tackles on passing plays

sTacklesPunt integer

total number of tackles when team is punting

sTacklesPuntReturn integer

number of tackles on punt return

sTacklesRushing integer

number of tackles on rushing plays

sTacklesSolo integer

number of solo tackles

sTacklesTotal integer

Calculated Field. total number of tackles

$sTacklesSolo + $sTacklesAssisted
sTacklesYards decimal

Tackle for loss yards

sTakeaways integer

Takeaways

sTeamFieldGoalAttemptLongest integer

Longest field goal attempt awarded to team

sTeamFieldGoalAttempts integer

Field goal attempts awarded to team

sTeamFieldGoalAttempts1to19 integer

Field goal attempts between 1 and 19 yards awarded to team

sTeamFieldGoalAttempts20to29 integer

Field goal attempts between 20 and 29 yards awarded to team

sTeamFieldGoalAttempts30to39 integer

Field goal attempts between 30 and 39 yards awarded to team

sTeamFieldGoalAttempts40to49 integer

Field goal attempts between 40 and 49 yards awarded to team

sTeamFieldGoalAttempts50to59 integer

Field goal attempts between 50 and 59 yards awarded to team

sTeamFieldGoalAttempts60Plus integer

Field goal attempts longer than 60 awarded to team

sTeamFieldGoalsBlocked integer

Blocked field goals awarded to team

sTeamFumbles integer

Number of team fumbles

sTeamFumblesLost integer

Number of team fumbles

sTeamKickReturns integer

Number of tean kickoff returns

sTeamKickReturnsYards integer

Net team kickoff return yards

sTeamPasses integer

Number of team pass attempts

sTeamPassYardsLoss integer

Passing yards loss due to spike

sTeamPlaysTotal integer

Calculated Field. Number of team offensive plays from scrimmage

$sTeamPasses + $sTeamRushingAttempts
sTeamPoints integer

Points scored awarded to team as individual

sTeamPuntReturns integer

Number of team punt returns

sTeamPuntReturnsYards integer

Net team punt return yards

sTeamPunts integer

Number team of punts

sTeamPuntsBlocked integer

Number of team punts blocked

sTeamPuntsYards integer

Gross total of team punt yards

sTeamRushingAttempts integer

number of team rushing attempts

sTeamRushingYardsLoss integer

Team gross negative yards rushing

sTeamRushingYardsNet integer

Calculated Field. Net total team rushing yards

0 - $sTeamRushingYardsLoss
sTeamSafetiesTwoPoints integer

Two point safeties scored by team

sTeamYardsOffensiveTotal integer

Calculated Field. Team net rushing yards + team net receiving yards

$sTeamRushingYardsNet - $sTeamPassYardsLoss
sTouchdowns integer

number of touchdowns scored (the total number of all tds from all categories ex. Passing)

sTurnovers integer

Calculated Field. Total number of times team lost possession due to fumble, interception, or downs

$sPassesIntercepted + $sFumblesLost
sWinsby7PointsOrLess integer

1 when whon when score difference is <7.

sYardsAllPurposeTotal integer

Calculated Field. Total number of yards consisting of rushing yards + receiving yards + return yards

$sRushingYardsNet + $sReceptionsYards + $sKickReturnsYards + $sInterceptionsReturnYards + $sPuntReturnsYards + $sTeamRushingYardsNet
sYardsMiscellaneous integer

Total mic yards due to referee misplaced ball

sYardsOffensiveTotal integer

Calculated Field. Net rushing yards + net receiving yards

$sRushingYardsNet + $sPassesYards
sYardsPerPlayAverage decimal

Calculated Field. Average of total offensive yards per play

$sYardsOffensiveTotal / $sPlaysTotal

Example

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

action

This message type contains an individual game action
type enum

The type of the message

action
messageId integer

Unique identifier of the message being sent

actionNumber integer

Unique sequence number for this action

teamNumber integer

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

pno integer

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

clock string

The time on the clock when this action occurred.

Format is: MM:SS:CC
timeActual datetime

The date/time when this action occurred in UTC.

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

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

periodType enum

The type of period

REGULAR
(Default)
OVERTIME
actionType string(20)

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

success enum

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

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

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

qualifiers array

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

value string(1000)

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

previousAction integer

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

officialId integer

The unique identifier for the official calling the action

x float

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

y float

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

area string

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

side enum

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

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

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

score2 string

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

players associativearray

team1 array

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

team2 array

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

edited datetime

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

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

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

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

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

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

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

sendDelay float

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

completionDelay float

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

underReview enum

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

0
No (Default)
1
Yes
orderNumber integer

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

drive integer

Drive number

yardline object

Current yardline

teamNumber integer

yardline integer

play integer

Play number

playOverall integer

Play number overal in a game

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
text string

Play summary text.

Example

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

playbyplay

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

The type of the message

playbyplay
actions array

Array of play by play actions, sorted ascending

actionNumber integer

Unique sequence number for this action

teamNumber integer

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

pno integer

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

clock string

The time on the clock when this action occurred.

Format is: MM:SS:CC
timeActual datetime

The date/time when this action occurred in UTC.

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

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

periodType enum

The type of period

REGULAR
(Default)
OVERTIME
actionType string(20)

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

success enum

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

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

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

qualifiers array

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

value string(1000)

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

previousAction integer

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

officialId integer

The unique identifier for the official calling the action

x float

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

y float

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

area string

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

side enum

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

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

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

score2 string

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

players associativearray

team1 array

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

team2 array

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

edited datetime

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

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

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

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

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

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

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

sendDelay float

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

completionDelay float

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

underReview enum

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

0
No (Default)
1
Yes
orderNumber integer

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

drive integer

Drive number

yardline object

Current yardline

teamNumber integer

yardline integer

play integer

Play number

playOverall integer

Play number overal in a game

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
text string

Play summary text.

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]
        }
    }]
}

drive summary

This message type contains summary information about individual drive state
type enum

The type of the message

drivesummary
messageId integer

Unique identifier of the message being sent

driveNumber integer

Unique sequence number for this drive

teamNumber

The number of the team in the match that is in possesion when the drive starts, 1 or 2.

1
2
top string

Time spent during the particular drive

Format is: MM:SS
yards integer

Yards won/lost during the particular drive

plays integer

How many plays made during the particular drive

isHomeTeam integer

Whether the team has started the drive is Home or Visitor

1
Yes
0
No (Default)
startType enum

How the particular drive started

KICKOFF
PUNT
INTERCEPTION
FUMBLE
DOWNS
UNKNOWN
startQuarter integer

During which quarter the drive started

startTime string

Time of the start of the drive

Format is: MM:SS
startLine integer

The yard line where the drive started

startSideTeamId string

The team ID on which field side the drive stopped

stopType enum

How the particular drive ended

TOUCHDOWN
FIELDGOAL
SAFETY
PUNT
INTERCEPTION
FUMBLE
ENDOFHALF
DOWNS
UNKNOWN
stopQuarter integer

During which quarter the drive ended

stopTime string

Time of the end of the drive

Format is: MM:SS
stopLine integer

The yard line where the drive ended

stopSideTeamId string

The team ID on which field side the drive stopped

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
  • confirmed
 
period      
  start    
  end
  • confirmed
 
cointoss (empty) Applies to all subTypes:
  • looserchoice
    • kickoff
    • receive
    • endzone
  • nullified
  • winnerchoice
    • kickoff
    • receive
    • endzone
    • winnerteam
  •  
overtime Applies to overtime subType:
  • defense
  • offense
secondhalf
startofgame Applies to startofgame subType:
  • defer
drive Applies to all subTypes:
  • drivetime
  • nullified
  • redzone
  • redzonedown
  • redzonefieldgoalmissed
  • redzonefumblelost
  • redzonegameend
  • redzonehalfend
  • redzoneinterception
  • redzonelostbydowns
  • status
    • started
    • ended
  • timeofpossession
  •  
  • drivetime: Drive time
  • timeofpossession: Time of possession
endofplay (empty) Applies to all subTypes:
  • nullified
  •  
extrapoint (empty) Applies to all subTypes:
  • nullified
  • pointsafterturnover
  • redzone
  •  
blocked Applies to blocked subType:
  • blockedby
nullifiedbypenalty
fieldgoal (empty) Applies to all subTypes:
  • firstandgoal
  • nullified
  • pointsafterturnover
  • redzone
  • yards
  •  
  • yards: Exact field goal yards
blocked Applies to blocked subType:
  • blockedby
nullifiedbypenalty
teamblocked
fumble (empty) Applies to all subTypes:
  • forcedby
  • nullified
  •  
lost Applies to lost subType:
  • recoveredafterlossby
recovered Applies to recovered subType:
  • recoveredby
team Applies to team subType:
  • loss
kickoff (empty) Applies to all subTypes:
  • grossyards
  • kickoffonside
  • kickoffonsideattempt
  • netyards
  • nullified
  •  
  • grossyards: Gross kickoff yards (actual kickoff distance)
  • netyards: Net Kickoff Yards (with Fair Catch and Touchback yards pre-applied)
faircatch
muffed
outofbounds Applies to outofbounds subType:
  • 5yardandrekick
  • 5yardfromoutofbounds
  • takeatthespot
return Applies to return subType:
  • muffed
touchback
outofbounds (empty) Applies to all subTypes:
  • nullified
  •  
kickoff Applies to kickoff subType:
  • penalty
  • penaltyyards
pass (empty) Applies to all subTypes:
  • left
  • middle
  • nullified
  • passbreakupby
  • pat
  • patconverted
  • quarterbackhurriedby
  • quarterbackhurriedbysecondary
  • redzone
  • right
  • target
  • touchdown
  • yards
  •  
  • passbreakupby: Player who broke up pass
  • quarterbackhurriedby: Player who hurried QB
  • quarterbackhurriedbysecondary: Second Player who hurried QB
  • yards: Pass yards
completed
incompleted Applies to incompleted subType:
  • dropped
intercepted Applies to intercepted subType:
  • interceptedby
sacked Applies to sacked subType:
  • fumble
  • rushingyards
spike
penalty (empty) Applies to all subTypes:
  • enforcementspot
    • succeeding
    • previous
    • spotofthefoul
    • deadball
  • nullified
  • reason
    • offside
    • delayofgame
    • illegalforwardpass
    • passinterference
    • holding
    • encroachment
    • falsestart
    • ineligibledownfieldonpass
    • illegalformation
    • illegalmotion
    • illegalsubstitution
    • illegalshift
    • illegalsnap
    • runningintoholder
    • runningintothekicker
    • returnfromoutofbounds
    • intentionalgrounding
    • illegalbat
    • illegalblockinback
    • blockbelowwaist
    • chopblock
    • clipping
    • fighting
    • facemask
    • illegalblockafterfcsignal
    • illegalwedge
    • tripping
    • unnecessaryroughness
    • unsportsmanlikeconduct
    • illegaluseofhands
    • personalfoul
    • horsecollartackle
    • disconcertingsignals
    • blockingoutofbounds
    • equipmentviolation
    • hurdling
    • illegalcontactwithsnapper
    • illegaltouchofkick
    • illegaltouchpass
    • leaping
    • leverage
    • roughingholder
    • roughingthepasser
    • roughingthekicker
    • targeting
    • kickcatchinterference
  •  
  • reason: Penalty reason
accepted Applies to accepted subType:
  • penaltyyards
declined
  • yardLine
offset
play Applies to all subTypes:
  • conversion
    • 0
    • 1
  • conversionattempt
    • 0
    • 1
  • down
    • first
    • second
    • third
    • fourth
  • firstdown
    • rushing
    • passing
    • penalty
    • rushingandpenalty
    • passingandpenalty
  • lateralplay
  • nullified
  • opponenttimeofpossession
  • redzonedown
  • scored
  • status
    • started
    • ended
  • timeofpossession
  • togo
  • type
    • snap
    • kickoff
    • pat
  • yardLine
  •  
  • opponenttimeofpossession: Time of possession for opponent team in case of first kickoff in game
  • timeofpossession: Time of possession for team in case of kickoff
  • togo: how many yards to the first down
  • yardLine: line of scrimmage
punt (empty) Applies to all subTypes:
  • grossyards
  • insidetwenty
  • netyards
  • nullified
  •  
  • grossyards: Gross punt yards (actual kickoff distance)
  • netyards: Net punt yards (with Fair Catch and Touchback yards pre-applied)
blocked Applies to blocked subType:
  • blockedby
downed
faircatch
muffed
outofbounds
return
teamblocked
touchback
reception (empty) Applies to all subTypes:
  • afterlateral
  • afterrecovery
  • nullified
  • reception
  • receptionyards
  • yardsaftercatch
  •  
  • receptionyards: Reception distance in yards
  • yardsaftercatch: Yards gained after pass was caught
recovery
fumble Applies to fumble subType:
  • lostby
return Applies to all subTypes:
  • afterlateral
  • afterrecovery
  • attempt
  • nullified
  • pat
  • yards
  •  
  • yards: Return yards
fieldgoal
fumble
interception
kickoff
punt
teamkickoff
teampunt
rush (empty) Applies to all subTypes:
  • afterlateral
  • afterrecovery
  • attempt
  • left
  • middle
  • nullified
  • pat
  • right
  • yardsgained
  • yardslost
  •  
  • yardsgained: Yards gained by rushing
  • yardslost: Yards lost by rushing
quarterbackkneel
quarterbackscramble
sack (empty) Applies to all subTypes:
  • nullified
  • quarterback
  • sackyards
  •  
  • quarterback: player number of opposing team's quarterback who will get negative rushing yards
  • sackyards: Yards lost due to sack
assisted Applies to assisted subType:
  • assistedby
  • assistedsackyards
unassisted Applies to unassisted subType:
  • fumble
timeout (empty)
other
team
safety (empty) Applies to all subTypes:
  • nullified
  • pointsafterturnover
  •  
nullifiedbypenalty
onepoint Applies to onepoint subType:
  • defensive
teamtwopoint
twopoint
snap (empty) Applies to all subTypes:
  • ballsnapped
  • huddle
  • miscfumble
  • nohuddle
  • nullified
  •  
fieldgoal
punt
shotgun
undercenter
tackle (empty) Applies to all subTypes:
  • assistedby
  • forcedfumble
  • fumble
  • interception
  • kickoff
  • kickoffreturn
  • nullified
  • pass
  • punt
  • puntreturn
  • rush
  • tackleforlossyards
  •  
  • assistedby: Tackle assisted by player
  • tackleforlossyards: Tackle for loss distance in yards
assisted
assistedtackleforloss Applies to assistedtackleforloss subType:
  • assistedtackleforlossyards
unassisted
unassistedtackleforloss
touchdown (empty) Applies to all subTypes:
  • firstandgoal
  • fumblereturn
  • interception
  • kickreturn
  • nullified
  • pointsafterturnover
  • puntreturn
  • reception
  • redzonereception
  • redzonerush
  • rush
  •  
nullifiedbypenalty
twopointconversion (empty) Applies to all subTypes:
  • nullified
  • pointsafterturnover
  • reception
  • redzone
  • rushing
  •  
defensiveconversion Applies to defensiveconversion subType:
  • fumbleconversion
  • interceptionconversion
  • kickconversion
nullifiedbypenalty
participated (empty) Applies to all subTypes:
  • players
  • players: comma-separated list of player numbers

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
  • 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      
  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.
clock      
  start    
  stop    
  adjustment   The number of seconds adjustment should be passed in the value field. Negative values are allowed
risk (empty)
  • goal
  • cardyellow
  • var
  • cardred
  • penalty