observation-js Documentation - v1.16.0
    Preparing search index...

    Interface UserStats

    Aggregated user statistics from GET /user/stats/observations/.

    total holds the overall totals; every other key is a date (truncated to the requested aggregation, e.g. 2018, 2018-02 or 2018-01-01). Each value is a tuple of [observation_count, species_count].

    interface UserStats {
        total: [number, number];
        [date: string]: [number, number];
    }

    Indexable

    • [date: string]: [number, number]

      Per-date [observation_count, species_count].

    Index

    Properties

    Properties

    total: [number, number]

    Overall [total_observations, total_species].