The Rundown · Schema

DeltasResponse

SportsBettingOddsNFLNBAMLBNHLSoccerReal-TimeSports DataSportsbook

Properties

Name Type Description
meta object
deltas array
View JSON Schema on GitHub

JSON Schema

therundown-deltasresponse-schema.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://therundown.io/schemas/DeltasResponse",
  "title": "DeltasResponse",
  "type": "object",
  "properties": {
    "meta": {
      "$ref": "#/components/schemas/Meta"
    },
    "deltas": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "data": {
            "type": "string",
            "description": "Raw JSON string of the delta payload"
          }
        }
      }
    }
  }
}