ContactPoint

Канонический URL: http://schema.org/ContactPoint

Thing > Intangible > StructuredValue > ContactPoint

A contact point—for example, a Customer Complaints department.
Свойство Ожидаемый тип Описание
Свойства от ContactPoint
areaServed Place
или AdministrativeArea
или GeoShape
или Text
The geographic area where a service or offered item is provided.
availableLanguage Language
или Text
A language someone may use with or at the item, service or place. Please use one of the language codes from the [IETF BCP 47 standard](http://tools.ietf.org/html/bcp47). See also [[inLanguage]]
contactOption ContactPointOption An option available on this contact point (e.g. a toll-free number or support for hearing-impaired callers).
contactType Text Человек или организация могут иметь разные контактные данные для разных потребностей. Например, для продаж, для PR-потреьностей и т.д. Это поле используется для указания типа контактных данных
email Text E-mail адрес.
faxNumber Text Номер факса.
hoursAvailable OpeningHoursSpecification The hours during which this service or contact is available.
productSupported Product
или Text
The product or service this support contact point is related to (such as product support for a particular product line). This can be a specific product or product line (e.g. "iPhone") or a general category of products or services (e.g. "smartphones").
serviceArea Place
или AdministrativeArea
или GeoShape
The geographic area where the service is provided.
telephone Text Номер телефона.
Свойства от Thing
additionalType URL Дополнительный тип для элемента, который обычно используется для добавления более конкретных типов от внешних словарей в синтаксис микроданных. Это отношения между чем-то и классом к которому он принадлежит. В синтаксисе RDFa, лучше использовать родной синтаксис RDF - аттрибут "TypeOf" для множественных типов. Инстументы Schema.org могут слабо понимать дополнительные типы, особенно те, которые определены извне.
alternateName Text Любое альтернативное название медицинской сущности.
description Text Короткое описание записи.
image URL
или ImageObject
URL изображения записи.
name Text Имя записи.
sameAs URL Адрес веб-страницы, которая недвусмысленно указывает на идентичность элемента. Например, ссылка на страницу элемента на Википедии, Freebase страницу или на официальный сайт.
url URL URL записи.
potentialAction Action Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role.
mainEntityOfPage CreativeWork
или URL
Указывает на страницу (или другую "CreativeWork"), для которой эта вещь является основной описываемой сущностью. Подробнее см. В [справочных материалах] (/docs/datamodel.html#mainEntityBackground).
disambiguatingDescription Text A sub property of description. A short description of the item used to disambiguate from other, similar items. Information from other properties (in particular, name) may be necessary for the description to be useful for disambiguation.
identifier URL
или Text
или PropertyValue
The identifier property represents any kind of identifier for any kind of [[Thing]], such as ISBNs, GTIN codes, UUIDs etc. Schema.org provides dedicated properties for representing many of these, either as textual strings or as URL (URI) links. See [background notes](/docs/datamodel.html#identifierBg) for more details.

Более конкретные типы



Объекты класса ContactPoint могут являтся значениями следующих свойств
Свойство В типах Описание
contactPoint Organization
или Person
Контактная информация человека.
contactPoints Organization
или Person
Контактная информация человека или организации. (В единственном числе contactPoint).
homeLocation Person Домашние контактные данные.
recipient Message
или CommunicateAction
или AuthorizeAction
или DonateAction
или GiveAction
или PayAction
или ReturnAction
или SendAction
или TipAction
A sub property of participant. The participant who is at the receiving end of the action.
servicePhone ServiceChannel The phone number to use to access the service.
serviceSmsNumber ServiceChannel The number to access the service by text message.
workLocation Person Рабочие контактные данные.
grantee DigitalDocumentPermission The person, organization, contact point, or audience that has been granted this permission.
bccRecipient Message A sub property of recipient. The recipient blind copied on a message.
ccRecipient Message A sub property of recipient. The recipient copied on a message.
toRecipient Message A sub property of recipient. The recipient who was directly sent the message.

Примеры

This example shows a JSON-LD description of services that do not necessarily have a direct
human-oriented HTML description. It describes a GovernmentService named "Veterans Affairs Emergency Mental Health",
its operator, service area and service details, such as its Veterans Crisis Line (including  phone contact line
hours of operation, language and other details).
This example is JSON only.
This example is JSON only.
<script type='application/ld+json'>
{
  "@context": "http://schema.org",
  "@type": "GovernmentService",
  "name": "Veterans Affairs Emergency Mental Health",
  "serviceType": "Psychiatric Emergency Services",
  "operator": {
    "@type": "GovernmentOrganization",
    "name": "US Department of Veterans Affairs"
  },
  "serviceArea": {
    "@type": "AdministrativeArea",
    "name": "Massachusetts"
  },
  "audience": {
    "@type": "CivicAudience",
    "name": "Veterans"
  },
  "availableChannel": {
    "@type": "ServiceChannel",
    "name": "Urgent Care Clinic",
    "availableLanguage": {
      "@type": "Language",
      "name": "Spanish",
      "alternateName": "es"
    },
    "serviceLocation": {
      "@type": "Hospital",
      "name": "VA Boston -- West Roxbury",
      "address": {
        "@type": "PostalAddress",
        "streetAddress": "1400 VFW Parkway",
        "addressLocality": "West Roxbury",
        "addressRegion": "MA",
        "postalCode": "02132"
      }
    }
  }
}
</script>
A fuller example that illustrates multiple contact numbers for a company,
including US toll-free numbers, a hearing-impaired number, and several contact categories.
This example is JSON-only.
This example is JSON-only.
<script type="application/ld+json">
{ "@context" : "http://schema.org",
  "@type" : "Organization",
  "url" : "http://www.t-mobile.com",
  "contactPoint" : [
    { "@type" : "ContactPoint",
      "telephone" : "+1-877-746-0909",
      "contactType" : "customer service",
      "contactOption" : "TollFree",
      "areaServed" : "US"
    } , {
      "@type" : "ContactPoint",
      "telephone" : "+1-505-998-3793",
      "contactType" : "customer service"
    } , {
      "@type" : "ContactPoint",
      "telephone" : "+1-877-296-1018",
      "contactType" : "customer service",
      "contactOption" : ["HearingImpairedSupported","TollFree"] ,
      "areaServed" : "US"
    } , {
      "@type" : "ContactPoint",
      "telephone" : "+1-877-453-1304",
      "contactType" : "technical support",
      "contactOption" : "TollFree",
      "areaServed" : ["US","CA"],
      "availableLanguage" : ["English","French"]
    } , {
      "@type" : "ContactPoint",
      "telephone" : "+1-877-453-1304",
      "contactType" : "bill payment",
      "contactOption" : "TollFree",
      "areaServed" : ["US","CA"]
    } ] }
</script>
Example specifying one customer service phone number.
This example is JSON-only.
This example is JSON-only.
<script type="application/ld+json">
{ "@context" : "http://schema.org",
  "@type" : "Organization",
  "url" : "http://www.your-company-site.com",
  "contactPoint" : [
    { "@type" : "ContactPoint",
      "telephone" : "+1-401-555-1212",
      "contactType" : "customer service"
    } ] }
</script>

Schema Version 3.3