The Rundown · Schema

ChartSeries

SportsBettingOddsNFLNBAMLBNHLSoccerReal-TimeSports DataSportsbook

Properties

Name Type Description
affiliate_name string
data array
View JSON Schema on GitHub

JSON Schema

therundown-chartseries-schema.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://therundown.io/schemas/ChartSeries",
  "title": "ChartSeries",
  "type": "object",
  "properties": {
    "affiliate_name": {
      "type": "string"
    },
    "data": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "t": {
            "type": "string",
            "format": "date-time",
            "description": "Timestamp"
          },
          "p": {
            "type": "string",
            "description": "Price"
          },
          "c": {
            "type": "string",
            "format": "date-time",
            "nullable": true,
            "description": "Closed at timestamp"
          }
        }
      }
    }
  }
}