PronounceableText
This term is proposed for full integration into Schema.org, pending implementation feedback and adoption from applications and websites.Data type: PronounceableText.
- Canonical URL: http://schema.org/PronounceableText
- Leave public feedback on this term 💬
- Check for open issues.
- 'PronounceableText' is mentioned in the pending extention.
| Property | Expected Type | Description |
|---|---|---|
| Properties from PronounceableText | ||
inLanguage
|
Language or Text | The language of the content or performance or used in an action. Please use one of the language codes from the IETF BCP 47 standard. See also availableLanguage. Supersedes language. |
phoneticText
|
Text | Representation of a text textValue using the specified speechToTextMarkup. For example the city name of Houston in IPA: /ˈhjuːstən/. |
speechToTextMarkup
|
Text | Form of markup used. eg. SSML or IPA. |
textValue
|
Text | Text value being annotated. |
Source
https://github.com/schemaorg/schemaorg/issues/2108
ExamplesSee JSON example.
TODO
TODO
<script type="application/ld+json">
{
"@context": "http://schema.org/",
"@type": "City",
"name": {
"@type": "PronounceableText",
"inLanguage": "en-US",
"textValue": "Worcester",
"speechToTextMarkup": "IPA",
"phoneticText": "/ˈwʊstɚ/"
}
}
</script>
See JSON example.
TODO
TODO
<script type="application/ld+json">
{
"@context": "http://schema.org/",
"@type": "RadioStation",
"name": ["WKRP",
{
"@type": "PronounceableText",
"textValue": "WKRP",
"speechToTextMarkup": "SSML",
"phoneticText": "<speak><say-as interpret-as=\"characters\">WKRP</say-as>"
}
]
}
</script>