Tilbage til Schema
🍳

Recipe Schema

Få dine madopskrifter vist med billeder, ratings og cooking time direkte i søgeresultater

Hvad er Recipe Schema?

Recipe schema hjælper Google med at forstå madopskrifter og vise dem som rich snippets. Det kan give dig bedre synlighed i Google Recipe search og Google Discover.

Fordele:

  • • Rich snippets med billede og rating
  • • Visning af cooking time og calories
  • • Google Recipe search eligibility
  • • Voice search optimering (f.eks. Google Home)
  • • Højere CTR fra søgeresultater

Required Properties

name

Opskriftens navn

image

Billede af færdigretten

recipeIngredient

Liste af ingredienser

recipeInstructions

Trin-for-trin instruktioner

Complete Example

Fuldt Recipe Schema

{
  "@context": "https://schema.org",
  "@type": "Recipe",
  "name": "Klassisk Spaghetti Carbonara",
  "image": [
    "https://example.com/carbonara-16x9.jpg",
    "https://example.com/carbonara-4x3.jpg",
    "https://example.com/carbonara-1x1.jpg"
  ],
  "author": {
    "@type": "Person",
    "name": "Anna Koch"
  },
  "datePublished": "2024-01-15",
  "description": "Autentisk italiensk carbonara med æg, bacon og parmesan",
  "prepTime": "PT15M",
  "cookTime": "PT20M",
  "totalTime": "PT35M",
  "recipeYield": "4 portioner",
  "recipeCategory": "Hovedret",
  "recipeCuisine": "Italiensk",
  "keywords": "pasta, carbonara, italiensk",
  "recipeIngredient": [
    "400g spaghetti",
    "200g bacon",
    "4 æg",
    "100g parmesan",
    "Sort peber",
    "Salt"
  ],
  "recipeInstructions": [
    {
      "@type": "HowToStep",
      "text": "Kog pasta i saltet vand i 10 minutter"
    },
    {
      "@type": "HowToStep",
      "text": "Steg bacon gyldent og sprødt"
    },
    {
      "@type": "HowToStep",
      "text": "Pisk æg og parmesan sammen"
    },
    {
      "@type": "HowToStep",
      "text": "Bland alt sammen uden yderligere varme"
    }
  ],
  "aggregateRating": {
    "@type": "AggregateRating",
    "ratingValue": "4.8",
    "ratingCount": "156"
  },
  "nutrition": {
    "@type": "NutritionInformation",
    "calories": "520 calories",
    "fatContent": "28g",
    "carbohydrateContent": "45g",
    "proteinContent": "22g"
  }
}

Time Formats

Brug ISO 8601 duration format for tider:

PT15M = 15 minutter
PT1H = 1 time
PT1H30M = 1 time og 30 minutter
PT45M = 45 minutter

Video Instructions

Tilføj video for bedre engagement:

{
  "@context": "https://schema.org",
  "@type": "Recipe",
  "name": "Pasta Carbonara",
  "video": {
    "@type": "VideoObject",
    "name": "Sådan laver du carbonara",
    "description": "Step-by-step video guide",
    "thumbnailUrl": "https://example.com/thumb.jpg",
    "contentUrl": "https://example.com/video.mp4",
    "uploadDate": "2024-01-15T08:00:00+00:00",
    "duration": "PT5M"
  }
}

Best Practices

✓ Gør dette

  • • Brug high-quality food billeder
  • • Inkluder præcise cooking times
  • • List alle ingredienser tydeligt
  • • Specificer antal portioner
  • • Tilføj nutrition information
  • • Brug step-by-step instruktioner

✗ Undgå dette

  • • Manglende ingredienser
  • • Upræcise mængdeangivelser
  • • Dårlige food billeder
  • • Manglende cooking times
  • • For korte instruktioner
  • • Fake eller vildledende ratings