For the complete documentation index, see llms.txt. This page is also available as Markdown.

Rules

Represents the rules of the fixture

Attributes

Name
Type
Description

ExtraTime

boolean

If the match will go into extra time if 0-0 at full time

PeriodLength

string

The length of each half

ExtraTimeLength

string

The length of extra time

PenaltyShootout

boolean

If the match will go into a penalty shootout to determine the winner

PenaltyShootoutType

string

Format of shootout. Possible values - null, ABBA or ABAB

Response JSON
"rules": [
   {
     "rule": "ExtraTime",
     "value": "true"
   },
   {
     "rule": "PeriodLength",
     "value": "45"
   },
   {
     "rule": "ExtraTimeLength",
     "value": "null"
   },
   {
     "rule": "PenaltyShootout",
     "value": "false"
   },
   {
     "rule": "PenaltyShootoutType",
     "value": "null"
   }
 ]
}

Last updated

Was this helpful?