web-dev-qa-db-ja.com

ホテルの下のSchema.orgの「amenityFeature」はGoogleに認識されません

ホテルのウェブページの schema.org ボキャブラリーを開発しています( ホテルのマークアップ を参照)。 schema.orgの指示に従って、Hotelの下にamenityFeatureを追加できますが、Googleのテストツールは、プロパティがGoogleによって認識されないことを通知する例外をスローします。

ここに私が作成したJSON-LDを示します。

  {
  "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"
  }
}

何か案が?

1
benetj

ホテル関連のタイプとプロパティのほとんどは、2週間前にリリースされた バージョン3.1 で導入されました。

GoogleはまだSDTTを更新していないようです。新しいタイプ/プロパティがすぐに認識されると期待しています。

1
unor