Google SEO MCP Server API - v1.13.5
    Preparing search index...

    A single data point in a time series analysis.

    interface TimeSeriesData {
        date?: string;
        dimensions?: Record<string, string>;
        isSeasonalPeak?: boolean;
        metrics: Record<string, number>;
        rollingAverages?: Record<string, number>;
        week?: string;
    }
    Index

    Properties

    date?: string

    The date of the data point (for daily granularity).

    dimensions?: Record<string, string>

    Any dimensions used for grouping (e.g., device, country).

    isSeasonalPeak?: boolean

    Whether this point represents a detected seasonal peak.

    metrics: Record<string, number>

    The raw metric values for this point.

    rollingAverages?: Record<string, number>

    Calculated rolling averages for each metric.

    week?: string

    The start of the week (for weekly granularity).