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

    Interface SpeciesData

    interface SpeciesData {
        id: number;
        scientific_name: string;
        authority: string;
        name: string;
        group: number;
        group_name: string;
        status?: string;
        rarity?: string;
        type: string;
        photo?: string;
        permalink: string;
        determination_requirements?: string;
        info_text?: string;
        sounds?: Sound[];
    }
    Index

    Properties

    id: number
    scientific_name: string
    authority: string

    The authority that published the taxon, e.g. "(Pallas, 1764)" or "Linnaeus, 1758". The formatting is significant: it may be abbreviated ("L."), a single name ("Diels"), include a year, or be wrapped in brackets to indicate later amendments.

    name: string

    Common name, in the current language. Empty string if no common name is known.

    group: number
    group_name: string

    Species group name, in the current language.

    status?: string

    Species status as text, in the current language. Absent when the species is fetched without a location context.

    rarity?: string

    Species rarity as text, in the current language. Absent when the species is fetched without a location context.

    type: string
    photo?: string

    URL to a photo for this species. Empty string when none is available.

    permalink: string

    Link to the details of this species on the website.

    determination_requirements?: string

    Species determination requirements as text, in the current language. Only present if determination requirements are applicable for the species.

    info_text?: string

    Species info text as HTML, in the current language.

    sounds?: Sound[]