⚠️ Важно: данный сайт не имеет отношения к владельцам schema.org, это всего лишь любительский (неофициальный) перевод. Сайт сделан для тех кто плохо воспринимает технический английский. Оригинальную и актуальную информацию на английском языке вы можете найти тут: schema.org/ccRecipient.

ccRecipient

Свойство ccRecipient на сайте Schema.org.

ccRecipient - Свойство Schema.org
Описание: Подсвойство recipient. Получатель копии сообщения.

Свойство ccRecipient принадлежит категории recipient и является подсвойством этой категории. ccRecipient описывает получателя, который был добавлен в копию сообщения.

Это свойство часто используется в различных видах электронной почты и сообщениях, когда необходимо отправить копию адресованному сообщению другим пользователям. Для правильного применения данной микроразметки на сайте необходимо явно указывать в коде, что получатель является копией и отличается от основного адресата.

Values expected to be one of these types

Used on these types

Examples

Example 1
Copied
Example notes or example HTML without markup.
An message from Dom Portwood to Peter Gibbons about TPS reports, cc'ing Bill Lumbergh and bcc'ing tps-consulting@example.com
Example encoded as Microdata embedded in HTML.
<div itemscope itemtype="https://schema.org/EmailMessage">
  <div itemscope itemprop="sender" itemtype="https://schema.org/Person">
    <meta itemprop="name" content="Dom Portwood" />
    <span itemprop="email">dportwood@example.com</span>
  </div>
  <div itemscope itemprop="toRecipient" itemtype="https://schema.org/Person">
    <meta itemprop="name" content="Peter Gibbons" />
    <span itemprop="email">pgibbons@example.com</span>
  </div>
  <div itemscope itemprop="ccRecipient" itemtype="https://schema.org/Person">
    <meta itemprop="name" content="Bill Lumbergh" />
    <span itemprop="email">blumbergh@example.com</span>
  </div>
  <div itemscope itemprop="bccRecipient" itemtype="https://schema.org/ContactPoint">
    <span itemprop="email">tps-consulting@example.com</span>
  </div>
  <div itemscope itemprop="about" itemtype="https://schema.org/Thing">
    <meta itemprop="name" content="TPS reports" />
  </div>
  <meta itemprop="datePublished" content="2016-02-29" />
  <meta itemprop="dateRead" content="2016-03-03" />
  <div itemscope itemprop="messageAttachment" itemtype="https://schema.org/CreativeWork">
    <meta itemprop="name" content="New coversheet" />
  </div>
</div>
Example encoded as RDFa embedded in HTML.
<div vocab="https://schema.org/" typeof="EmailMessage">
  <div property="sender" typeof="Person">
    <meta property="name" content="Dom Portwood" />
    <span property="email">dportwood@example.com</span>
  </div>
  <div property="toRecipient" typeof="Person">
    <meta property="name" content="Peter Gibbons" />
    <span property="email">pgibbons@example.com</span>
  </div>
  <div property="ccRecipient" typeof="Person">
    <meta property="name" content="Bill Lumbergh" />
    <span property="email">blumbergh@example.com</span>
  </div>
  <div property="bccRecipient" typeof="ContactPoint">
    <span property="email">tps-consulting@example.com</span>
  </div>
  <div property="about" typeof="Thing">
    <meta property="name" content="TPS reports" />
  </div>
  <meta property="datePublished" content="2016-02-29" />
  <meta property="dateRead" content="2016-03-03" />
  <div property="messageAttachment" typeof="CreativeWork">
    <meta property="name" content="New coversheet" />
  </div>
</div>
Example encoded as JSON-LD in a HTML script tag.
<script type="application/ld+json">
{
  "@context": "https://schema.org/",
  "@type": "EmailMessage",
  "sender": {
    "@type": "Person",
    "name": "Dom Portwood",
    "email": "dportwood@example.com"
  },
  "toRecipient": {
    "@type": "Person",
    "name": "Peter Gibbons",
    "email": "pgibbons@example.com"
  },
  "ccRecipient": {
    "@type": "Person",
    "name": "Bill Lumbergh",
    "email": "blumbergh@example.com"
  },
  "ccRecipient": {
    "@type": "ContactPoint",
    "email": "tps-consulting@example.com"
  },
  "about": {
    "@type": "Thing",
    "name": "TPS reports"
  },
  "datePublished": "2016-02-29",
  "dateRead": "2016-03-03",
  "messageAttachment": {
    "@type": "CreativeWork",
    "name": "New coversheet"
  }
}
</script>
Structured representation of the JSON-LD example.

Обсуждение "ccRecipient"