Preparing search index...

    Recipe data ready for validation and import

    Final format containing all recipe information needed for validation against the database and subsequent import.

    interface ConvertedImportRecipe {
        title: string;
        description: string;
        imageUrl: string;
        persons: number;
        time: number;
        ingredients: Partial<ingredientTableElement>[];
        tags: tagTableElement[];
        preparation: preparationStepElement[];
        nutrition?: nutritionTableElement;
        skippedIngredients?: string[];
        sourceUrl: string;
        sourceProvider: string;
    }
    Index

    Properties

    title: string

    Recipe title

    description: string

    Recipe description

    imageUrl: string

    URL or local URI of recipe image

    persons: number

    Number of servings

    time: number

    Cooking time in minutes

    ingredients: Partial<ingredientTableElement>[]

    List of ingredients

    List of tags/categories

    preparation: preparationStepElement[]

    List of preparation steps

    Nutritional information

    skippedIngredients?: string[]

    Ingredients that were skipped during parsing

    sourceUrl: string

    Original URL of the recipe source

    sourceProvider: string

    Provider identifier (e.g., 'hellofresh')