Tilbage til Schema
đź’°

Offer Schema

Vis priser, tilbud og tilgængelighed direkte i Google søgeresultater

Hvad er Offer Schema?

Offer schema bruges til at definere kommercielle tilbud - priser, availability, rabatter og special offers pĂĄ produkter og services. Det bruges typisk sammen med Product, Service eller Event schema.

Fordele:

  • • Priser direkte i søgeresultater
  • • "On Sale" badge i Google Shopping
  • • Availability status (in stock/out of stock)
  • • Price drop notifications
  • • Rich snippets for e-commerce

Required Properties

price

Pris (numerisk værdi)

priceCurrency

Valuta kode (DKK, EUR, USD)

availability

Tilgængelighed status

Basic Product Offer

Produkt med Offer

{
  "@context": "https://schema.org",
  "@type": "Product",
  "name": "Running Sko Pro 2024",
  "image": "https://example.com/sko.jpg",
  "description": "Professionelle running sko",
  "brand": {
    "@type": "Brand",
    "name": "SportBrand"
  },
  "offers": {
    "@type": "Offer",
    "url": "https://example.com/products/running-sko",
    "priceCurrency": "DKK",
    "price": "799.00",
    "priceValidUntil": "2024-12-31",
    "availability": "https://schema.org/InStock",
    "itemCondition": "https://schema.org/NewCondition",
    "seller": {
      "@type": "Organization",
      "name": "Sport Shop"
    }
  }
}

Sale Offer (Rabat)

Vis før/efter pris ved udsalg:

{
  "@type": "Offer",
  "price": "599.00",
  "priceCurrency": "DKK",
  "priceValidUntil": "2024-03-31",
  "availability": "https://schema.org/InStock",
  "priceSpecification": {
    "@type": "UnitPriceSpecification",
    "price": "599.00",
    "priceCurrency": "DKK",
    "referenceQuantity": {
      "@type": "QuantitativeValue",
      "value": "1"
    }
  },
  "hasMerchantReturnPolicy": {
    "@type": "MerchantReturnPolicy",
    "returnPolicyCategory": "https://schema.org/MerchantReturnFiniteReturnWindow",
    "merchantReturnDays": 30
  }
}

Availability Status

Forskellige availability værdier:

• InStock - På lager
• OutOfStock - Udsolgt
• SoldOut - Udsolgt permanent
• PreOrder - Kan forudbestilles
• LimitedAvailability - Begrænset lager
• OnlineOnly - Kun online
• InStoreOnly - Kun i butik

AggregateOffer (Multiple Offers)

NĂĄr produkt har flere tilbud/varianter:

{
  "@type": "Product",
  "name": "Running Sko",
  "offers": {
    "@type": "AggregateOffer",
    "lowPrice": "599",
    "highPrice": "899",
    "priceCurrency": "DKK",
    "offerCount": "5",
    "offers": [
      {
        "@type": "Offer",
        "price": "599",
        "priceCurrency": "DKK",
        "name": "Størrelse 42",
        "availability": "https://schema.org/InStock"
      },
      {
        "@type": "Offer",
        "price": "699",
        "priceCurrency": "DKK",
        "name": "Størrelse 43",
        "availability": "https://schema.org/InStock"
      }
    ]
  }
}

Shipping Information

{
  "@type": "Offer",
  "price": "799.00",
  "priceCurrency": "DKK",
  "shippingDetails": {
    "@type": "OfferShippingDetails",
    "shippingRate": {
      "@type": "MonetaryAmount",
      "value": "49",
      "currency": "DKK"
    },
    "shippingDestination": {
      "@type": "DefinedRegion",
      "addressCountry": "DK"
    },
    "deliveryTime": {
      "@type": "ShippingDeliveryTime",
      "handlingTime": {
        "@type": "QuantitativeValue",
        "minValue": "1",
        "maxValue": "2",
        "unitCode": "DAY"
      },
      "transitTime": {
        "@type": "QuantitativeValue",
        "minValue": "2",
        "maxValue": "5",
        "unitCode": "DAY"
      }
    }
  }
}

Best Practices

✓ Gør dette

  • • Opdater priser og availability løbende
  • • Brug korrekt valuta kode (ISO 4217)
  • • Angiv priceValidUntil for tilbud
  • • Specificer seller information
  • • Inkluder shipping details
  • • Brug AggregateOffer for varianter

âś— UndgĂĄ dette

  • • Forkerte eller outdated priser
  • • Manglende availability status
  • • Vildledende "On Sale" claims
  • • Forkert currency kode
  • • Manglende priceValidUntil pĂĄ tilbud
  • • In stock nĂĄr faktisk udsolgt