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

isLiveBroadcast

A Schema.org Property
True if the broadcast is of a live event.

Values expected to be one of these types

Used on these types

Examples

Example 1
Copied
Example notes or example HTML without markup.
  1. A broadcast of the FIFA Women's World Cup 2015 final.
Example encoded as Microdata embedded in HTML.
  1. <div itemscope itemtype="https://schema.org/BroadcastEvent">
  2.   <span itemprop="name">FIFA Women's World Cup Final</span>
  3.   <span itemprop="description">US vs. Japan</span>
  4.   <link itemprop="isLiveBroadcast" href="https://schema.org/True" />
  5.   <span itemprop="videoFormat">HD</span>
  6.   <span itemprop="startDate" content="2015-07-05T15:30-07:00">starts 07/05/2015 3:30PM</span>
  7.   <div itemprop="broadcastOfEvent" itemscope itemtype="https://schema.org/SportsEvent">
  8.     <span itemprop="name">FIFA Women's World Cup Final 2015</span>
  9.     <div itemprop="competitor" itemscope itemtype="https://schema.org/SportsTeam">
  10.       <meta itemprop="name" content="United States" />
  11.     </div>
  12.     <div itemprop="competitor" itemscope itemtype="https://schema.org/SportsTeam">
  13.       <meta itemprop="name" content="Japan" />
  14.     </div>
  15.     <meta itemprop="startDate" content="2015-07-05T16:00-07:00" />
  16.     <div itemprop="location" itemscope itemtype="https://schema.org/City">
  17.       Played in <span itemprop="name">Vancouver</span>
  18.     </div>
  19.   </div>
  20. </div>
Example encoded as RDFa embedded in HTML.
  1. <div vocab="https://schema.org/" typeof="BroadcastEvent">
  2.   <span property="name">FIFA Women's World Cup Final</span>
  3.   <span property="description">US vs. Japan</span>
  4.   <link property="isLiveBroadcast" href="https://schema.org/True" />
  5.   <span property="videoFormat">HD</span>
  6.   <span property="startDate" content="2015-07-05T15:30-07:00">starts 07/05/2015 3:30PM</span>
  7.   <div property="broadcastOfEvent" typeof="SportsEvent">
  8.     <span property="name">FIFA Women's World Cup Final 2015</span>
  9.     <div property="competitor" typeof="SportsTeam">
  10.       <meta property="name" content="United States" />
  11.     </div>
  12.     <div property="competitor" typeof="SportsTeam">
  13.       <meta property="name" content="Japan" />
  14.     </div>
  15.     <meta property="startDate" content="2015-07-05T16:00-07:00" />
  16.     <div property="location" typeof="City">
  17.       Played in <span property="name">Vancouver</span>
  18.     </div>
  19.   </div>
  20. </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":"BroadcastEvent",
  5.   "name": "FIFA Women's World Cup Final",
  6.   "description": "US vs. Japan",
  7.   "isLiveBroadcast": true,
  8.   "videoFormat": "HD",
  9.   "startDate": "2015-07-05T15:30-07:00",
  10.   "broadcastOfEvent": {
  11.     "@type": "SportsEvent",
  12.     "name": "FIFA Women's World Cup Final 2015",
  13.     "competitor": [
  14.       {
  15.         "@type": "SportsTeam",
  16.         "name": "United States"
  17.       },
  18.       {
  19.         "@type": "SportsTeam",
  20.         "name": "Japan"
  21.       }
  22.     ],
  23.     "startDate": "2015-07-05T16:00-07:00",
  24.     "location": {
  25.       "@type": "City",
  26.       "name": "Vancouver"
  27.     }
  28.   }
  29. }
  30. </script>
Structured representation of the JSON-LD example.