@buzzr/dfs-engine
    Preparing search index...

    Interface PlayerGameLogSoccerShape

    Soccer-specific stats (v1.0). Populate from your match-data source (FotMob, Sofascore, ESPN soccer endpoint, etc). All optional; the adapter null-returns when a queried field is missing.

    interface PlayerGameLogSoccerShape {
        passAccuracy?: string;
        passesAttempted?: string;
        passesCompleted?: string;
        redCards?: string;
        shots?: string;
        shotsOnTarget?: string;
        tackles?: string;
        yellowCards?: string;
    }
    Index

    Properties

    passAccuracy?: string

    As a 0..1 decimal (".87") or a 0..100 percent ("87"). Adapter parses both.

    passesAttempted?: string
    passesCompleted?: string
    redCards?: string
    shots?: string
    shotsOnTarget?: string
    tackles?: string
    yellowCards?: string