tv.dinger.favorites

dinger.tv

{
  "id": "tv.dinger.favorites",
  "defs": {
    "main": {
      "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."
    },
    "team": {
      "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."
    },
    "player": {
      "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."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "description": "A public singleton record containing a viewer's favorite MLB players and teams for dinger.tv and compatible AT Protocol apps."
}

Validate Record

Validate a record against tv.dinger.favorites

Validation Options
Treat any remaining unresolved references as valid

Metadata

DID
did:plc:wos76ilw75ikf2bquxqvt3lm
CID
bafyreif7nf3xltaekb464am5sgllwlg5djqorjdhvvm2ppcpppb5awo374
Indexed At
2026-04-09 00:52 UTC
AT-URI
at://did:plc:wos76ilw75ikf2bquxqvt3lm/com.atproto.lexicon.schema/tv.dinger.favorites

Lexicon Garden

@