The Rundown · Schema

MarketParticipantResponse

SportsBettingOddsNFLNBAMLBNHLSoccerReal-TimeSports DataSportsbook

Properties

Name Type Description
id integer Participant ID
type string
name string
lines array
View JSON Schema on GitHub

JSON Schema

therundown-marketparticipantresponse-schema.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://therundown.io/schemas/MarketParticipantResponse",
  "title": "MarketParticipantResponse",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "description": "Participant ID"
    },
    "type": {
      "type": "string",
      "enum": [
        "TYPE_TEAM",
        "TYPE_PLAYER",
        "TYPE_RESULT"
      ]
    },
    "name": {
      "type": "string",
      "example": "New England Patriots"
    },
    "lines": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/MarketLinesResponse"
      }
    }
  }
}