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

ccRecipient

A Schema.org Property
A sub property of recipient. The recipient copied on a message.

Values expected to be one of these types

Used on these types

Examples

Example 1
Copied
Example notes or example HTML without markup.
  1. 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.
  1. <div itemscope itemtype="https://schema.org/EmailMessage">
  2.   <div itemscope itemprop="sender" itemtype="https://schema.org/Person">
  3.     <meta itemprop="name" content="Dom Portwood" />
  4.     <span itemprop="email">dportwood@example.com</span>
  5.   </div>
  6.   <div itemscope itemprop="toRecipient" itemtype="https://schema.org/Person">
  7.     <meta itemprop="name" content="Peter Gibbons" />
  8.     <span itemprop="email">pgibbons@example.com</span>
  9.   </div>
  10.   <div itemscope itemprop="ccRecipient" itemtype="https://schema.org/Person">
  11.     <meta itemprop="name" content="Bill Lumbergh" />
  12.     <span itemprop="email">blumbergh@example.com</span>
  13.   </div>
  14.   <div itemscope itemprop="bccRecipient" itemtype="https://schema.org/ContactPoint">
  15.     <span itemprop="email">tps-consulting@example.com</span>
  16.   </div>
  17.   <div itemscope itemprop="about" itemtype="https://schema.org/Thing">
  18.     <meta itemprop="name" content="TPS reports" />
  19.   </div>
  20.   <meta itemprop="datePublished" content="2016-02-29" />
  21.   <meta itemprop="dateRead" content="2016-03-03" />
  22.   <div itemscope itemprop="messageAttachment" itemtype="https://schema.org/CreativeWork">
  23.     <meta itemprop="name" content="New coversheet" />
  24.   </div>
  25. </div>
Example encoded as RDFa embedded in HTML.
  1. <div vocab="https://schema.org/" typeof="EmailMessage">
  2.   <div property="sender" typeof="Person">
  3.     <meta property="name" content="Dom Portwood" />
  4.     <span property="email">dportwood@example.com</span>
  5.   </div>
  6.   <div property="toRecipient" typeof="Person">
  7.     <meta property="name" content="Peter Gibbons" />
  8.     <span property="email">pgibbons@example.com</span>
  9.   </div>
  10.   <div property="ccRecipient" typeof="Person">
  11.     <meta property="name" content="Bill Lumbergh" />
  12.     <span property="email">blumbergh@example.com</span>
  13.   </div>
  14.   <div property="bccRecipient" typeof="ContactPoint">
  15.     <span property="email">tps-consulting@example.com</span>
  16.   </div>
  17.   <div property="about" typeof="Thing">
  18.     <meta property="name" content="TPS reports" />
  19.   </div>
  20.   <meta property="datePublished" content="2016-02-29" />
  21.   <meta property="dateRead" content="2016-03-03" />
  22.   <div property="messageAttachment" typeof="CreativeWork">
  23.     <meta property="name" content="New coversheet" />
  24.   </div>
  25. </div>
Example encoded as JSON-LD in a HTML script tag.
  1. <script type="application/ld+json">
  2. {
  3.   "@context": "https://schema.org/",
  4.   "@type": "EmailMessage",
  5.   "sender": {
  6.     "@type": "Person",
  7.     "name": "Dom Portwood",
  8.     "email": "dportwood@example.com"
  9.   },
  10.   "toRecipient": {
  11.     "@type": "Person",
  12.     "name": "Peter Gibbons",
  13.     "email": "pgibbons@example.com"
  14.   },
  15.   "ccRecipient": {
  16.     "@type": "Person",
  17.     "name": "Bill Lumbergh",
  18.     "email": "blumbergh@example.com"
  19.   },
  20.   "ccRecipient": {
  21.     "@type": "ContactPoint",
  22.     "email": "tps-consulting@example.com"
  23.   },
  24.   "about": {
  25.     "@type": "Thing",
  26.     "name": "TPS reports"
  27.   },
  28.   "datePublished": "2016-02-29",
  29.   "dateRead": "2016-03-03",
  30.   "messageAttachment": {
  31.     "@type": "CreativeWork",
  32.     "name": "New coversheet"
  33.   }
  34. }
  35. </script>
Structured representation of the JSON-LD example.