The Rundown · Schema

StatDefinition

SportsBettingOddsNFLNBAMLBNHLSoccerReal-TimeSports DataSportsbook

Properties

Name Type Description
id integer
name string
category string
display_name string
abbreviation string
description string
sport_id integer
View JSON Schema on GitHub

JSON Schema

therundown-statdefinition-schema.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://therundown.io/schemas/StatDefinition",
  "title": "StatDefinition",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "nullable": true
    },
    "name": {
      "type": "string"
    },
    "category": {
      "type": "string"
    },
    "display_name": {
      "type": "string"
    },
    "abbreviation": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "sport_id": {
      "type": "integer"
    }
  }
}