The Rundown · Schema

Pitcher

SportsBettingOddsNFLNBAMLBNHLSoccerReal-TimeSports DataSportsbook

Properties

Name Type Description
id integer
name string
throws_left_handed boolean
throws_right_handed boolean
bats_left_handed boolean
bats_right_handed boolean
View JSON Schema on GitHub

JSON Schema

therundown-pitcher-schema.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://therundown.io/schemas/Pitcher",
  "title": "Pitcher",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer"
    },
    "name": {
      "type": "string"
    },
    "throws_left_handed": {
      "type": "boolean",
      "nullable": true
    },
    "throws_right_handed": {
      "type": "boolean",
      "nullable": true
    },
    "bats_left_handed": {
      "type": "boolean",
      "nullable": true
    },
    "bats_right_handed": {
      "type": "boolean",
      "nullable": true
    }
  }
}