2017-02-03 115 views
0

我有點困惑。使用Schema.org,對於Hotel類型,potentialAction是什麼?Schema.org'potentialAction'用於酒店預訂

"potentialAction":{ 
    "@type":"ReserveAction", 
    "target":{ 
    "@type":"EntryPoint", 
    "urlTemplate":"https://www.example.com/booking-engine", 
    "actionPlatform":[ 
     "http://schema.org/DesktopWebPlatform", 
     "http://schema.org/IOSPlatform", 
     "http://schema.org/AndroidPlatform" 
    ], 
    "inLanguage": ["it_IT", "en-US", "en-UK" , "de-DE", "ru-RU"] 
}, 
"result":{ 
    "@type":"LodgingReservation", 
    "name":"Book Now" 
} 

這應該顯示或使用在哪裏?我該如何翻譯其他語言的「現在預訂」?我應該複製result密鑰嗎?

+0

我真的不明白你的主要問題是什麼。你是否試圖理解這個特定的JSON-LD,或者你想知道爲什麼會使用'potentialAction',或者你想知道如何? - 翻譯問題很清楚,但在我看來,這與您的其他問題無關。 – unor

+0

這是如何影響SEO的? Google如何使用它(例如,豐富的片段或其他內容)? – Jumpa

+0

這裏https://search.google.com/structured-data/testing-tool/u/0/#url=http%3A%2F%2Fwww.minioffice.lv%2F就是一個例子,其中可以看到'potentialAction' 。但我也想明白'potentialAction'是什麼意思(它的作用)。 – user2118559

回答

0

這爲我工作(根據您的例子):

"potentialAction": 
    { 
    "@type":"ReserveAction", 
    "result": 
    { 
    "@type":"LodgingReservation", 
    "name":"Prenota", 
    "alternateName":["Book now", "Buch", "Réservez"] 
    }, 
    "target": 
    { 
    "@type":"EntryPoint", 
    "urlTemplate":"https://www.example.com/booking-engine", 
    "actionPlatform": 
    [ 
    "http://schema.org/DesktopWebPlatform", " http://schema.org/IOSPlatform", " http://schema.org/AndroidPlatform" 
    ], 
    "inLanguage": 
    [ 
    { 
    "@type":"Language", 
    "name":"Italiano", 
    "alternateName":"it" 
    }, 
    { 
    "@type":"Language", 
    "name":"English", 
    "alternateName":"en" 
    }, 
    { 
    "@type":"Language", 
    "name":"Deutsch", 
    "alternateName":"de" 
    }, 
    { 
    "@type":"Language", 
    "name":"Russian", 
    "alternateName":"ru_RU" 
    } 
    ] 
    } 
    } 

用它在你的腳本類型=「應用/ LD + JSON」(請注意,這不是一個完整的腳本)。 Google(和其他人)會使用它來了解您網頁的內容,並增加在serps和代碼段中顯示您的網頁的機率。我用另一種方式來指定可用的語言。如果您未使用Asp.Net資源切換語言,請按照建議,使用「alternateName」列出所有語言預留操作名稱。 PotentialAction是某人可以做的事情,例如「SearchAction」。 如果您已經解決了您的問題,請與我們分享適合您的解決方案。 這是我在Google測試工具上測試的結構化數據,它正在工作。