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

HearingImpairedSupported

A Schema.org Enumeration Member
Uses devices to support users with hearing impairments.

A member value for enumeration type: ContactPointOption

Examples

Example 1
Copied
Example notes or example HTML without markup.
  1. A fuller example that illustrates multiple contact numbers for a company,
  2. including US toll-free numbers, a hearing-impaired number, and several contact categories.
Example encoded as JSON-LD in a HTML script tag.
  1. <script type="application/ld+json">
  2. { "@context" : "https://schema.org",
  3.   "@type" : "Organization",
  4.   "url" : "http://www.t-mobile.com",
  5.   "contactPoint" : [
  6.     { "@type" : "ContactPoint",
  7.       "telephone" : "+1-877-746-0909",
  8.       "contactType" : "customer service",
  9.       "contactOption" : "TollFree",
  10.       "areaServed" : "US"
  11.     } , {
  12.       "@type" : "ContactPoint",
  13.       "telephone" : "+1-505-998-3793",
  14.       "contactType" : "customer service"
  15.     } , {
  16.       "@type" : "ContactPoint",
  17.       "telephone" : "+1-877-296-1018",
  18.       "contactType" : "customer service",
  19.       "contactOption" : ["HearingImpairedSupported","TollFree"] ,
  20.       "areaServed" : "US"
  21.     } , {
  22.       "@type" : "ContactPoint",
  23.       "telephone" : "+1-877-453-1304",
  24.       "contactType" : "technical support",
  25.       "contactOption" : "TollFree",
  26.       "areaServed" : ["US","CA"],
  27.       "availableLanguage" : ["English","French"]
  28.     } , {
  29.       "@type" : "ContactPoint",
  30.       "telephone" : "+1-877-453-1304",
  31.       "contactType" : "bill payment",
  32.       "contactOption" : "TollFree",
  33.       "areaServed" : ["US","CA"]
  34.     } ] }
  35. </script>
Structured representation of the JSON-LD example.