> Speakable JSON-LD (Google Speaks Out Loud in SERPs)
Use this markup if you want to potentially have your content (questions and answers) spoken out loud in the Google search results.
- published
- modified
- size
- 1.2K
- path
- /speakable-json-ld/
Last updated October 2, 2019 by Patrick Coombe
Hot topic in SEO right now, Google put this out in beta in 2018 as a way to make it easy for web developers to let Google speak your answers out loud. From Google:
"The speakable schema.org property identifies sections within an article or webpage that are best suited for audio playback using text-to-speech (TTS). Adding markup allows search engines and other applications to identify content to read aloud on Google Assistant-enabled devices using TTS. Webpages with speakable structured data can use the Google Assistant to distribute the content through new channels and reach a wider base of users."
So it basically works like this: if you want to throw your hat in the ring for "speakable answers" in the SERPs, put this markup in your site. Unlike other schema, make sure the data is in the title tag / meta description. You can also check out Google's specifications.
{
"@context": "https://schema.org/",
"@type": "WebPage",
"name": "Slow down! Your answer goes here, if you play your cards right maybe Google will speak it out loud and you'll be famous.I would personally keep this at about 300-500 words.",
"speakable":
{
"@type": "SpeakableSpecification",
"xpath": [
"/html/head/title",
"/html/head/meta[@name='description']/@content"
]
},
"url": "http://www.example.com/page/whatever"
}