Book
Un livre. Herite de Product et CreativeWork.
Documentation Schema.org — Google Search Central
Resultat Enrichi Google
Knowledge Graph LLM
Livre
✅ Actif
Type : Book actions
— Features visuelles : Bouton 'Lire' ou 'Acheter' dans les SERP, Carousel de livres, Knowledge Panel enrichi
Proprietes (27)
| Propriete | Couche | Type | Signal | Description | Exemple Fnac |
|---|---|---|---|---|---|
| name requis | Text | Titre du livre | Le Rouge et le Noir |
||
| author requis | Person | Auteur | Stendhal |
||
| url | URL | URL canonique | |
||
| isbn | Text | ISBN-13 | 9782072858888 |
||
| bookFormat | BookFormatType | Format (Paperback, EBook, AudiobookFormat, Hardcover) | |
||
| publisher | Organization | Editeur | Gallimard |
||
| workExample | Book | Editions specifiques (ebook, audio, poche) | |
||
| image | URL | Couverture du livre | |
||
| offers | Offer | Offre d'achat | |
||
| aggregateRating | AggregateRating | Note moyenne | |
||
| review | Review | Avis lecteurs | |
||
| numberOfPages | llm | Integer | choix | Nombre de pages | 576 |
| inLanguage | llm | Text | filtre | Langue du livre | fr |
| award | llm | Text | E-E-A-T | Prix, distinctions, labels | Coup de coeur libraire Fnac |
| genre | llm | Text | categorisation | Genre litteraire | Roman historique |
| about | llm | Thing | semantique | Sujet du livre | |
| audience | llm | Audience | ciblage | Public cible | Lycee, preparation bac |
| translationOfWork | llm | CreativeWork | contexte | Oeuvre originale traduite | |
| datePublished | llm | Date | temporalite | Date de publication originale | 1830 |
| copyrightYear | llm | Integer | temporalite | Annee de copyright | |
| bookEdition | llm | Text | editions | Edition (ex: 'Edition annotee') | |
| illustrator | llm | Person | contexte | Illustrateur | |
| isPartOf | llm | CreativeWorkSeries | contexte | Fait partie d'une serie/collection | |
| position | llm | Integer | contexte | Position dans la serie (tome N) | |
| countryOfOrigin | llm | Country | provenance | Pays d'origine de l'oeuvre | |
| keywords | llm | Text | semantique | Mots-cles thematiques | |
| additionalType | llm | URL | categorisation | Type additionnel (ex: schema.org/Book sur un Product) | |
| Propriete | Type | Requis | Description |
|---|---|---|---|
| name | Text | Oui | Titre du livre |
| author | Person | Oui | Auteur |
| url | URL | Non | URL canonique |
| isbn | Text | Non | ISBN-13 |
| bookFormat | BookFormatType | Non | Format (Paperback, EBook, AudiobookFormat, Hardcover) |
| publisher | Organization | Non | Editeur |
| workExample | Book | Non | Editions specifiques (ebook, audio, poche) |
| image | URL | Non | Couverture du livre |
| offers | Offer | Non | Offre d'achat |
| aggregateRating | AggregateRating | Non | Note moyenne |
| review | Review | Non | Avis lecteurs |
| Propriete | Signal | Description | Cas d'usage LLM |
|---|---|---|---|
| numberOfPages | choix | Nombre de pages | Repond a 'roman court pour le train' vs 'long roman d'ete' |
| inLanguage | filtre | Langue du livre | Filtre 'livres en francais' |
| award | E-E-A-T | Prix, distinctions, labels | Signal massif : 'meilleur roman selon les libraires' |
| genre | categorisation | Genre litteraire | Repond a 'bon polar' ou 'SF pour debutant' |
| about | semantique | Sujet du livre | Comprehension thematique profonde |
| audience | ciblage | Public cible | Repond a 'livre pour ado' ou 'classique pour le bac' |
| translationOfWork | contexte | Oeuvre originale traduite | |
| datePublished | temporalite | Date de publication originale | |
| copyrightYear | temporalite | Annee de copyright | |
| bookEdition | editions | Edition (ex: 'Edition annotee') | |
| illustrator | contexte | Illustrateur | |
| isPartOf | contexte | Fait partie d'une serie/collection | |
| position | contexte | Position dans la serie (tome N) | |
| countryOfOrigin | provenance | Pays d'origine de l'oeuvre | |
| keywords | semantique | Mots-cles thematiques | |
| additionalType | categorisation | Type additionnel (ex: schema.org/Book sur un Product) |
Sous-types (Google Search Central)
BookEdition
| Propriete | Statut |
|---|---|
| isbn | Obligatoire |
| bookEdition | Facultative |
| bookFormat | Facultative |
| datePublished | Facultative |
Modeles JSON-LD
Version minimale : conformite Google Rich Results uniquement.
{
"@context": "https://schema.org",
"@type": "Book",
"name": "{{title}}",
"author": {
"@type": "Person",
"name": "{{author}}"
},
"isbn": "{{isbn}}",
"bookFormat": "https://schema.org/{{format}}",
"publisher": {
"@type": "Organization",
"name": "{{publisher}}"
},
"offers": {
"@type": "Offer",
"price": "{{price}}",
"priceCurrency": "EUR",
"availability": "https://schema.org/InStock"
}
}
Version enrichie : Google + Knowledge Graph LLM pour visibilite GenAI/SGE.
{
"@context": "https://schema.org",
"@type": "Book",
"name": "{{title}}",
"author": {
"@type": "Person",
"name": "{{author}}"
},
"isbn": "{{isbn}}",
"bookFormat": "https://schema.org/{{format}}",
"publisher": {
"@type": "Organization",
"name": "{{publisher}}"
},
"numberOfPages": "{{pages}}",
"inLanguage": "{{language}}",
"genre": "{{genre}}",
"award": "{{award}}",
"about": "{{subject}}",
"datePublished": "{{date_published}}",
"audience": {
"@type": "PeopleAudience",
"suggestedMinAge": "{{min_age}}"
},
"offers": {
"@type": "Offer",
"price": "{{price}}",
"priceCurrency": "EUR",
"availability": "https://schema.org/InStock"
},
"aggregateRating": {
"@type": "AggregateRating",
"ratingValue": "{{rating}}",
"reviewCount": "{{review_count}}"
}
}