LocalBusiness
Un commerce local. Sous-type recommande : ElectronicsStore.
Documentation Schema.org — Google Search Central
Resultat Enrichi Google
Knowledge Graph LLM
Établissement Local
✅ Actif
Type : Local Business (Knowledge Panel + Maps)
— Features visuelles : Fiche etablissement dans Google Maps, Local Pack (3-pack) dans les SERP, Horaires d'ouverture, Adresse et telephone
Proprietes (16)
| Propriete | Couche | Type | Signal | Description | Exemple Fnac |
|---|---|---|---|---|---|
| name requis | Text | Nom du magasin | Fnac Ternes |
||
| address requis | PostalAddress | Adresse postale | |
||
| telephone | Text | Telephone | |
||
| url | URL | URL de la page magasin | |
||
| image | URL | Photo du magasin | |
||
| geo | GeoCoordinates | Coordonnees GPS | |
||
| openingHoursSpecification | OpeningHoursSpecification | Horaires d'ouverture | |
||
| priceRange | llm | Text | qualite | Gamme de prix (€, €€, €€€) | |
| paymentAccepted | llm | Text | confiance | Moyens de paiement acceptes | |
| currenciesAccepted | llm | Text | confiance | Devises acceptees | |
| parentOrganization | llm | Organization | contexte | Organisation parente | Fnac |
| hasMap | llm | URL | logistique | Lien vers la carte | |
| aggregateRating | llm | AggregateRating | E-E-A-T | Note moyenne du magasin | |
| review | llm | Review | E-E-A-T | Avis sur le magasin | |
| isAccessibleForFree | llm | Boolean | attribut | Acces gratuit | |
| smokingAllowed | llm | Boolean | attribut | Fumeur autorise | |
| Propriete | Type | Requis | Description |
|---|---|---|---|
| name | Text | Oui | Nom du magasin |
| address | PostalAddress | Oui | Adresse postale |
| telephone | Text | Non | Telephone |
| url | URL | Non | URL de la page magasin |
| image | URL | Non | Photo du magasin |
| geo | GeoCoordinates | Non | Coordonnees GPS |
| openingHoursSpecification | OpeningHoursSpecification | Non | Horaires d'ouverture |
| Propriete | Signal | Description | Cas d'usage LLM |
|---|---|---|---|
| priceRange | qualite | Gamme de prix (€, €€, €€€) | |
| paymentAccepted | confiance | Moyens de paiement acceptes | |
| currenciesAccepted | confiance | Devises acceptees | |
| parentOrganization | contexte | Organisation parente | |
| hasMap | logistique | Lien vers la carte | |
| aggregateRating | E-E-A-T | Note moyenne du magasin | |
| review | E-E-A-T | Avis sur le magasin | |
| isAccessibleForFree | attribut | Acces gratuit | |
| smokingAllowed | attribut | Fumeur autorise |
Modeles JSON-LD
Version minimale : conformite Google Rich Results uniquement.
{
"@context": "https://schema.org",
"@type": "ElectronicsStore",
"name": "Fnac {{city}}",
"address": {
"@type": "PostalAddress",
"streetAddress": "{{address}}",
"addressLocality": "{{city}}",
"postalCode": "{{zip}}",
"addressCountry": "FR"
},
"telephone": "{{phone}}",
"url": "{{store_url}}"
}
Version enrichie : Google + Knowledge Graph LLM pour visibilite GenAI/SGE.
{
"@context": "https://schema.org",
"@type": "ElectronicsStore",
"name": "Fnac {{city}}",
"address": {
"@type": "PostalAddress",
"streetAddress": "{{address}}",
"addressLocality": "{{city}}",
"postalCode": "{{zip}}",
"addressCountry": "FR"
},
"telephone": "{{phone}}",
"url": "{{store_url}}",
"geo": {
"@type": "GeoCoordinates",
"latitude": "{{lat}}",
"longitude": "{{lng}}"
},
"openingHoursSpecification": [
{
"@type": "OpeningHoursSpecification",
"dayOfWeek": [
"Monday",
"Tuesday",
"Wednesday",
"Thursday",
"Friday"
],
"opens": "10:00",
"closes": "20:00"
},
{
"@type": "OpeningHoursSpecification",
"dayOfWeek": "Saturday",
"opens": "10:00",
"closes": "20:00"
}
],
"image": "{{store_image}}",
"priceRange": "$$"
}