Vairified TypeScript SDK - v0.3.1
    Preparing search index...

    Interface MatchBatch

    Compressed bulk match submission.

    Top-level fields are defaults applied to every match in the matches list. Any match can override any field. sport, winScore, and winBy are required at the batch level — partners must tell the rater which sport the matches are in and what the winning conditions were so scores can be interpreted correctly.

    interface MatchBatch {
        sport: string;
        winScore: number;
        winBy: number;
        matches: readonly MatchInput[];
        bracket?: string;
        event?: string;
        location?: string;
        matchDate?: string;
        matchSource?: string;
        matchType?: string;
        extras?: Readonly<Record<string, unknown>>;
        identifier?: string;
        originalId?: string;
        originalType?: string;
        clubId?: number;
        dryRun?: boolean;
    }
    Index

    Properties

    sport: string
    winScore: number
    winBy: number
    matches: readonly MatchInput[]
    bracket?: string
    event?: string
    location?: string
    matchDate?: string
    matchSource?: string
    matchType?: string
    extras?: Readonly<Record<string, unknown>>
    identifier?: string
    originalId?: string
    originalType?: string
    clubId?: number
    dryRun?: boolean