 

The livestream read APIs are long running HTTP GET calls. They are designed to be used to receive 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.
All data provided to these API functions is required to be in UTF-8 format.
All responses will be provided as UTF-8 strings.
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.
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.
| type enum | The type of the message 
 | ||||||||||||||||||||||||||||||
| instance string(100) | This unique identifier of the controlling instance for this match. | ||||||||||||||||||||||||||||||
| status enum | This status of the connection to the capture device 
 | ||||||||||||||||||||||||||||||
| latency associativearray | Latency information about this connection. Only provided if the latency=1 query parameter is set. | ||||||||||||||||||||||||||||||
| 
 | |||||||||||||||||||||||||||||||
{
  "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
      }
  }
}
| type enum | The type of the message 
 | ||||||
| status enum | The status of the match. 
 | ||||||
| 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. | ||||||
| 
 | |||||||
| periodStatus enum | The status of the period. 
 | ||||||
| clock string | The current time on the clock. Format is: MM:SS:CC | ||||||
| shotClock string | The current time on the shot clock. Format is: MM:SS:CC | ||||||
| clockRunning enum | Is the clock running? 
 | ||||||
| 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 | ||||||
| 
 | |||||||
{
    "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
    }]
}
| type enum | The type of the message 
 | ||||||||
| messageId integer | Unique identifier of the message being sent | ||||||||
| periods associativearray | |||||||||
| 
 | |||||||||
| courtType enum | Court type of the match. 
 | ||||||||
| timeouts associativearray | |||||||||
| 
 | |||||||||
| foulsPersonal integer | The number of personal fouls allowed. | ||||||||
| foulsTechnical integer | The number of technical fouls allowed. | ||||||||
| foulsBeforeBonus integer | The number of fouls allowed before a bonus is given. | ||||||||
| foulsBeforeDoubleBonus integer | The number of fouls allowed before a double bonus is given. | ||||||||
| foulsBeforeTechnical integer | The number of fouls allowed before a technical foul is given. | ||||||||
| winningScore integer | The score that a team must reach within regulation time to win. | ||||||||
| customEfficiencyFormula string | 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 check the team match statistics. Example:  (sPoints + sAssists + sBlocks + sSteals + sFoulsOn + sReboundsTotal) - (sTurnovers + sBlocksReceived + sFoulsPersonal + sFoulsTechnical + (sTwoPointersAttempted - sTwoPointersMade) + (sOnePointersAttempted - sOnePointersMade)) | ||||||||
{
    "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
}
| type enum | The type of the message 
 | ||||||||||||||||||||||||||||||||||||||||
| competition associativearray | |||||||||||||||||||||||||||||||||||||||||
| 
 | |||||||||||||||||||||||||||||||||||||||||
| venue associativearray | |||||||||||||||||||||||||||||||||||||||||
| 
 | |||||||||||||||||||||||||||||||||||||||||
| league associativearray | |||||||||||||||||||||||||||||||||||||||||
| 
 | |||||||||||||||||||||||||||||||||||||||||
| match associativearray | |||||||||||||||||||||||||||||||||||||||||
| 
 | |||||||||||||||||||||||||||||||||||||||||
| pool associativearray | |||||||||||||||||||||||||||||||||||||||||
| 
 | |||||||||||||||||||||||||||||||||||||||||
{
    "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"
}
| type enum | The type of the message 
 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| messageId integer | Unique identifier of the message being sent | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| teams array | An array of team records | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| 
 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
{
    "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"
}
| type enum | The type of the message 
 | ||||||||||||
| messageId integer | Unique identifier of the message being sent | ||||||||||||
| commissioner associativearray | DEPRECATED. Use matchOfficials property instead | ||||||||||||
| 
 | |||||||||||||
| referee1 associativearray | DEPRECATED. Use matchOfficials property instead | ||||||||||||
| 
 | |||||||||||||
| referee2 associativearray | DEPRECATED. Use matchOfficials property instead | ||||||||||||
| 
 | |||||||||||||
| referee3 associativearray | DEPRECATED. Use matchOfficials property instead | ||||||||||||
| 
 | |||||||||||||
| technicaldelegate associativearray | DEPRECATED. Use matchOfficials property instead | ||||||||||||
| 
 | |||||||||||||
| statisticians array | An array of statisticians | ||||||||||||
| 
 | |||||||||||||
| matchOfficials array | A list of match officials | ||||||||||||
| 
 | |||||||||||||
{
    "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"
}
| type enum | The type of the message 
 | ||||
| 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 | ||||
| shotClock string | The time on the shot 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 
 | ||||
| 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. 
 | ||||
| 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. 
 | ||||
| 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 | |||||
| 
 | |||||
| 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. 
 | ||||
| orderNumber integer | Unique number identifiying the order of the action in the game. This number may not be sequential but will be unique. Sorting by this number will give the order of actions (and will account for edits and insertions). | ||||
| possible enum | Optional field. May be added to indicate the action is not confirmed yet and do not affect any statistics. Require permission to retrieve possible actions. 
 | ||||
{
    "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"
}
| type enum | The type of the message 
 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| actions array | Array of play by play actions, sorted ascending | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| 
 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
{
    "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]
        }
    }]
}
| type enum | The type of the message 
 | 
| 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 
 | 
| attendance integer | The number of people who attended the match | 
{
    "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"
}
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.
| type | subType | qualifiers | |
|---|---|---|---|
| game | |||
| start | |||
| end | 
 | ||
| period | |||
| start | |||
| end | 
 | ||
| comment | Comment text should be passed in the value field | ||
| toss | |||
| won | |||
| lost | |||
| 1pt | Applies to all 1pt subTypes: 
 | ||
| (blank) | |||
| dunk | |||
| layup | |||
| fadeaway | |||
| tipin | |||
| jumpshot | |||
| alleyoop | |||
| 2pt | Applies to all 2pt subTypes: 
 | ||
| freethrow | Applies to all freethrow subTypes: 
 | ||
| 1of1 | |||
| 1of2 | |||
| 2of2 | |||
| jumpball | |||
| (blank) | |||
| unclearpass | |||
| lodgedball | |||
| heldball | |||
| doubleviolation | |||
| won | |||
| lost | |||
| assist | |||
| block | |||
| rebound | Applies to all subTypes: 
 | ||
| defensive | |||
| offensive | |||
| foul | Applies to all foul subTypes: 
 | ||
| offensive | Applies to offensive subType: 
 | ||
| personal | Applies to all personal foul subType: 
 | ||
| technical | Applies to technical subType: 
 | ||
| unsportsmanlike | |||
| disqualifying | |||
| foulon | |||
| timeout | |||
| full | |||
| officials | Applies to official subType: 
 | ||
| steal | |||
| turnover | Applies to turnover subTypes: 
 | ||
| (blank) | |||
| offensivegoaltending | |||
| ballhandling | |||
| badpass | |||
| outofbounds | |||
| travel | |||
| shotclock | |||
| offensive | |||
| 3sec | |||
| 5sec | |||
| substitution | |||
| in | |||
| out | |||
| bulksubstitution | Applies to all subTypes: 
 | 
 | |
| in | |||
| out | |||
| clock | (At some point in the future the clock messages will be made administrative only) | ||
| start | |||
| stop | |||
| adjustment | 
 | The number of seconds adjustment should be passed in the value field. Negative values are allowed | |
| participated | Applies to all subTypes: 
 | 
 | 
| type | subType | qualifiers | |
|---|---|---|---|
| status | Indicates a change in the status of the match | ||
| delayed | 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 | 
 | 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 | ||
| shotclock | |||
| adjustment | 
 | The number of seconds adjustment should be passed in the value field. Negative values are allowed | |
| possessionchange | |||
| possessionarrowchange | |||
| 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. | ||
| risk | (empty) | 
 | 
area, x, y and side are defined based upon the diagram below.
x and y are defined as percentage measurments of the total width and height of the 3x3 basketball court.  The origin (0,0) is the bottom left corner of the image meaning the top right point is (100,100).
Example:
A FIBA Standard Basketball Court length is 11m and the 2pt line is at 6.75m
Therefore the x coordinate of the 2pt line = 6.75/11 * 100  = 61.36
area is defined by which of the defined boxes the player was in when the action occurred.
The value of area in reference to the diagram are as follows:
| Number on diagram | Value | 
|---|---|
| 1 | underbasket | 
| 2 | inthepaint | 
| 3 | insiderightwing | 
| 4 | insideright | 
| 5 | insidecenter | 
| 6 | insideleft | 
| 7 | insideleftwing | 
| 8 | outsiderightwing | 
| 9 | outsideright | 
| 10 | outsidecenter | 
| 11 | outsideleft | 
| 12 | outsideleftwing | 
| 13 | backcourt |