Properties
| Name | Type | Description |
|---|---|---|
| line_id | integer | |
| moneyline | object | |
| spread | object | |
| total | object | |
| affiliate | object | |
| teams | array | |
| period_id | integer | |
| period_description | string |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://therundown.io/schemas/V1Line",
"title": "V1Line",
"type": "object",
"properties": {
"line_id": {
"type": "integer"
},
"moneyline": {
"$ref": "#/components/schemas/V1Moneyline"
},
"spread": {
"$ref": "#/components/schemas/V1Spread"
},
"total": {
"$ref": "#/components/schemas/V1Total"
},
"affiliate": {
"$ref": "#/components/schemas/Affiliate"
},
"teams": {
"type": "array",
"items": {
"type": "object",
"properties": {
"team_id": {
"type": "integer"
},
"team_normalized_id": {
"type": "integer"
},
"name": {
"type": "string"
},
"is_home": {
"type": "boolean"
},
"is_away": {
"type": "boolean"
}
}
}
},
"period_id": {
"type": "integer"
},
"period_description": {
"type": "string"
}
}
}