poms 1.2.2 → 2.0.0.a
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +17 -0
- data/.rubocop.yml +24 -0
- data/.ruby-version +1 -0
- data/.todo.reek +50 -0
- data/CHANGELOG.md +1 -0
- data/Gemfile +4 -0
- data/README.md +54 -6
- data/bin/ci-run +57 -0
- data/bin/ci-setup +46 -0
- data/bin/reek +16 -0
- data/bin/rspec +16 -0
- data/bin/rubocop +16 -0
- data/examples/fetch.rb +16 -0
- data/examples/search.rb +17 -0
- data/lib/poms.rb +84 -156
- data/lib/poms/api/auth.rb +42 -22
- data/lib/poms/api/client.rb +58 -0
- data/lib/poms/api/drivers/net_http.rb +69 -0
- data/lib/poms/api/json_client.rb +35 -0
- data/lib/poms/api/pagination_client.rb +67 -0
- data/lib/poms/api/request.rb +29 -31
- data/lib/poms/api/response.rb +31 -0
- data/lib/poms/api/search.rb +38 -0
- data/lib/poms/api/uris.rb +10 -0
- data/lib/poms/api/uris/media.rb +41 -0
- data/lib/poms/api/uris/schedule.rb +28 -0
- data/lib/poms/configuration.rb +59 -0
- data/lib/poms/errors.rb +26 -0
- data/lib/poms/fields.rb +26 -3
- data/lib/poms/timestamp.rb +10 -3
- data/lib/poms/version.rb +1 -1
- data/poms.gemspec +10 -11
- metadata +59 -128
- data/Gemfile.lock +0 -120
- data/lib/poms/base.rb +0 -8
- data/lib/poms/broadcast.rb +0 -55
- data/lib/poms/builder.rb +0 -92
- data/lib/poms/builderless/broadcast.rb +0 -37
- data/lib/poms/builderless/clip.rb +0 -36
- data/lib/poms/connect.rb +0 -11
- data/lib/poms/has_ancestors.rb +0 -54
- data/lib/poms/has_base_attributes.rb +0 -29
- data/lib/poms/merged_series.rb +0 -28
- data/lib/poms/poms_error.rb +0 -5
- data/lib/poms/schedule_event.rb +0 -34
- data/lib/poms/season.rb +0 -13
- data/lib/poms/series.rb +0 -12
- data/lib/poms/views.rb +0 -52
- data/spec/fabricators/poms_fabricator.rb +0 -44
- data/spec/fixtures/poms_broadcast.json +0 -318
- data/spec/fixtures/poms_broadcast_multiple_schedule_events.json +0 -354
- data/spec/fixtures/poms_broadcast_pippi.json +0 -180
- data/spec/fixtures/poms_group.json +0 -1087
- data/spec/fixtures/poms_series.json +0 -49
- data/spec/fixtures/poms_single_broadcast_by_channel.json +0 -136
- data/spec/fixtures/poms_zapp.json +0 -47363
- data/spec/fixtures/vcr_cassettes/poms/builderless/broadcast_starts_at/returns_a_datetime.yml +0 -53
- data/spec/fixtures/vcr_cassettes/poms/builderless/clip/has_a_position.yml +0 -43
- data/spec/fixtures/vcr_cassettes/poms/builderless/clip/has_a_title.yml +0 -43
- data/spec/fixtures/vcr_cassettes/poms/builderless/clip/has_a_video_url.yml +0 -43
- data/spec/fixtures/vcr_cassettes/poms/builderless/clip/has_an_image_id.yml +0 -43
- data/spec/fixtures/vcr_cassettes/poms/fetch_broadcasts_fetch_current_broadcast_fetches_the_current_broadcast.yml +0 -60
- data/spec/fixtures/vcr_cassettes/poms/fetch_broadcasts_fetch_next_broadcast_and_key_fetches_the_current_broadcast.yml +0 -68
- data/spec/fixtures/vcr_cassettes/poms/fetch_broadcasts_fetch_next_broadcast_and_key_returns_the_key.yml +0 -68
- data/spec/fixtures/vcr_cassettes/poms/merged_series/turns_the_json_into_a_hash.yml +0 -46
- data/spec/fixtures/vcr_cassettes/poms_fetch/a_broadcast_has_scheduled_events_with_last_with_starts_at.yml +0 -43
- data/spec/fixtures/vcr_cassettes/poms_fetch/a_clip_has_a_title.yml +0 -43
- data/spec/fixtures/vcr_cassettes/poms_fetch/an_aankeiler_has_images.yml +0 -43
- data/spec/fixtures/vcr_cassettes/poms_fetch_broadcasts_for_serie/returns_nil_when_a_broadcast_does_not_exist.yml +0 -42
- data/spec/fixtures/vcr_cassettes/poms_fetch_current_broadcast/has_a_mid.yml +0 -51
- data/spec/fixtures/vcr_cassettes/poms_fetch_current_broadcast/has_a_title.yml +0 -51
- data/spec/fixtures/vcr_cassettes/poms_fetch_current_broadcast/has_scheduled_events_with_last_with_starts_at.yml +0 -51
- data/spec/fixtures/vcr_cassettes/poms_fetch_current_broadcast_and_key/has_a_broadcast_with_a_mid.yml +0 -51
- data/spec/fixtures/vcr_cassettes/poms_fetch_current_broadcast_and_key/has_a_key.yml +0 -51
- data/spec/fixtures/vcr_cassettes/poms_fetch_descendant_mids/returns_a_list_of_mids.yml +0 -42
- data/spec/fixtures/vcr_cassettes/poms_fetch_descendants_for_serie/builds_a_list_of_broadcasts.yml +0 -102755
- data/spec/fixtures/vcr_cassettes/poms_fetch_group/has_a_child_with_a_media_type.yml +0 -448
- data/spec/fixtures/vcr_cassettes/poms_fetch_group/has_a_child_with_a_title.yml +0 -448
- data/spec/fixtures/vcr_cassettes/poms_fetch_playlist_clips/creates_an_array_of_clips.yml +0 -1051
- data/spec/integration/poms_spec.rb +0 -87
- data/spec/lib/poms/api/auth_spec.rb +0 -34
- data/spec/lib/poms/api/request_spec.rb +0 -30
- data/spec/lib/poms/broadcast_spec.rb +0 -49
- data/spec/lib/poms/builder_spec.rb +0 -53
- data/spec/lib/poms/builderless/broadcast_spec.rb +0 -11
- data/spec/lib/poms/builderless/clip_spec.rb +0 -20
- data/spec/lib/poms/fields_spec.rb +0 -63
- data/spec/lib/poms/merged_series_spec.rb +0 -26
- data/spec/lib/poms/schedule_event_spec.rb +0 -15
- data/spec/lib/poms/timestamp_spec.rb +0 -13
- data/spec/lib/poms/views_spec.rb +0 -38
- data/spec/lib/poms_spec.rb +0 -137
- data/spec/spec_helper.rb +0 -32
@@ -1,354 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"_id": "NPS_1223852",
|
3
|
-
"_rev": "63-cb150c34f7f8fa18d547be5d900b0ff3",
|
4
|
-
"avAttributes": {
|
5
|
-
"audioAttributes": {
|
6
|
-
"numberOfChannels": 2
|
7
|
-
},
|
8
|
-
"videoAttributes": {
|
9
|
-
"aspectRatio": "16:9",
|
10
|
-
"color": "BLACK_AND_WHITE_AND_COLOR"
|
11
|
-
}
|
12
|
-
},
|
13
|
-
"avType": "VIDEO",
|
14
|
-
"broadcasters": [
|
15
|
-
"NPS",
|
16
|
-
"NTR",
|
17
|
-
"Zapp"
|
18
|
-
],
|
19
|
-
"creationDate": 1367962603105,
|
20
|
-
"credits": [
|
21
|
-
{
|
22
|
-
"familyName": "Nienke",
|
23
|
-
"givenName": "",
|
24
|
-
"role": "PRESENTER"
|
25
|
-
}
|
26
|
-
],
|
27
|
-
"crids": [
|
28
|
-
"crid://tmp.program.omroep.nl/15641305"
|
29
|
-
],
|
30
|
-
"descendantOf": [
|
31
|
-
{
|
32
|
-
"midRef": "NPS_1217585",
|
33
|
-
"type": "SEASON",
|
34
|
-
"urnRef": "urn:vpro:media:group:16805225"
|
35
|
-
},
|
36
|
-
{
|
37
|
-
"midRef": "POMS_S_NTR_059960",
|
38
|
-
"type": "SERIES",
|
39
|
-
"urnRef": "urn:vpro:media:group:3731098"
|
40
|
-
}
|
41
|
-
],
|
42
|
-
"descriptions": [
|
43
|
-
{
|
44
|
-
"owner": "WHATS_ON",
|
45
|
-
"type": "MAIN",
|
46
|
-
"value": "Nienke gaat naar Makkum in Friesland. De Friese klei, die daar al eeuwen onder de grond ligt, is ideaal voor het maken van aardewerk. Nienke volgt het hele giet- en bakproces totdat er een prachtig stuk nieuw aardewerk geboren is. En hoe kom je te weten of het aardewerk goed gelukt is? Door heel goed te luisteren! www.hetklokhuis.nl"
|
47
|
-
},
|
48
|
-
{
|
49
|
-
"owner": "MIS",
|
50
|
-
"type": "SHORT",
|
51
|
-
"value": "Nienke gaat naar Makkum in Friesland. De Friese klei die daar al eeuwen onder de grond ligt is ideaal voor het maken van aardewerk. Nienke volgt het hele giet- en bakproces."
|
52
|
-
},
|
53
|
-
{
|
54
|
-
"owner": "CERES",
|
55
|
-
"type": "SHORT",
|
56
|
-
"value": "Nienke gaat naar Makkum in Friesland. De Friese klei die daar al eeuwen onder de grond ligt is ideaal voor het maken van aardewerk. Nienke volgt het hele giet- en bakproces."
|
57
|
-
},
|
58
|
-
{
|
59
|
-
"owner": "CERES",
|
60
|
-
"type": "SUB",
|
61
|
-
"value": "De eerste reportage van onze nieuwe presentatrice Nienke! Hoe zal ze het er vanaf brengen? Nienke gaat naar Makkum in Friesland. De Friese klei die daar al eeuwen onder de grond ligt is ideaal voor het maken van aardewerk. Nienke volgt het hele giet- en bakproces totdat er een prachtig stuk nieuw aardewerk geboren is. En hoe kom je te weten of het aardewerk goed gelukt is? Door heel goed te luisteren!"
|
62
|
-
},
|
63
|
-
{
|
64
|
-
"owner": "MIS",
|
65
|
-
"type": "EPISODE",
|
66
|
-
"value": "De eerste reportage van onze nieuwe presentatrice Nienke! Hoe zal ze het er vanaf brengen? Nienke gaat naar Makkum in Friesland. De Friese klei die daar al eeuwen onder de grond ligt is ideaal voor het maken van aardewerk. Nienke volgt het hele giet- en bakproces totdat er een prachtig stuk nieuw aardewerk geboren is. En hoe kom je te weten of het aardewerk goed gelukt is? Door heel goed te luisteren!"
|
67
|
-
}
|
68
|
-
],
|
69
|
-
"duration": 1320000,
|
70
|
-
"embeddable": true,
|
71
|
-
"episodeOf": [
|
72
|
-
{
|
73
|
-
"added": 1369773121035,
|
74
|
-
"highlighted": false,
|
75
|
-
"index": 3407,
|
76
|
-
"midRef": "NPS_1217585",
|
77
|
-
"type": "SEASON",
|
78
|
-
"urnRef": "urn:vpro:media:group:16805225"
|
79
|
-
}
|
80
|
-
],
|
81
|
-
"genres": [
|
82
|
-
"Informatief",
|
83
|
-
"Jeugd"
|
84
|
-
],
|
85
|
-
"images": [
|
86
|
-
{
|
87
|
-
"creationDate": 1369760403678,
|
88
|
-
"description": "Nienke gaat naar Makkum in Friesland. De Friese klei die daar al eeuwen onder de grond ligt is ideaal voor het maken van aardewerk. Nienke volgt het hele giet- en bakproces.",
|
89
|
-
"highlighted": false,
|
90
|
-
"imageUri": "urn:vpro:image:186997",
|
91
|
-
"lastModified": 1369760410677,
|
92
|
-
"owner": "NEBO",
|
93
|
-
"title": "Het Klokhuis",
|
94
|
-
"type": "STILL",
|
95
|
-
"urn": "urn:vpro:media:image:26079434",
|
96
|
-
"workflow": "PUBLISHED"
|
97
|
-
},
|
98
|
-
{
|
99
|
-
"creationDate": 1369760407265,
|
100
|
-
"description": "Nienke gaat naar Makkum in Friesland. De Friese klei die daar al eeuwen onder de grond ligt is ideaal voor het maken van aardewerk. Nienke volgt het hele giet- en bakproces.",
|
101
|
-
"highlighted": false,
|
102
|
-
"imageUri": "urn:vpro:image:186998",
|
103
|
-
"lastModified": 1369760410678,
|
104
|
-
"owner": "NEBO",
|
105
|
-
"title": "Het Klokhuis",
|
106
|
-
"type": "STILL",
|
107
|
-
"urn": "urn:vpro:media:image:26079435",
|
108
|
-
"workflow": "PUBLISHED"
|
109
|
-
},
|
110
|
-
{
|
111
|
-
"creationDate": 1369760410567,
|
112
|
-
"description": "Nienke gaat naar Makkum in Friesland. De Friese klei die daar al eeuwen onder de grond ligt is ideaal voor het maken van aardewerk. Nienke volgt het hele giet- en bakproces.",
|
113
|
-
"highlighted": false,
|
114
|
-
"imageUri": "urn:vpro:image:186999",
|
115
|
-
"lastModified": 1369760410678,
|
116
|
-
"owner": "NEBO",
|
117
|
-
"title": "Het Klokhuis",
|
118
|
-
"type": "STILL",
|
119
|
-
"urn": "urn:vpro:media:image:26079436",
|
120
|
-
"workflow": "PUBLISHED"
|
121
|
-
}
|
122
|
-
],
|
123
|
-
"languages": [
|
124
|
-
"NL"
|
125
|
-
],
|
126
|
-
"lastModified": 1369876951297,
|
127
|
-
"locations": [
|
128
|
-
{
|
129
|
-
"avAttributes": {
|
130
|
-
"avFileFormat": "HASP"
|
131
|
-
},
|
132
|
-
"creationDate": 1369760765709,
|
133
|
-
"lastModified": 1369760765858,
|
134
|
-
"owner": "CERES",
|
135
|
-
"programUrl": "odip+http://odi.omroep.nl/video/adaptive/NPS_1223852",
|
136
|
-
"type": "INTERNAL",
|
137
|
-
"urn": "urn:vpro:media:location:26079497",
|
138
|
-
"workflow": "PUBLISHED"
|
139
|
-
},
|
140
|
-
{
|
141
|
-
"avAttributes": {
|
142
|
-
"avFileFormat": "MP4",
|
143
|
-
"bitrate": 204800,
|
144
|
-
"videoAttributes": {
|
145
|
-
"aspectRatio": "16:9",
|
146
|
-
"videoCoding": "MP4"
|
147
|
-
}
|
148
|
-
},
|
149
|
-
"creationDate": 1369766645862,
|
150
|
-
"lastModified": 1369766645997,
|
151
|
-
"owner": "NEBO",
|
152
|
-
"programUrl": "odi+http://odi.omroep.nl/video/h264_sb/NPS_1223852",
|
153
|
-
"publishStart": 1369759752000,
|
154
|
-
"type": "EXTERNAL",
|
155
|
-
"urn": "urn:vpro:media:location:26080644",
|
156
|
-
"workflow": "PUBLISHED"
|
157
|
-
},
|
158
|
-
{
|
159
|
-
"avAttributes": {
|
160
|
-
"avFileFormat": "MP4",
|
161
|
-
"bitrate": 512000,
|
162
|
-
"videoAttributes": {
|
163
|
-
"aspectRatio": "16:9",
|
164
|
-
"videoCoding": "MP4"
|
165
|
-
}
|
166
|
-
},
|
167
|
-
"creationDate": 1369766645860,
|
168
|
-
"lastModified": 1369766645998,
|
169
|
-
"owner": "NEBO",
|
170
|
-
"programUrl": "odi+http://odi.omroep.nl/video/h264_bb/NPS_1223852",
|
171
|
-
"publishStart": 1369759752000,
|
172
|
-
"type": "EXTERNAL",
|
173
|
-
"urn": "urn:vpro:media:location:26080647",
|
174
|
-
"workflow": "PUBLISHED"
|
175
|
-
},
|
176
|
-
{
|
177
|
-
"avAttributes": {
|
178
|
-
"avFileFormat": "MP4",
|
179
|
-
"bitrate": 1024000,
|
180
|
-
"videoAttributes": {
|
181
|
-
"aspectRatio": "16:9",
|
182
|
-
"videoCoding": "MP4"
|
183
|
-
}
|
184
|
-
},
|
185
|
-
"creationDate": 1369766645862,
|
186
|
-
"lastModified": 1369766646000,
|
187
|
-
"owner": "NEBO",
|
188
|
-
"programUrl": "odi+http://odi.omroep.nl/video/h264_std/NPS_1223852",
|
189
|
-
"publishStart": 1369759752000,
|
190
|
-
"type": "EXTERNAL",
|
191
|
-
"urn": "urn:vpro:media:location:26080650",
|
192
|
-
"workflow": "PUBLISHED"
|
193
|
-
},
|
194
|
-
{
|
195
|
-
"avAttributes": {
|
196
|
-
"avFileFormat": "WVC1",
|
197
|
-
"bitrate": 1024000,
|
198
|
-
"videoAttributes": {
|
199
|
-
"aspectRatio": "16:9",
|
200
|
-
"videoCoding": "MP4"
|
201
|
-
}
|
202
|
-
},
|
203
|
-
"creationDate": 1369766645861,
|
204
|
-
"lastModified": 1369766646002,
|
205
|
-
"owner": "NEBO",
|
206
|
-
"programUrl": "odi+http://odi.omroep.nl/video/wvc1_std/NPS_1223852",
|
207
|
-
"publishStart": 1369759752000,
|
208
|
-
"type": "EXTERNAL",
|
209
|
-
"urn": "urn:vpro:media:location:26080653",
|
210
|
-
"workflow": "PUBLISHED"
|
211
|
-
},
|
212
|
-
{
|
213
|
-
"avAttributes": {
|
214
|
-
"avFileFormat": "WM",
|
215
|
-
"bitrate": 204800,
|
216
|
-
"videoAttributes": {
|
217
|
-
"aspectRatio": "16:9",
|
218
|
-
"videoCoding": "MP4"
|
219
|
-
}
|
220
|
-
},
|
221
|
-
"creationDate": 1369766645861,
|
222
|
-
"lastModified": 1369766646003,
|
223
|
-
"owner": "NEBO",
|
224
|
-
"programUrl": "odi+http://odi.omroep.nl/video/wmv_sb/NPS_1223852",
|
225
|
-
"publishStart": 1369759752000,
|
226
|
-
"type": "EXTERNAL",
|
227
|
-
"urn": "urn:vpro:media:location:26080656",
|
228
|
-
"workflow": "PUBLISHED"
|
229
|
-
},
|
230
|
-
{
|
231
|
-
"avAttributes": {
|
232
|
-
"avFileFormat": "WM",
|
233
|
-
"bitrate": 512000,
|
234
|
-
"videoAttributes": {
|
235
|
-
"aspectRatio": "16:9",
|
236
|
-
"videoCoding": "MP4"
|
237
|
-
}
|
238
|
-
},
|
239
|
-
"creationDate": 1369766645861,
|
240
|
-
"lastModified": 1369766646005,
|
241
|
-
"owner": "NEBO",
|
242
|
-
"programUrl": "odi+http://odi.omroep.nl/video/wmv_bb/NPS_1223852",
|
243
|
-
"publishStart": 1369759752000,
|
244
|
-
"type": "EXTERNAL",
|
245
|
-
"urn": "urn:vpro:media:location:26080659",
|
246
|
-
"workflow": "PUBLISHED"
|
247
|
-
}
|
248
|
-
],
|
249
|
-
"mid": "NPS_1223852",
|
250
|
-
"poProgID": "NPS_1223852",
|
251
|
-
"poSeriesID": "NPS_1217585",
|
252
|
-
"predictions": [
|
253
|
-
"INTERNETVOD"
|
254
|
-
],
|
255
|
-
"scheduleEvents": [
|
256
|
-
{
|
257
|
-
"channel": "NED3",
|
258
|
-
"duration": 897000,
|
259
|
-
"midRef": "NPS_1223852",
|
260
|
-
"poProgID": "NPS_1223852",
|
261
|
-
"poSeriesID": "NPS_1217585",
|
262
|
-
"start": 1369758445000,
|
263
|
-
"urnRef": "urn:vpro:media:program:25215274"
|
264
|
-
},
|
265
|
-
{
|
266
|
-
"avAttributes": {
|
267
|
-
"videoAttributes": {
|
268
|
-
"aspectRatio": "16:9"
|
269
|
-
}
|
270
|
-
},
|
271
|
-
"channel": "BVNT",
|
272
|
-
"duration": 900000,
|
273
|
-
"imi": "imi:20927",
|
274
|
-
"midRef": "NPS_1223852",
|
275
|
-
"poProgID": "NPS_1223852",
|
276
|
-
"poSeriesID": "NPS_1217585",
|
277
|
-
"repeat": {
|
278
|
-
"isRerun": true,
|
279
|
-
"value": ""
|
280
|
-
},
|
281
|
-
"start": 1370356500000,
|
282
|
-
"textSubtitles": "Teletekst ondertitels",
|
283
|
-
"urnRef": "urn:vpro:media:program:25215274"
|
284
|
-
},
|
285
|
-
{
|
286
|
-
"avAttributes": {
|
287
|
-
"videoAttributes": {
|
288
|
-
"aspectRatio": "16:9"
|
289
|
-
}
|
290
|
-
},
|
291
|
-
"channel": "BVNT",
|
292
|
-
"duration": 900000,
|
293
|
-
"imi": "imi:20954",
|
294
|
-
"midRef": "NPS_1223852",
|
295
|
-
"poProgID": "NPS_1223852",
|
296
|
-
"poSeriesID": "NPS_1217585",
|
297
|
-
"repeat": {
|
298
|
-
"isRerun": true,
|
299
|
-
"value": ""
|
300
|
-
},
|
301
|
-
"start": 1370399700000,
|
302
|
-
"textSubtitles": "Teletekst ondertitels",
|
303
|
-
"urnRef": "urn:vpro:media:program:25215274"
|
304
|
-
}
|
305
|
-
],
|
306
|
-
"segments": [],
|
307
|
-
"sortDate": 1369758445000,
|
308
|
-
"teletext": 226,
|
309
|
-
"titles": [
|
310
|
-
{
|
311
|
-
"owner": "NEBO",
|
312
|
-
"type": "MAIN",
|
313
|
-
"value": "Het Klokhuis"
|
314
|
-
},
|
315
|
-
{
|
316
|
-
"owner": "MIS",
|
317
|
-
"type": "MAIN",
|
318
|
-
"value": "Het Klokhuis"
|
319
|
-
},
|
320
|
-
{
|
321
|
-
"owner": "CERES",
|
322
|
-
"type": "MAIN",
|
323
|
-
"value": "Het Klokhuis"
|
324
|
-
},
|
325
|
-
{
|
326
|
-
"owner": "WHATS_ON",
|
327
|
-
"type": "MAIN",
|
328
|
-
"value": "Aardewerk"
|
329
|
-
},
|
330
|
-
{
|
331
|
-
"owner": "WHATS_ON",
|
332
|
-
"type": "ORIGINAL",
|
333
|
-
"value": "AARDEWERK"
|
334
|
-
},
|
335
|
-
{
|
336
|
-
"owner": "MIS",
|
337
|
-
"type": "EPISODE",
|
338
|
-
"value": "Aardewerk"
|
339
|
-
},
|
340
|
-
{
|
341
|
-
"owner": "CERES",
|
342
|
-
"type": "EPISODE",
|
343
|
-
"value": "Aardewerk"
|
344
|
-
}
|
345
|
-
],
|
346
|
-
"type": "BROADCAST",
|
347
|
-
"urn": "urn:vpro:media:program:25215274",
|
348
|
-
"websites": [
|
349
|
-
{
|
350
|
-
"value": "www.hetklokhuis.nl"
|
351
|
-
}
|
352
|
-
],
|
353
|
-
"workflow": "PUBLISHED"
|
354
|
-
}
|
@@ -1,180 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"_id": "POW_00107982",
|
3
|
-
"_rev": "50-55d005b84d208f6d283c4399785eb28c",
|
4
|
-
"avAttributes": {
|
5
|
-
"audioAttributes": {
|
6
|
-
"numberOfChannels": 2
|
7
|
-
},
|
8
|
-
"videoAttributes": {
|
9
|
-
"color": "BLACK_AND_WHITE_AND_COLOR"
|
10
|
-
}
|
11
|
-
},
|
12
|
-
"avType": "VIDEO",
|
13
|
-
"broadcasters": [
|
14
|
-
"AVRO"
|
15
|
-
],
|
16
|
-
"countries": [
|
17
|
-
"SE"
|
18
|
-
],
|
19
|
-
"creationDate": 1372999498816,
|
20
|
-
"credits": [],
|
21
|
-
"descendantOf": [
|
22
|
-
{
|
23
|
-
"midRef": "POW_00107959",
|
24
|
-
"type": "SEASON",
|
25
|
-
"urnRef": "urn:vpro:media:group:15067602"
|
26
|
-
}
|
27
|
-
],
|
28
|
-
"descriptions": [
|
29
|
-
{
|
30
|
-
"owner": "MIS",
|
31
|
-
"type": "MAIN",
|
32
|
-
"value": "Jeugdserie over Pippi, een stoere meid die allerlei spannende avonturen beleeft, samen met haar beste vrienden Tommy en Annika."
|
33
|
-
},
|
34
|
-
{
|
35
|
-
"owner": "WHATS_ON",
|
36
|
-
"type": "MAIN",
|
37
|
-
"value": "Zweedse serie over Pippi, een stoere meid die allerlei spannende avonturen beleeft, samen met haar beste vrienden Tommy en Annika."
|
38
|
-
}
|
39
|
-
],
|
40
|
-
"duration": 1200000,
|
41
|
-
"embeddable": true,
|
42
|
-
"episodeOf": [
|
43
|
-
{
|
44
|
-
"added": 1372999498928,
|
45
|
-
"highlighted": false,
|
46
|
-
"index": 21,
|
47
|
-
"midRef": "POW_00107959",
|
48
|
-
"type": "SEASON",
|
49
|
-
"urnRef": "urn:vpro:media:group:15067602"
|
50
|
-
}
|
51
|
-
],
|
52
|
-
"genres": [
|
53
|
-
"Jeugd",
|
54
|
-
"Serie/soap"
|
55
|
-
],
|
56
|
-
"hasSubtitles": true,
|
57
|
-
"images": [],
|
58
|
-
"lastModified": 1375303423988,
|
59
|
-
"locations": [],
|
60
|
-
"mid": "POW_00107982",
|
61
|
-
"poProgID": "POW_00107982",
|
62
|
-
"poSeriesID": "POW_00107959",
|
63
|
-
"scheduleEvents": [
|
64
|
-
{
|
65
|
-
"channel": "NED3",
|
66
|
-
"duration": 1249000,
|
67
|
-
"midRef": "POW_00107982",
|
68
|
-
"poProgID": "POW_00107982",
|
69
|
-
"poSeriesID": "POW_00107959",
|
70
|
-
"start": 1248444059000,
|
71
|
-
"urnRef": "urn:vpro:media:program:27387984"
|
72
|
-
},
|
73
|
-
{
|
74
|
-
"channel": "NED3",
|
75
|
-
"duration": 1249000,
|
76
|
-
"midRef": "POW_00107982",
|
77
|
-
"poProgID": "POW_00107982",
|
78
|
-
"poSeriesID": "POW_00107959",
|
79
|
-
"start": 1251467812000,
|
80
|
-
"urnRef": "urn:vpro:media:program:27387984"
|
81
|
-
},
|
82
|
-
{
|
83
|
-
"channel": "NED3",
|
84
|
-
"duration": 1217000,
|
85
|
-
"midRef": "POW_00107982",
|
86
|
-
"poProgID": "POW_00107982",
|
87
|
-
"poSeriesID": "POW_00107959",
|
88
|
-
"start": 1281103993000,
|
89
|
-
"urnRef": "urn:vpro:media:program:27387984"
|
90
|
-
},
|
91
|
-
{
|
92
|
-
"channel": "NED3",
|
93
|
-
"duration": 1217000,
|
94
|
-
"midRef": "POW_00107982",
|
95
|
-
"poProgID": "POW_00107982",
|
96
|
-
"poSeriesID": "POW_00107959",
|
97
|
-
"start": 1311001962000,
|
98
|
-
"urnRef": "urn:vpro:media:program:27387984"
|
99
|
-
},
|
100
|
-
{
|
101
|
-
"channel": "NED3",
|
102
|
-
"duration": 1217000,
|
103
|
-
"midRef": "POW_00107982",
|
104
|
-
"poProgID": "POW_00107982",
|
105
|
-
"poSeriesID": "POW_00107959",
|
106
|
-
"start": 1313586251000,
|
107
|
-
"urnRef": "urn:vpro:media:program:27387984"
|
108
|
-
},
|
109
|
-
{
|
110
|
-
"channel": "NED3",
|
111
|
-
"duration": 1217000,
|
112
|
-
"midRef": "POW_00107982",
|
113
|
-
"poProgID": "POW_00107982",
|
114
|
-
"poSeriesID": "POW_00107959",
|
115
|
-
"start": 1341491500000,
|
116
|
-
"urnRef": "urn:vpro:media:program:27387984"
|
117
|
-
},
|
118
|
-
{
|
119
|
-
"channel": "NED3",
|
120
|
-
"duration": 1217000,
|
121
|
-
"midRef": "POW_00107982",
|
122
|
-
"poProgID": "POW_00107982",
|
123
|
-
"poSeriesID": "POW_00107959",
|
124
|
-
"start": 1341988683000,
|
125
|
-
"urnRef": "urn:vpro:media:program:27387984"
|
126
|
-
},
|
127
|
-
{
|
128
|
-
"channel": "NED3",
|
129
|
-
"duration": 1217000,
|
130
|
-
"midRef": "POW_00107982",
|
131
|
-
"poProgID": "POW_00107982",
|
132
|
-
"poSeriesID": "POW_00107959",
|
133
|
-
"start": 1344407956000,
|
134
|
-
"urnRef": "urn:vpro:media:program:27387984"
|
135
|
-
},
|
136
|
-
{
|
137
|
-
"channel": "NED3",
|
138
|
-
"duration": 1217000,
|
139
|
-
"midRef": "POW_00107982",
|
140
|
-
"poProgID": "POW_00107982",
|
141
|
-
"poSeriesID": "POW_00107959",
|
142
|
-
"start": 1344514983000,
|
143
|
-
"urnRef": "urn:vpro:media:program:27387984"
|
144
|
-
},
|
145
|
-
{
|
146
|
-
"channel": "NED3",
|
147
|
-
"duration": 1200000,
|
148
|
-
"imi": "imi:31144",
|
149
|
-
"memberOf": "crid://bds.tv/17410479",
|
150
|
-
"midRef": "POW_00107982",
|
151
|
-
"offset": -79000,
|
152
|
-
"poProgID": "POW_00107982",
|
153
|
-
"poSeriesID": "POW_00107959",
|
154
|
-
"start": 1375104900000,
|
155
|
-
"urnRef": "urn:vpro:media:program:27387984"
|
156
|
-
}
|
157
|
-
],
|
158
|
-
"segments": [],
|
159
|
-
"sortDate": 1248444059000,
|
160
|
-
"titles": [
|
161
|
-
{
|
162
|
-
"owner": "MIS",
|
163
|
-
"type": "MAIN",
|
164
|
-
"value": "Pippi Langkous klassiek"
|
165
|
-
},
|
166
|
-
{
|
167
|
-
"owner": "WHATS_ON",
|
168
|
-
"type": "MAIN",
|
169
|
-
"value": "Pippi neemt afscheid"
|
170
|
-
},
|
171
|
-
{
|
172
|
-
"owner": "MIS",
|
173
|
-
"type": "EPISODE",
|
174
|
-
"value": "Pippi neemt afscheid"
|
175
|
-
}
|
176
|
-
],
|
177
|
-
"type": "BROADCAST",
|
178
|
-
"urn": "urn:vpro:media:program:27387984",
|
179
|
-
"workflow": "PUBLISHED"
|
180
|
-
}
|