Note: You are viewing the development version of Schema.org. See how we work for more details.

phoneticText

A Schema.org Property

This term is in the "new" area - implementation feedback and adoption from applications and websites can help improve our definitions.
Representation of a text textValue using the specified speechToTextMarkup. For example the city name of Houston in IPA: /ˈhjuːstən/.

Values expected to be one of these types

Used on these types

Source

https://github.com/schemaorg/schemaorg/issues/2108


Examples

Example 1
Copied
Example notes or example HTML without markup.
  1. See JSON example.
Example encoded as JSON-LD in a HTML script tag.
  1. <script type="application/ld+json">
  2. {
  3.   "@context": "https://schema.org/",
  4.   "@type": "City",
  5.   "name": {
  6.     "@type": "PronounceableText",
  7.     "inLanguage": "en-US",
  8.     "textValue": "Worcester",
  9.     "speechToTextMarkup": "IPA",
  10.     "phoneticText": "/ˈwʊstɚ/"
  11.   }
  12. }
  13. </script>
Structured representation of the JSON-LD example.
Example 2
Copied
Example notes or example HTML without markup.
  1. See JSON example.
Example encoded as JSON-LD in a HTML script tag.
  1. <script type="application/ld+json">
  2. {
  3.   "@context": "https://schema.org/",
  4.   "@type": "RadioStation",
  5.   "name": ["WKRP",
  6.       {
  7.         "@type": "PronounceableText",
  8.         "textValue": "WKRP",
  9.         "speechToTextMarkup": "SSML",
  10.         "phoneticText": "<speak><say-as interpret-as=\"characters\">WKRP</say-as>"
  11.       }
  12.   ]
  13. }
  14. </script>
Structured representation of the JSON-LD example.