{ "$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" } } }