Course JSONID
Akademi Eğitim Platformu Cours jsonId Dökümanı
Google, kurs listesi sayfalarında ItemList bekliyor ve en az 3 kurs istiyor.
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "ItemList",
"name": "Tüm Eğitimlerimiz",
"description": "Profesyonel gelişim ve kariyer odaklı online eğitimler",
"itemListElement": [
{
"@type": "ListItem",
"position": 1,
"item": {
"@type": "Course",
"name": "Python ile Veri Bilimi Sıfırdan İleri Seviye",
"url": "https://akademiniz.com/kurs/python-veri-bilimi",
"description": "Python, Pandas, NumPy, Matplotlib ve makine öğrenmesi temelleri.",
"provider": {
"@type": "EducationalOrganization",
"name": "Akademi Adınız",
"url": "https://akademiniz.com"
}
}
},
{
"@type": "ListItem",
"position": 2,
"item": {
"@type": "Course",
"name": "Dijital Pazarlama Uzmanlığı",
"url": "https://akademiniz.com/kurs/dijital-pazarlama",
"description": "SEO, Google Ads, Sosyal Medya ve içerik stratejisi.",
"provider": {
"@type": "EducationalOrganization",
"name": "Akademi Adınız",
"url": "https://akademiniz.com"
}
}
}
// Devamını ekleyin...
]
}
</script>
Not: Her kursun url alanı o kursun detay sayfasına gitmeli.
Tek Eğitim Detay Sayfası → Course (Tam Yapı)
Her kurs sayfasına (/kurs/python-veri-bilimi gibi) şu yapıyı koyun.
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Course",
"name": "Python ile Veri Bilimi Sıfırdan İleri Seviye",
"description": "Python, veri analizi, görselleştirme ve makine öğrenmesi temellerini öğrenin. Proje bazlı eğitim.",
"image": "https://akademiniz.com/images/python-kurs-kapak.jpg",
"url": "https://akademiniz.com/kurs/python-veri-bilimi",
"provider": {
"@type": "EducationalOrganization",
"name": "Akademi Adınız",
"url": "https://akademiniz.com",
"logo": "https://akademiniz.com/logo.png",
"sameAs": [
"https://twitter.com/akademiniz",
"https://www.linkedin.com/company/akademiniz"
]
},
"hasCourseInstance": {
"@type": "CourseInstance",
"courseMode": "online",
"courseWorkload": "P40H", // Toplam süre (ISO 8601)
"offers": {
"@type": "Offer",
"price": "1499",
"priceCurrency": "TRY",
"availability": "https://schema.org/InStock",
"url": "https://akademiniz.com/kurs/python-veri-bilimi"
}
},
"educationalCredentialAwarded": {
"@type": "EducationalOccupationalCredential",
"name": "Python Veri Bilimi Sertifikası"
},
"isAccessibleForFree": false,
"totalHistoricalEnrollment": 1247
}
</script>
Ekstra Tavsiyeler (Hemen Ekleyebilecekleriniz)
3. Akademi Organizasyonu (Her sayfaya koyun – özellikle footer’a)
{
"@context": "https://schema.org",
"@type": "EducationalOrganization",
"name": "Akademi Adınız",
"url": "https://akademiniz.com",
"logo": "https://akademiniz.com/logo.png",
"description": "Profesyonel online eğitim platformu",
"address": {
"@type": "PostalAddress",
"addressCountry": "TR"
},
"contactPoint": {
"@type": "ContactPoint",
"contactType": "customer service",
"email": "info@akademiniz.com"
}
}
4. Diğer Çok İşe Yarayan Yapılar
- BreadcrumbList → Her sayfaya (navigasyon için)
- FAQPage → Kurs detayında “Sıkça Sorulan Sorular” varsa
- Review + AggregateRating → Kurs yorumları varsa (çok güçlü)
- VideoObject → Kurs tanıtım videosu varsa
Uygulama İpuçları
- JSON-LD’yi
<head>içine veya sayfanın en üstüne koyun. - Google Rich Results Test ile test edin: https://search.google.com/test/rich-results
- En az 3 kursu işaretleyin (Google şartı).
- Tüm kurs isimleri ve açıklamaları gerçek ve tanıtım cümlesi içermemeli (Google bunu spam olarak görür).