videoFormat

Canonical URL: http://schema.org/videoFormat

Thing > Property > videoFormat

The type of screening or video broadcast used (e.g. IMAX, 3D, SD, HD, etc.).
Values expected to be one of these types
Text
Used on these types
BroadcastEvent
BroadcastService
ScreeningEvent


Examples

Example 1
A broadcast of the FIFA Women's World Cup 2015 final.
<div itemscope itemtype="http://schema.org/BroadcastEvent">
  <span itemprop="name">FIFA Women's World Cup Final</span>
  <span itemprop="description">US vs. Japan</span>
  <meta itemprop="isLiveBroadcast" content="http://schema.org/True" />
  <span itemprop="videoFormat">HD</span>
  <span itemprop="startDate" content="2015-07-05T15:30-07:00">starts 07/05/2015 3:30PM</span>
  <div itemprop="broadcastOfEvent" itemscope itemtype="http://schema.org/SportsEvent">
    <span itemprop="name">FIFA Women's World Cup Final 2015</span>
    <div itemprop="competitor" itemscope itemtype="http://schema.org/SportsTeam">
      <meta itemprop="name" content="United States" />
    </div>
    <div itemprop="competitor" itemscope itemtype="http://schema.org/SportsTeam">
      <meta itemprop="name" content="Japan" />
    </div>
    <meta itemprop="startDate" content="2015-07-05T16:00-07:00" />
    <div itemprop="location" itemscope itemtype="http://schema.org/City">
      Played in <span itemprop="name">Vancouver</span>
    </div>
  </div>
</div>
<div vocab="http://schema.org/" typeof="BroadcastEvent">
  <span property="name">FIFA Women's World Cup Final</span>
  <span property="description">US vs. Japan</span>
  <meta property="isLiveBroadcast" content="http://schema.org/True" />
  <span property="videoFormat">HD</span>
  <span property="startDate" content="2015-07-05T15:30-07:00">starts 07/05/2015 3:30PM</span>
  <div property="broadcastOfEvent" typeof="SportsEvent">
    <span property="name">FIFA Women's World Cup Final 2015</span>
    <div property="competitor" typeof="SportsTeam">
      <meta property="name" content="United States" />
    </div>
    <div property="competitor" typeof="SportsTeam">
      <meta property="name" content="Japan" />
    </div>
    <meta property="startDate" content="2015-07-05T16:00-07:00" />
    <div property="location" typeof="City">
      Played in <span property="name">Vancouver</span>
    </div>
  </div>
</div>
<script type="application/ld+json">
{
  "@context":"http://schema.org",
  "@type":"BroadcastEvent",
  "name": "FIFA Women's World Cup Final",
  "description": "US vs. Japan",
  "isLiveBroadcast": "http://schema.org/True",
  "videoFormat": "HD",
  "startDate": "2015-07-05T15:30-07:00",
  "broadcastOfEvent": {
    "@type": "SportsEvent",
    "name": "FIFA Women's World Cup Final 2015",
    "competitor": [
      {
        "@type": "SportsTeam",
        "name": "United States"
      },
      {
        "@type": "SportsTeam",
        "name": "Japan"
      }
    ],
    "startDate": "2015-07-05T16:00-07:00",
    "location": {
      "@type": "City",
      "name": "Vancouver"
    }
  }
}
</script>

Schema Version 3.2