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

    Interface BioBlitz

    A BioBlitz: a time- and place-bound biodiversity recording event.

    interface BioBlitz {
        id: number;
        name: string;
        description: string;
        start_date: string;
        end_date: string;
        target: number | null;
        statistics: BioBlitzStatistics;
        user: BioBlitzUser | null;
        category: BioBlitzCategory | null;
        cover_image: string;
        cover_thumbnail: string;
        location_image: string;
        permalink: string;
    }
    Index

    Properties

    id: number

    BioBlitz id.

    name: string

    Name of the BioBlitz.

    description: string

    Description of the BioBlitz, in HTML format (empty if absent).

    start_date: string

    Start date of the BioBlitz (isoformat yyyy-mm-dd).

    end_date: string

    End date of the BioBlitz (isoformat yyyy-mm-dd). The end date is inclusive.

    target: number | null

    Target number of species for the BioBlitz, or null if no target is set.

    statistics: BioBlitzStatistics

    Statistics of the BioBlitz.

    user: BioBlitzUser | null

    Information about the relationship between the authenticated user and this BioBlitz, or null if the current user is not authenticated.

    category: BioBlitzCategory | null

    Details of the category this BioBlitz belongs to, or null if it does not belong to a category.

    cover_image: string

    URL to the cover image (1600 x 1000 px JPEG satellite map render).

    cover_thumbnail: string

    URL to the cover image thumbnail (288 x 144 px).

    location_image: string

    URL to the location image (1000 x 1000 px PNG OpenStreetMap render).

    permalink: string

    URL to the BioBlitz detail view on the website.