tv.dinger.favorites

dinger.tv

Documentation

Public favorite players and teams saved by a signed-in dinger.tv user.

main record

Public favorite players and teams saved by a signed-in dinger.tv user.

Record Key literal:self Fixed literal value

Properties

favoritePlayers array of unknown Required

Specific MLB players the user wants to follow.

maxLength: 50 items
favoriteTeams array of unknown Required

MLB teams the user wants to follow.

maxLength: 10 items
schemaVersion integer Required

Record schema version for forward-compatible consumers.

updatedAt string datetime Required

When this record was last updated.

View raw schema
{
  "key": "literal:self",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "favoritePlayers",
      "favoriteTeams",
      "schemaVersion",
      "updatedAt"
    ],
    "properties": {
      "updatedAt": {
        "type": "string",
        "format": "datetime",
        "description": "When this record was last updated."
      },
      "favoriteTeams": {
        "type": "array",
        "items": {
          "ref": "#team"
        },
        "maxLength": 10,
        "description": "MLB teams the user wants to follow."
      },
      "schemaVersion": {
        "type": "integer",
        "const": 1,
        "description": "Record schema version for forward-compatible consumers."
      },
      "favoritePlayers": {
        "type": "array",
        "items": {
          "ref": "#player"
        },
        "maxLength": 50,
        "description": "Specific MLB players the user wants to follow."
      }
    }
  },
  "description": "Public favorite players and teams saved by a signed-in dinger.tv user."
}
player object

A single favorite MLB player.

Properties

fullName string Required

No description available.

maxLength: 128 bytes
id integer Required

No description available.

minimum: 1
primaryPosition string Optional

No description available.

maxLength: 24 bytes
teamAbbreviation string Optional

No description available.

maxLength: 8 bytes
teamName string Optional

No description available.

maxLength: 64 bytes
View raw schema
{
  "type": "object",
  "required": [
    "fullName",
    "id"
  ],
  "properties": {
    "id": {
      "type": "integer",
      "minimum": 1
    },
    "fullName": {
      "type": "string",
      "maxLength": 128
    },
    "teamName": {
      "type": "string",
      "maxLength": 64
    },
    "primaryPosition": {
      "type": "string",
      "maxLength": 24
    },
    "teamAbbreviation": {
      "type": "string",
      "maxLength": 8
    }
  },
  "description": "A single favorite MLB player."
}
team object

A single favorite MLB team.

Properties

abbreviation string Required

No description available.

maxLength: 8 bytes
id integer Required

No description available.

minimum: 1
name string Required

No description available.

maxLength: 64 bytes
View raw schema
{
  "type": "object",
  "required": [
    "abbreviation",
    "id",
    "name"
  ],
  "properties": {
    "id": {
      "type": "integer",
      "minimum": 1
    },
    "name": {
      "type": "string",
      "maxLength": 64
    },
    "abbreviation": {
      "type": "string",
      "maxLength": 8
    }
  },
  "description": "A single favorite MLB team."
}

Lexicon Garden

@