Preparing search index...

    Complete recipe data structure for application use Represents a fully decoded recipe with all related data

    type recipeTableElement = {
        id?: number;
        image_Source: string;
        title: string;
        description: string;
        tags: tagTableElement[];
        persons: number;
        ingredients: ingredientTableElement[];
        season: string[];
        preparation: preparationStepElement[];
        time: number;
        nutrition?: nutritionTableElement;
        sourceUrl?: string;
        sourceProvider?: string;
    }
    Index

    Properties

    id?: number

    Optional database ID (undefined for new recipes)

    image_Source: string

    Path or URI to recipe image

    title: string

    Recipe title/name

    description: string

    Recipe description

    Array of associated tags

    persons: number

    Number of servings

    ingredients: ingredientTableElement[]

    Array of recipe ingredients with quantities

    season: string[]

    Seasonal availability data

    preparation: preparationStepElement[]

    Step-by-step preparation instructions with structured data

    time: number

    Total preparation time in minutes

    Optional nutrition facts (undefined when not available)

    sourceUrl?: string

    Original URL from bulk import source (undefined for manually created recipes)

    sourceProvider?: string

    Provider ID from bulk import (e.g., 'hellofresh')