forked from schemaorg/schemaorg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsdo-tv-listing-examples.txt
260 lines (232 loc) · 8.3 KB
/
sdo-tv-listing-examples.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
TYPES: #tv-listing1 Organization,BroadcastService
PRE-MARKUP:
WAAY is an affiliate of the ABC network and broadcasts in SD.
MICRODATA:
<div itemscope itemtype="http://schema.org/BroadcastService">
<span itemprop="name">WAAY-TV</span>
<span itemprop="broadcastDisplayName">ABC</span>
<span itemprop="videoFormat">SD</span>
<span itemprop="broadcastTimezone" content="-8:00">PST</span>
<div itemprop="broadcastAffiliateOf" itemscope itemtype="http://schema.org/Organization">
<span itemprop="name">ABC</span>
</div>
</div>
RDFA:
<div vocab="http://schema.org" typeof="BroadcastService">
<span property="name">WAAY-TV</span>
<span property="broadcastDisplayName">ABC</span>
<span property="videoFormat">SD</span>
<span property="broadcastTimezone" content="-8:00">PST</span>
<div property="broadcastAffiliateOf" typeof="Organization">
<span property="name">ABC</span>
</div>
</div>
JSON:
<script type="application/ld+json">
{
"@context":"http://schema.org",
"@type":"BroadcastService",
"name":"WAAY-TV",
"broadcastDisplayName":"ABC",
"videoFormat":"SD",
"broadcastTimezone": "-8:00",
"broadcastAffiliateOf":{
"@type":"Organization",
"name":"ABC"
}
}
</script>
TYPES: #tv-listing2 Organization,BroadcastService,TelevisionChannel,CableOrSatelliteService
PRE-MARKUP:
WAAY is channel 7 on Comcast cable.
MICRODATA:
<div itemscope itemtype="http://schema.org/TelevisionChannel">
<span itemprop="name">WAAY 7</span>
<span itemprop="broadcastChannelId">7</span>
<span itemprop="broadcastServiceTier">Premium</span>
<div itemprop="inBroadcastLineup" itemscope itemtype="http://schema.org/CableOrSatelliteService">
<span itemprop="name">Comcast</span>
</div>
<div itemprop="providesBroadcastService" itemscope itemtype="http://schema.org/BroadcastService">
<span itemprop="name">WAAY-TV</span>
<span itemprop="broadcastDisplayName">ABC</span>
<div itemprop="broadcastAffiliateOf" itemscope itemtype="http://schema.org/Organization">
<span itemprop="name">ABC</span>
</div>
</div>
</div>
RDFA:
<div vocab="http://schema.org" typeof="TelevisionChannel">
<span property="name">WAAY 7</span>
<span property="broadcastChannelId">7</span>
<span property="broadcastServiceTier">Premium</span>
<div property="inBroadcastLineup" typeof="CableOrSatelliteService">
<span property="name">Comcast</span>
</div>
<div property="providesBroadcastService" typeof="BroadcastService">
<span property="name">WAAY-TV</span>
<span property="broadcastDisplayName">ABC</span>
<div property="broadcastAffiliateOf" typeof="Organization">
<span property="name">ABC</span>
</div>
</div>
</div>
JSON:
<script type="application/ld+json">
{
"@context":"http://schema.org",
"@type":"TelevisionChannel",
"name": "WAAY 7",
"broadcastChannelId":"7",
"broadcastServiceTier":"Premium",
"inBroadcastLineup":{
"@type":"CableOrSatelliteService",
"name": "Comcast"
},
"providesBroadcastService":{
"@type":"BroadcastService",
"name": "WAAY-TV",
"broadcastDisplayName": "ABC",
"broadcastAffiliateOf":{
"@type":"Organization",
"name":"ABC"
}
}
}
</script>
TYPES: #tv-listing3 BroadcastEvent,BroadcastService,TVEpisode
PRE-MARKUP:
WAAY is broadcasting Modern Family at 9:00PM on October 12, 2014 in English with Spanish subtitles available.
MICRODATA:
<div itemscope itemtype="http://schema.org/BroadcastEvent">
<span itemprop="name">Modern Family - S6E8 - Three Turkeys</span>
<span itemprop="description">Phil and Luke take over Thanksgiving duties.</span>
<link itemprop="isLiveBroadcast" href="http://schema.org/False" />
<span itemprop="videoFormat">HD</span>
<span itemprop="inLanguage">en</span>
<span itemprop="subtitleLanguage">es</span>
<span itemprop="startDate" content="2014-10-12T21:00">starts 10/12/2014 9:00PM</span>
<span itemprop="endDate" content="2014-10-12T21:30">ends 10/12/2014 9:30PM</span>
<div itemprop="publishedOn" itemscope itemtype="http://schema.org/BroadcastService">
<span itemprop="name">WAAY-TV</span>
</div>
<div itemprop="workPerformed" itemscope itemtype="http://schema.org/TVEpisode">
<span itemprop="name">Modern Family: Three Turkeys</span>
</div>
</div>
RDFA:
<div vocab="http://schema.org" typeof="BroadcastEvent">
<span property="name">Modern Family - S6E8 - Three Turkeys</span>
<span property="description">Phil and Luke take over Thanksgiving duties.</span>
<link property="isLiveBroadcast" href="http://schema.org/True" />
<span property="videoFormat">HD</span>
<span property="inLanguage">en</span>
<span property="subtitleLanguage">es</span>
<span property="startDate" content="2014-10-12T21:00">starts 10/12/2014 9:00PM</span>
<span property="endDate" content="2014-10-12T21:30">ends 10/12/2014 9:30PM</span>
<div property="publishedOn" typeof="BroadcastService">
<span property="name">WAAY-TV</span>
</div>
<div property="workPerformed" typeof="TVEpisode">
<span property="name">Modern Family: Three Turkeys</span>
</div>
</div>
JSON:
<script type="application/ld+json">
{
"@context":"http://schema.org",
"@type":"BroadcastEvent",
"startDate":"2014-10-12T21:00",
"endDate":"2014-10-12T21:30",
"publishedOn":{
"@type":"BroadcastService",
"name": "WAAY-TV"
},
"workPerformed":{
"@type":"CreativeWork",
"name": "Modern Family: Three Turkeys"
},
"inLanguage":"en",
"subtitleLanguage":"es",
"videoFormat":"HD",
"isLiveBroadcast":false,
"name":"Modern Family - S6E8 - Three Turkeys",
"description":"Phil and Luke take over Thanksgiving duties."
}
</script>
TYPES: #tv-listing4 BroadcastEvent,SportsEvent, broadcastOfEvent, isLiveBroadcast, videoFormat, competitor
PRE-MARKUP:
A broadcast of the FIFA Women's World Cup 2015 final.
MICRODATA:
<div itemscope itemtype="http://schema.org/BroadcastEvent">
<span itemprop="name">FIFA Women's World Cup Final</span>
<span itemprop="description">US vs. Japan</span>
<link itemprop="isLiveBroadcast" href="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>
RDFA:
<div vocab="http://schema.org/" typeof="BroadcastEvent">
<span property="name">FIFA Women's World Cup Final</span>
<span property="description">US vs. Japan</span>
<link property="isLiveBroadcast" href="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>
JSON:
<script type="application/ld+json">
{
"@context":"http://schema.org",
"@type":"BroadcastEvent",
"name": "FIFA Women's World Cup Final",
"description": "US vs. Japan",
"isLiveBroadcast": 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>