@echecs/swiss - v5.0.0
    Preparing search index...

    Interface Player

    A tournament participant.

    interface Player {
        birthDate?: string;
        federation?: string;
        fideId?: string;
        id: string;
        name?: string;
        nationalRatings?: NationalRating[];
        points: number;
        rank: number;
        rating?: number;
        sex?: "m" | "w";
        startingRank?: number;
        title?: "CM" | "FM" | "GM" | "IM" | "WCM" | "WFM" | "WGM" | "WIM";
    }
    Index

    Properties

    birthDate?: string
    federation?: string
    fideId?: string
    id: string

    Unique identifier for the player.

    name?: string
    nationalRatings?: NationalRating[]
    points: number

    Cumulative score across all recorded games.

    rank: number

    1-based rank.

    rating?: number

    Optional Elo rating.

    sex?: "m" | "w"
    startingRank?: number
    title?: "CM" | "FM" | "GM" | "IM" | "WCM" | "WFM" | "WGM" | "WIM"