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

    Interface SpeciesSeen

    interface SpeciesSeen {
        id: number;
        scientific_name: string;
        name: string;
        group: number;
        rarity?: number;
        species_url: string;
        num_observations: number;
        last_seen?: string;
        last_observation?: number;
        last_observation_url?: string;
    }
    Index

    Properties

    id: number

    The species id.

    scientific_name: string

    The scientific name of the species.

    name: string

    The common (vernacular) name of the species.

    group: number

    The species group id.

    rarity?: number

    The rarity of the species. Omitted when fast=true.

    species_url: string

    A URL to the species detail endpoint.

    num_observations: number

    The number of observations within the queried window.

    last_seen?: string

    Date the species was last seen. Omitted when fast=true (or embargoed).

    last_observation?: number

    The id of the most recent observation. Omitted when fast=true.

    last_observation_url?: string

    A URL to the most recent observation. Omitted when fast=true.