The Rundown · Schema

MarketResponse

Market with participants and prices for a specific event

SportsBettingOddsNFLNBAMLBNHLSoccerReal-TimeSports DataSportsbook

Properties

Name Type Description
id integer
market_id integer
period_id integer
name string
market_description string
participants array
View JSON Schema on GitHub

JSON Schema

therundown-marketresponse-schema.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://therundown.io/schemas/MarketResponse",
  "title": "MarketResponse",
  "type": "object",
  "description": "Market with participants and prices for a specific event",
  "properties": {
    "id": {
      "type": "integer",
      "format": "int64"
    },
    "market_id": {
      "type": "integer",
      "example": 1
    },
    "period_id": {
      "type": "integer"
    },
    "name": {
      "type": "string",
      "example": "Money Line"
    },
    "market_description": {
      "type": "string"
    },
    "participants": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/MarketParticipantResponse"
      }
    }
  }
}