Je développe le vocabulaire schema.org pour une page Web d'hôtel (voir balisage pour les hôtels ). Selon les directives schema.org, sous Hotel
, je peux ajouter un amenityFeature
, mais l'outil de test de Google lève une exception m'indiquant que cette propriété n'est pas reconnue par Google.
Voici le JSON-LD que j'ai créé:
{
"hasMap": "https:\/\/www.google.com\/maps\/@41.380061,2.175798,10z",
"amenityFeature": [
{
"name": "Wi-fi",
"value": true,
"@type": "LocationFeatureSpecification"
},
{
"name": "Garaje",
"value": true,
"@type": "LocationFeatureSpecification"
},
{
"name": "Se admiten animales +5kg",
"value": true,
"@type": "LocationFeatureSpecification"
},
{
"name": "Se admiten animales -5kg",
"value": true,
"@type": "LocationFeatureSpecification"
},
{
"name": "Aparcamiento",
"value": true,
"@type": "LocationFeatureSpecification"
},
{
"name": "Accesible para personas de movilidad reducida",
"value": true,
"@type": "LocationFeatureSpecification"
},
{
"name": "Caja fuerte (Servicios de pago)",
"value": true,
"@type": "LocationFeatureSpecification"
},
{
"name": "Recepci\u00f3n 24h",
"value": true,
"@type": "LocationFeatureSpecification"
},
{
"name": "Aire acondicionado en zonas comunes",
"value": true,
"@type": "LocationFeatureSpecification"
},
{
"name": "Ascensor",
"value": true,
"@type": "LocationFeatureSpecification"
},
{
"name": "Internet por cable",
"value": true,
"@type": "LocationFeatureSpecification"
},
{
"name": "Cobertura tel\u00e9fonos m\u00f3viles",
"value": true,
"@type": "LocationFeatureSpecification"
}
],
"@context": "http:\/\/schema.org",
"@type": "Hotel",
"@id": "http:\/\/localhost\/hotels\/details.aspx?UID=GHU\/JP151029",
"name": "Roma Reial",
"image": "http:\/\/photos.hotelbeds.com\/giata\/00\/000423\/000423a_hb_a_001.jpg",
"address": {
"streetAddress": "PLA\u00c7A REIAL,11 , 08002, BARCELONA, BARCELONA 08002",
"postalCode": "08002"
},
"url": "http:\/\/localhost\/hotels\/details.aspx?UID=GHU\/JP151029",
"geo": {
"latitude": 41.380061,
"longitude": 2.175798,
"@type": "GeoCoordinates"
}
}
Une idée?
La plupart des types et propriétés associés aux hôtels ont été introduits avec version 3.1 , qui a été publiée il y a deux semaines.
Il semble que Google n’ait pas encore mis à jour sa SDTT. Je m'attendrais à ce qu'il reconnaisse bientôt les nouveaux types/propriétés.