-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcorpus-stats
3517 lines (3516 loc) · 691 KB
/
corpus-stats
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
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Total number of valid feeds: 143393
Total number of invalid feeds: 1719
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
COUNT | LEVEL | LOCALNAME | ATTRIBUTES | NAMESPACE
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
7115557 | ITEM | title | | rss
7111269 | FEED | item | | rss
7091405 | ITEM | pubDate | | rss
6908777 | ITEM | enclosure | length,type,url | rss
6362507 | ITEM | description | | rss
5883350 | ITEM | link | | rss
5777703 | ITEM | duration | | http://www.itunes.com/dtds/podcast-1.0.dtd
5760314 | ITEM | subtitle | | http://www.itunes.com/dtds/podcast-1.0.dtd
5312989 | ITEM | category | | rss
5196094 | ITEM | author | | http://www.itunes.com/dtds/podcast-1.0.dtd
5129449 | ITEM | explicit | | http://www.itunes.com/dtds/podcast-1.0.dtd
5124197 | ITEM | summary | | http://www.itunes.com/dtds/podcast-1.0.dtd
4594539 | ITEM | guid | isPermaLink | rss
4183674 | ITEM | keywords | | http://www.itunes.com/dtds/podcast-1.0.dtd
3216725 | ITEM | image | href | http://www.itunes.com/dtds/podcast-1.0.dtd
2134546 | ITEM | guid | | rss
1652674 | ITEM | encoded | | http://purl.org/rss/1.0/modules/content/
1492767 | ITEM | creator | | http://purl.org/dc/elements/1.1/
1439432 | ITEM | comments | | rss
1028170 | ITEM | author | | rss
921966 | ITEM | origLink | | http://rssnamespace.org/feedburner/ext/1.0
818248 | ITEM | content | fileSize,type,url | http://search.yahoo.com/mrss/
680436 | ITEM | origEnclosureLink | | http://rssnamespace.org/feedburner/ext/1.0
574488 | ITEM | commentRss | | http://wellformedweb.org/CommentAPI/
557636 | ITEM | comments | | http://purl.org/rss/1.0/modules/slash/
550776 | ITEM | category | domain | rss
518572 | ITEM | block | | http://www.itunes.com/dtds/podcast-1.0.dtd
202442 | ITEM | modified | | http://purl.org/dc/terms/
202442 | ITEM | created | | http://purl.org/dc/terms/
195788 | FEED | category | text | http://www.itunes.com/dtds/podcast-1.0.dtd
182962 | ITEM | title | | http://www.itunes.com/dtds/podcast-1.0.dtd
179639 | ITEM | episodeType | | http://www.itunes.com/dtds/podcast-1.0.dtd
158736 | ITEM | content | type,url | http://search.yahoo.com/mrss/
155612 | ITEM | content | medium,url | http://search.yahoo.com/mrss/
146756 | ITEM | post-id | | com-wordpress:feed-additions:1
144681 | ITEM | author | | http://www.itunes.com/DTDs/Podcast-1.0.dtd
144062 | FEED | title | | rss
143951 | FEED | channel | | rss
143772 | FEED | link | | rss
143361 | FEED | language | | rss
142770 | FEED | description | | rss
141362 | ITEM | enclosure | type,url | rss
136897 | ITEM | keywords | | http://search.yahoo.com/mrss/
136403 | FEED | author | | http://www.itunes.com/dtds/podcast-1.0.dtd
136061 | ITEM | explicit | | http://www.google.com/schemas/play-podcasts/1.0
134614 | ITEM | order | | http://www.itunes.com/dtds/podcast-1.0.dtd
133399 | FEED | image | href | http://www.itunes.com/dtds/podcast-1.0.dtd
133195 | ITEM | title | type | http://search.yahoo.com/mrss/
132776 | ITEM | keywords | | http://www.itunes.com/DTDs/Podcast-1.0.dtd
129356 | FEED | explicit | | http://www.itunes.com/dtds/podcast-1.0.dtd
127834 | FEED | link | rel,href,type | http://www.w3.org/2005/Atom
126820 | FEED | subtitle | | http://www.itunes.com/dtds/podcast-1.0.dtd
123443 | ITEM | rights | status | http://search.yahoo.com/mrss/
119734 | ITEM | duration | | http://www.itunes.com/DTDs/Podcast-1.0.dtd
119428 | FEED | owner | | http://www.itunes.com/dtds/podcast-1.0.dtd
119015 | FEED | category | | rss
116831 | ITEM | description | | http://www.google.com/schemas/play-podcasts/1.0
116021 | FEED | summary | | http://www.itunes.com/dtds/podcast-1.0.dtd
105889 | ITEM | summary | | http://www.itunes.com/DTDs/Podcast-1.0.dtd
105850 | ITEM | author | | http://www.google.com/schemas/play-podcasts/1.0
105648 | ITEM | total | | http://purl.org/syndication/thread/1.0
103361 | ITEM | explicit | | http://www.itunes.com/DTDs/Podcast-1.0.dtd
99469 | FEED | copyright | | rss
92762 | ITEM | subtitle | | http://www.itunes.com/DTDs/Podcast-1.0.dtd
88772 | FEED | lastBuildDate | | rss
88764 | FEED | image | | rss
87906 | FEED | generator | | rss
85915 | ITEM | content | medium,type,url | http://search.yahoo.com/mrss/
83273 | ITEM | image | href | http://www.google.com/schemas/play-podcasts/1.0
75340 | ITEM | source | url | rss
73119 | ITEM | episode | | http://www.itunes.com/dtds/podcast-1.0.dtd
72283 | ITEM | category | text | http://www.itunes.com/DTDs/Podcast-1.0.dtd
71605 | FEED | keywords | | http://www.itunes.com/dtds/podcast-1.0.dtd
71103 | ITEM | thumbnail | url | http://search.yahoo.com/mrss/
69547 | FEED | pubDate | | rss
67896 | ITEM | programid | | http://www.sverigesradio.se/podrss
67896 | ITEM | poddid | | http://www.sverigesradio.se/podrss
67297 | ITEM | thumbnail | width,url,height | http://search.yahoo.com/mrss/
66271 | ITEM | reader | | rss
56790 | ITEM | chapter | start,title | http://podlove.org/simple-chapters
54693 | ITEM | link | rel,href,type | http://www.w3.org/2005/Atom
53944 | ITEM | title | | http://search.yahoo.com/mrss/
49869 | ITEM | image | | rss
49146 | ITEM | content | duration,medium,type,lang,url | http://search.yahoo.com/mrss/
44499 | ITEM | season | | http://www.itunes.com/dtds/podcast-1.0.dtd
44155 | ITEM | div | class | rss
43394 | ITEM | updated | | http://www.w3.org/2005/Atom
42040 | ITEM | content | duration,fileSize,medium,type,lang,url | http://search.yahoo.com/mrss/
39181 | ITEM | businessReference | | http://radiofrance.fr/Lancelot/Podcast#
39169 | ITEM | stepID | | http://radiofrance.fr/Lancelot/Podcast#
39169 | ITEM | magnetothequeID | | http://radiofrance.fr/Lancelot/Podcast#
38177 | FEED | managingEditor | | rss
38172 | FEED | category | scheme | http://search.yahoo.com/mrss/
37721 | ITEM | title | type | http://www.rssboard.org/media-rss
36580 | FEED | feedFlare | src,href | http://rssnamespace.org/feedburner/ext/1.0
36115 | ITEM | content | isDefault,width,medium,type,url,height | http://www.rssboard.org/media-rss
35182 | ITEM | category | text | http://www.itunes.com/dtds/podcast-1.0.dtd
33695 | FEED | ttl | | rss
33111 | ITEM | programid | | rss
33018 | ITEM | poddid | | rss
32408 | ITEM | player | url | http://search.yahoo.com/mrss/
32306 | FEED | block | | http://www.itunes.com/dtds/podcast-1.0.dtd
32192 | FEED | link | rel,href | http://www.w3.org/2005/Atom
31392 | ITEM | content | duration,fileSize,type,url | http://search.yahoo.com/mrss/
30873 | ITEM | text | type | http://search.yahoo.com/mrss/
30548 | ITEM | fileID | | http://promodeejay.net/api/xml/
30548 | ITEM | kind | | http://promodeejay.net/api/xml/
30240 | ITEM | block | | http://www.google.com/schemas/play-podcasts/1.0
29960 | FEED | info | uri | http://rssnamespace.org/feedburner/ext/1.0
27629 | ITEM | date | | http://purl.org/dc/elements/1.1/
27549 | ITEM | p | | rss
26800 | FEED | rating | | http://search.yahoo.com/mrss/
26520 | ITEM | span | class | rss
26164 | ITEM | content | duration,expression,fileSize,medium,type,url | http://search.yahoo.com/mrss/
23863 | FEED | webMaster | | rss
22436 | FEED | thumbnail | url | http://search.yahoo.com/mrss/
22268 | FEED | credit | role | http://search.yahoo.com/mrss/
20970 | FEED | keywords | | http://search.yahoo.com/mrss/
20679 | ITEM | embed | | http://www.rawvoice.com/rawvoiceRssModule/
20461 | FEED | updatePeriod | | http://purl.org/rss/1.0/modules/syndication/
20444 | FEED | updateFrequency | | http://purl.org/rss/1.0/modules/syndication/
20424 | ITEM | block | | http://www.itunes.com/DTDs/Podcast-1.0.dtd
19944 | FEED | b | | rss
19345 | FEED | docs | | rss
19163 | ITEM | a | rel,href | rss
19101 | ITEM | enclosureSecure | length,type,url | http://bbc.co.uk/2009/01/ppgRss
19101 | ITEM | enclosureLegacy | length,type,url | http://bbc.co.uk/2009/01/ppgRss
19101 | ITEM | canonical | | http://bbc.co.uk/2009/01/ppgRss
19007 | FEED | description | type | http://search.yahoo.com/mrss/
18914 | ITEM | content | isDefault,length,medium,type,url | http://www.rssboard.org/media-rss
18552 | ITEM | link | rel,href,title,type | http://www.w3.org/2005/Atom
18162 | ITEM | content | duration,medium,type,url | http://search.yahoo.com/mrss/
17965 | ITEM | group | | http://search.yahoo.com/mrss/
17104 | ITEM | category | | http://www.itunes.com/DTDs/Podcast-1.0.dtd
17027 | FEED | copyright | | http://search.yahoo.com/mrss/
16970 | ITEM | image | | http://www.itunes.com/dtds/podcast-1.0.dtd
16326 | ITEM | point | | http://www.georss.org/georss
16194 | ITEM | imageurl | | rss
15864 | ITEM | content | duration,fileSize,medium,type,url | http://search.yahoo.com/mrss/
15376 | ITEM | enclosure | url | rss
15198 | ITEM | link | rel,href | http://www.w3.org/2005/Atom
13691 | ITEM | mediaTitle | | rss
13691 | ITEM | mediaType | | rss
13691 | ITEM | mediaId | | rss
13450 | ITEM | image | href | http://www.itunes.com/DTDs/Podcast-1.0.dtd
13171 | FEED | br | | rss
12778 | ITEM | copyright | | rss
12330 | ITEM | credit | role | http://search.yahoo.com/mrss/
12074 | FEED | startIndex | | http://a9.com/-/spec/opensearchrss/1.0/
12074 | FEED | totalResults | | http://a9.com/-/spec/opensearchrss/1.0/
12064 | FEED | itemsPerPage | | http://a9.com/-/spec/opensearchrss/1.0/
12038 | ITEM | content | | http://search.yahoo.com/mrss/
11902 | ITEM | category | scheme | http://search.yahoo.com/mrss/
11606 | ITEM | epidsode-js-function | | rss
11107 | ITEM | description | type | http://search.yahoo.com/mrss/
10565 | ITEM | category | code | http://www.itunesu.com/feed
10393 | ITEM | id | | rss
9977 | ITEM | enclosure | duration,length,type,url | rss
9925 | ITEM | enclosure | length,url | rss
9836 | FEED | category | term | http://www.w3.org/2005/Atom
9195 | ITEM | img | sizes,src,width,alt,srcset,class,height | rss
9114 | ITEM | visibility | | http://www.ard.de/ardNamespace
9057 | ITEM | a | href | rss
8822 | ITEM | content | length,medium,type,url | http://search.yahoo.com/mrss/
8820 | ITEM | audio | controls,style,id,class,preload | rss
8820 | ITEM | source | src,type | rss
8550 | ITEM | nodownload | | http://podfm.ru/RSS/extension
8549 | ITEM | downloadCount | | http://podfm.ru/RSS/extension
8374 | ITEM | poster | url | http://www.rawvoice.com/rawvoiceRssModule/
7873 | ITEM | duration | | rss
7782 | ITEM | valid | | http://purl.org/dc/terms/
7688 | ITEM | host | | rss
7688 | ITEM | guest | | rss
7688 | ITEM | imgof | | rss
7685 | ITEM | subject | | http://purl.org/dc/elements/1.1/
7622 | ITEM | display-date | | http://mlb.mlb.com/rss/
7622 | ITEM | display-date-epoch | | http://mlb.mlb.com/rss/
6772 | FEED | new-feed-url | | http://www.itunes.com/dtds/podcast-1.0.dtd
6756 | ITEM | keyWord | | rss
6491 | ITEM | user | | http://blip.tv/dtd/blip/1.0
6491 | ITEM | safeusername | | http://blip.tv/dtd/blip/1.0
6491 | ITEM | posts_id | | http://blip.tv/dtd/blip/1.0
6491 | ITEM | rating | | http://blip.tv/dtd/blip/1.0
6491 | ITEM | item_type | | http://blip.tv/dtd/blip/1.0
6491 | ITEM | thumbnail_src | | http://blip.tv/dtd/blip/1.0
6491 | ITEM | embedUrl | type | http://blip.tv/dtd/blip/1.0
6491 | ITEM | datestamp | | http://blip.tv/dtd/blip/1.0
6491 | ITEM | item_id | | http://blip.tv/dtd/blip/1.0
6491 | ITEM | runtime | | http://blip.tv/dtd/blip/1.0
6491 | ITEM | embedLookup | | http://blip.tv/dtd/blip/1.0
6491 | ITEM | userid | | http://blip.tv/dtd/blip/1.0
6491 | ITEM | show | | http://blip.tv/dtd/blip/1.0
6491 | ITEM | showpage | | http://blip.tv/dtd/blip/1.0
6491 | ITEM | license | | http://blip.tv/dtd/blip/1.0
6491 | ITEM | picture | | http://blip.tv/dtd/blip/1.0
6491 | ITEM | adChannel | | http://blip.tv/dtd/blip/1.0
6491 | ITEM | puredescription | | http://blip.tv/dtd/blip/1.0
6491 | ITEM | language | | http://blip.tv/dtd/blip/1.0
6471 | ITEM | adminRating | | http://blip.tv/dtd/blip/1.0
6471 | ITEM | recommendations | | http://blip.tv/dtd/blip/1.0
6471 | ITEM | showpath | | http://blip.tv/dtd/blip/1.0
6471 | ITEM | recommendable | | http://blip.tv/dtd/blip/1.0
6471 | ITEM | core | | http://blip.tv/dtd/blip/1.0
6319 | ITEM | description | | http://search.yahoo.com/mrss/
6273 | ITEM | poster_image | | http://blip.tv/dtd/blip/1.0
6173 | ITEM | podcast_downloadable | | rss
6173 | ITEM | related_album | | rss
6118 | FEED | cloud | path,protocol,port,registerProcedure,domain | rss
6101 | FEED | type | | http://www.itunes.com/dtds/podcast-1.0.dtd
5920 | ITEM | extendedProperty | name,value | http://schemas.google.com/g/2005
5805 | ITEM | thumbnail | href | http://iono.fm/rss-namespace-1.0
5744 | ITEM | rating | scheme | http://search.yahoo.com/mrss/
5645 | ITEM | adInfo | | http://video.yahooapis.com/v2/video/
5645 | ITEM | adTargeting | | http://video.yahooapis.com/v2/video/
5645 | ITEM | id | | http://video.yahooapis.com/v2/video/
5645 | ITEM | value | | http://video.yahooapis.com/v2/video/
5645 | ITEM | adData | | http://video.yahooapis.com/v2/video/
5645 | ITEM | name | | http://video.yahooapis.com/v2/video/
5478 | ITEM | lastModified | | http://www.radioamerica.org/2009/loudwater/
5478 | ITEM | date | | http://www.radioamerica.org/2009/loudwater/
5478 | ITEM | hour | | http://www.radioamerica.org/2009/loudwater/
5452 | ITEM | chapters | version | http://podlove.org/simple-chapters
5096 | ITEM | pubDateParts | sec,mo,min,tz,yr,hr,day | http://www.granicus.com/schema/rss-supplements
5075 | ITEM | content | url | http://search.yahoo.com/mrss/
4848 | ITEM | thumbnail | | rss
4825 | ITEM | id | | http://www.rte.ie/applications/ipad/schemas
4717 | FEED | category | domain | rss
4613 | ITEM | author | | itunes
4613 | ITEM | summary | | itunes
4613 | ITEM | duration | | itunes
4526 | FEED | link | rel,href,type,title | http://www.w3.org/2005/Atom
4484 | FEED | frequency | | http://www.rawvoice.com/rawvoiceRssModule/
4479 | FEED | location | | http://www.rawvoice.com/rawvoiceRssModule/
4464 | ITEM | guid | isPermalink | rss
4350 | ITEM | license | | http://backend.userland.com/creativeCommonsRssModule
4311 | ITEM | href | | rss
4283 | ITEM | showdate | | rss
4275 | ITEM | subhead | | rss
4264 | ITEM | enclosure | lenght,type,url | rss
4257 | ITEM | imgh | | rss
4257 | ITEM | imgw | | rss
4257 | ITEM | complink | | rss
4257 | ITEM | subfmt | | rss
4257 | ITEM | descfmt | | rss
4226 | ITEM | featurename | | http://www.georss.org/georss
4221 | ITEM | box | | http://www.georss.org/georss
4209 | ITEM | smallThumbnail | | http://blip.tv/dtd/blip/1.0
3953 | ITEM | enclosure | length,guid,type,url | rss
3883 | ITEM | long | | http://www.w3.org/2003/01/geo/wgs84_pos#
3840 | ITEM | category | scheme,term | http://www.w3.org/2005/Atom
3782 | ITEM | lat | | http://www.w3.org/2003/01/geo/wgs84_pos#
3722 | ITEM | metadataItem | name,value | http://ooyala.com/syndication/ext/
3721 | ITEM | order | | http://www.itunes.com/DTDs/Podcast-1.0.dtd
3645 | FEED | site | | com-wordpress:feed-additions:1
3592 | ITEM | provider | | http://www.itunes.com/dtds/podcast-1.0.dtd
3517 | ITEM | speaker | | rss
3480 | ITEM | channel_name | | http://blip.tv/dtd/blip/1.0
3465 | ITEM | url | | rss
3459 | ITEM | channel_list | | http://blip.tv/dtd/blip/1.0
3437 | FEED | feedburnerHostname | | http://rssnamespace.org/feedburner/ext/1.0
3437 | FEED | emailServiceId | | http://rssnamespace.org/feedburner/ext/1.0
3409 | FEED | category | text | http://www.itunes.com/DTDs/Podcast-1.0.dtd
3359 | FEED | subscribe | feed,itunes | http://www.rawvoice.com/rawvoiceRssModule/
3356 | ITEM | chapter | start,href,title | http://podlove.org/simple-chapters
3197 | FEED | explicit | | http://www.google.com/schemas/play-podcasts/1.0
3172 | ITEM | image | url | http://www.itunes.com/dtds/podcast-1.0.dtd
3149 | ITEM | link | rel,href,type | http://www.w3.org/2005/Atom/
3149 | ITEM | chapter | image,start,href,title | http://podlove.org/simple-chapters
3123 | ITEM | content | expression,medium,type,url | http://search.yahoo.com/mrss/
3115 | FEED | genre | | rss
3016 | FEED | rating | | http://www.rawvoice.com/rawvoiceRssModule/
2983 | ITEM | isClosedCaptioned | | http://www.itunes.com/dtds/podcast-1.0.dtd
2979 | FEED | email | | http://www.google.com/schemas/play-podcasts/1.0
2889 | ITEM | rating | | http://search.yahoo.com/mrss/
2863 | ITEM | content | type | http://www.w3.org/2005/Atom
2792 | ITEM | content | duration | http://search.yahoo.com/mrss/
2782 | FEED | browserFriendly | | http://rssnamespace.org/feedburner/ext/1.0
2724 | FEED | description | | http://www.google.com/schemas/play-podcasts/1.0
2710 | FEED | id | | http://www.w3.org/2005/Atom
2659 | FEED | image | href | http://www.google.com/schemas/play-podcasts/1.0
2649 | FEED | author | | http://www.itunes.com/DTDs/Podcast-1.0.dtd
2629 | ITEM | description | | http://www.google.com/schemas/play-podcasts/1.0/play-podcasts.xsd
2623 | ITEM | id | | http://www.w3.org/2005/Atom
2599 | ITEM | content | fileSize,medium,type,url | http://search.yahoo.com/mrss/
2567 | ITEM | date | | rss
2518 | ITEM | core_value | | http://blip.tv/dtd/blip/1.0
2500 | ITEM | complink3 | | rss
2500 | ITEM | complink2 | | rss
2498 | ITEM | achievesn | | rss
2490 | ITEM | guid | ispermalink,isPermaLink | rss
2440 | ITEM | copyright | | http://search.yahoo.com/mrss/
2418 | ITEM | title | type | http://www.w3.org/2005/Atom
2397 | FEED | author | | http://www.google.com/schemas/play-podcasts/1.0
2393 | ITEM | author | | https://www.itunes.com/dtds/podcast-1.0.dtd
2386 | ITEM | author | | http://www.w3.org/2005/Atom
2347 | ITEM | album | | http://www.itunes.com/DTDs/Podcast-1.0.dtd
2347 | ITEM | content | duration,fileSize,width,bitrate,medium,type,url,height | http://search.yahoo.com/mrss/
2309 | ITEM | isHD | | http://www.rawvoice.com/rawvoiceRssModule/
2290 | ITEM | keywords | | https://www.itunes.com/dtds/podcast-1.0.dtd
2248 | FEED | entry | | http://www.w3.org/2005/Atom
2183 | ITEM | published | | http://www.w3.org/2005/Atom
2101 | ITEM | duration | | https://www.itunes.com/dtds/podcast-1.0.dtd
2101 | FEED | image | href | http://www.itunes.com/DTDs/Podcast-1.0.dtd
2097 | ITEM | contributor | | http://www.w3.org/2005/Atom
2076 | ITEM | image_link | | http://base.google.com/ns/1.0
2065 | ITEM | content | | rss
2065 | FEED | license | | http://backend.userland.com/creativeCommonsRssModule
2042 | ITEM | image | | http://purl.org/rss/1.0/item-images/
2025 | ITEM | br | | rss
2013 | ITEM | guid | isPermaLink,guid | rss
2011 | ITEM | toPubDate | | rss
2011 | ITEM | audioId | | rss
2007 | ITEM | title | | http://purl.org/dc/elements/1.1/
1959 | FEED | category | text | http://www.google.com/schemas/play-podcasts/1.0/play-podcasts.xsd
1954 | ITEM | image | reference | rss
1924 | ITEM | group | domain | http://drupal.org/project/og
1910 | ITEM | name | | rss
1909 | ITEM | title | | http://www.ard.de/ardNamespace
1909 | ITEM | crid | | http://www.ard.de/ardNamespace
1906 | ITEM | subject | | http://purl.org/dc/terms/
1853 | FEED | owner | | http://www.itunes.com/DTDs/Podcast-1.0.dtd
1835 | FEED | subtitle | | http://www.itunes.com/DTDs/Podcast-1.0.dtd
1831 | FEED | summary | | http://www.itunes.com/DTDs/Podcast-1.0.dtd
1830 | FEED | explicit | | http://www.itunes.com/DTDs/Podcast-1.0.dtd
1821 | ITEM | description | | http://www.itunes.com/dtds/podcast-1.0.dtd
1813 | FEED | long | | http://www.w3.org/2003/01/geo/wgs84_pos#
1813 | FEED | lat | | http://www.w3.org/2003/01/geo/wgs84_pos#
1812 | ITEM | content | width,medium,type,url,height | http://search.yahoo.com/mrss/
1794 | ITEM | dureeReference | | rss
1794 | ITEM | lead | | rss
1791 | ITEM | album | | http://www.itunes.com/dtds/podcast-1.0.dtd
1760 | FEED | email | | http://www.google.com/schemas/play-podcasts/1.0/play-podcasts.xsd
1682 | ITEM | enclosure | fileSize,type,url | rss
1677 | ITEM | explicit | | rss
1635 | ITEM | source | | rss
1633 | ITEM | category | | http://search.yahoo.com/mrss/
1607 | ITEM | summary | | rss
1595 | ITEM | link | href | http://www.w3.org/2005/Atom
1587 | ITEM | content | duration,expression,fileSize,bitrate,type,url | http://search.yahoo.com/mrss/
1555 | ITEM | email | | http://www.itunes.com/DTDs/Podcast-1.0.dtd
1545 | ITEM | owner | | http://www.itunes.com/DTDs/Podcast-1.0.dtd
1545 | ITEM | owner | | http://www.itunes.com/dtds/podcast-1.0.dtd
1545 | ITEM | name | | http://www.itunes.com/DTDs/Podcast-1.0.dtd
1544 | ITEM | guide | | rss
1531 | ITEM | email | | http://www.itunes.com/dtds/podcast-1.0.dtd
1478 | ITEM | tag | | rss
1476 | ITEM | title | | http://www.category5.tv/
1476 | ITEM | season | | http://www.category5.tv/
1476 | ITEM | year | | http://www.category5.tv/
1476 | ITEM | genre | | http://www.category5.tv/
1476 | ITEM | description | | http://www.category5.tv/
1476 | ITEM | number | | http://www.category5.tv/
1476 | ITEM | thumbnail | | http://www.category5.tv/
1450 | ITEM | author | | http://www.itunes.com/dtds/Podcast-1.0.dtd
1448 | ITEM | categories | | http://blip.tv/dtd/blip/1.0
1448 | ITEM | guid | | http://www.itunes.com/dtds/podcast-1.0.dtd
1417 | ITEM | audio | | rss
1396 | FEED | category | text | http://www.google.com/schemas/play-podcasts/1.0
1367 | ITEM | new-feed-url | | http://www.itunes.com/dtds/podcast-1.0.dtd
1349 | ITEM | special | | http://discoverydn.com/about
1349 | ITEM | id | | http://discoverydn.com/about
1349 | ITEM | episode_id | | http://discoverydn.com/about
1349 | ITEM | expires | | http://discoverydn.com/about
1321 | ITEM | link | rel,href,type | http://www.itunes.com/dtds/podcast-1.0.dtd
1285 | ITEM | start | | http://www.ard.de/ardNamespace
1285 | ITEM | end | | http://www.ard.de/ardNamespace
1285 | ITEM | subtitle | | http://www.ard.de/ardNamespace
1285 | ITEM | programInformation | | http://www.ard.de/ardNamespace
1285 | ITEM | broadcast | | http://www.ard.de/ardNamespace
1250 | ITEM | content | expression,medium,url | http://search.yahoo.com/mrss/
1180 | FEED | image | href | http://www.google.com/schemas/play-podcasts/1.0/play-podcasts.xsd
1177 | ITEM | pubDate | | http://www.itunes.com/dtds/podcast-1.0.dtd
1173 | ITEM | image | | http://developer.longtailvideo.com/
1170 | FEED | description | | http://www.google.com/schemas/play-podcasts/1.0/play-podcasts.xsd
1169 | FEED | item | id,type | rss
1164 | ITEM | image | href | rss
1161 | ITEM | title | | http://www.itunes.com/DTDs/Podcast-1.0.dtd
1155 | ITEM | content | isDefault,medium,url | http://www.rssboard.org/media-rss
1148 | ITEM | name | | http://www.bnr.nl/rss/podcast
1148 | ITEM | type | | http://www.bnr.nl/rss/podcast
1148 | ITEM | description | | http://www.bnr.nl/rss/podcast
1148 | ITEM | title | | http://www.bnr.nl/rss/podcast
1146 | ITEM | series | | http://www.secc.org/dtds/sermons-1.0.dtd
1146 | ITEM | title | | http://www.secc.org/dtds/sermons-1.0.dtd
1134 | ITEM | credit | role,scheme | http://search.yahoo.com/mrss/
1099 | ITEM | description | | http://purl.org/dc/elements/1.1/
1095 | ITEM | displaydate | | rss
1093 | ITEM | author | | http://itunes.com/dtds/podcast-1.0.dtd
1093 | ITEM | duration | | http://itunes.com/dtds/podcast-1.0.dtd
1093 | ITEM | summary | | http://itunes.com/dtds/podcast-1.0.dtd
1093 | ITEM | subtitle | | http://itunes.com/dtds/podcast-1.0.dtd
1070 | ITEM | subtitle | | http://www.itunes.com/dtds/Podcast-1.0.dtd
1064 | ITEM | pubdate | | rss
1062 | ITEM | link | rel,length,href,type | http://www.w3.org/2005/Atom
1059 | ITEM | keywords | | rss
1043 | ITEM | explicit | | http://itunes.com/dtds/podcast-1.0.dtd
1040 | ITEM | video | | rss
1040 | ITEM | videoclip | | rss
1032 | ITEM | verse | | rss
1031 | ITEM | summary | | http://www.itunes.com/dtds/Podcast-1.0.dtd
1013 | ITEM | time | | rss
1012 | ITEM | metadata | | http://ooyala.com/syndication/ext/
1006 | ITEM | seriesArt | | rss
1006 | ITEM | permalink | | rss
997 | ITEM | wextAired | | rss
996 | ITEM | publisher | | http://purl.org/dc/elements/1.1/
990 | ITEM | name | | http://www.itunes.com/dtds/podcast-1.0.dtd
986 | ITEM | meta | name,content | rss
978 | FEED | locale | | https://feed.press/xmlns
971 | ITEM | keywords | | http://www.itunes.com/dtds/Podcast-1.0.dtd
964 | FEED | keywords | | http://www.itunes.com/DTDs/Podcast-1.0.dtd
963 | ITEM | content | width,type,url,height | http://search.yahoo.com/mrss/
959 | ITEM | strong | | rss
917 | FEED | link | rel,href,type | http://www.itunes.com/dtds/podcast-1.0.dtd
883 | ITEM | image | url | http://www.itunes.com/DTDs/Podcast-1.0.dtd
880 | ITEM | content | duration,isDefault,expression,width,medium,type,url,height | http://search.yahoo.com/mrss/
877 | ITEM | content | fileSize,type,url | http://search.yahoo.com/mrss
873 | ITEM | link | length,href,type | http://www.w3.org/2005/Atom
871 | ITEM | length | | rss
869 | ITEM | thumbnail | href | http://search.yahoo.com/mrss/
847 | ITEM | season | | rss
842 | ITEM | b | | rss
838 | ITEM | content | duration,type,url | http://search.yahoo.com/mrss/
825 | ITEM | episode | | rss
819 | ITEM | brandStory | | http://www.bnr.nl/rss/podcast
819 | ITEM | spotlight | | http://www.bnr.nl/rss/podcast
819 | ITEM | category | | http://www.bnr.nl/rss/podcast
816 | ITEM | img | src,width,alt,medium,class,height | rss
805 | ITEM | notes | | rss
796 | ITEM | duration | | http://www.itunes.com/dtds/Podcast-1.0.dtd
791 | FEED | systemRef | systemId,key | http://bbc.co.uk/2009/01/ppgRss
788 | ITEM | owner_member_station | | http://www.pbs.org/rss/pbscontent/
788 | ITEM | vimeo | | http://www.secc.org/dtds/sermons-1.0.dtd
788 | ITEM | distribution | | http://www.pbs.org/rss/pbscontent/
788 | ITEM | producing_member_station | | http://www.pbs.org/rss/pbscontent/
776 | ITEM | id | | http://www.category5.tv/
776 | ITEM | slug | | http://www.category5.tv/
766 | ITEM | persid | | http://www.feltrinellieditore.it/fs/fpodcast-xml/
756 | ITEM | tags | | rss
752 | ITEM | category | scheme,label | http://search.yahoo.com/mrss/
750 | ITEM | id | domain,href | http://purl.org/steeple
750 | ITEM | aspectRatio | | http://sms.csx.cam.ac.uk/rss
750 | ITEM | duration | | http://purl.org/steeple
750 | ITEM | screencast | | http://sms.csx.cam.ac.uk/rss
750 | ITEM | public | | http://sms.csx.cam.ac.uk/rss
739 | ITEM | storyid | | rss
739 | ITEM | description | type | rss
738 | ITEM | ping | | http://madskills.com/public/xml/rss/module/trackback/
737 | ITEM | category | text | http://www.itunes.com/dtds/Podcast-1.0.dtd
734 | ITEM | edited | | http://www.w3.org/2007/app
728 | FEED | originStation | | http://radiofrance.fr/Lancelot/Podcast#
715 | ITEM | content | fileSize | http://search.yahoo.com/mrss/
715 | ITEM | content | type | http://search.yahoo.com/mrss/
715 | ITEM | content | lang | http://search.yahoo.com/mrss/
705 | FEED | url | | rss
694 | ITEM | artist | | rss
690 | ITEM | expiryTime | | rss
690 | ITEM | talkId | | http://developer.longtailvideo.com/
688 | ITEM | rte-days | | rss
687 | ITEM | coverart | href | http://iono.fm/rss-namespace-1.0
682 | ITEM | meta | property,content | rss
671 | ITEM | adult | | http://search.yahoo.com/mrss
660 | ITEM | type | | http://purl.org/dc/elements/1.1/
658 | ITEM | language | | rss
658 | ITEM | enclosure | length,id,type,url | rss
653 | ITEM | language | | http://purl.org/dc/elements/1.1/
652 | ITEM | series | | http://www.saddlebackfamily.com/mediacenter
646 | ITEM | restriction | type,relationship | http://search.yahoo.com/mrss/
646 | ITEM | content | isDefault,medium,type,url | http://www.rssboard.org/media-rss
632 | ITEM | summary | | hhtp://www.itunes.com/dtds/podcast-1.0.dtd
632 | ITEM | author | | hhtp://www.itunes.com/dtds/podcast-1.0.dtd
627 | ITEM | youtube_category | | http://blip.tv/dtd/blip/1.0
627 | ITEM | summary | | https://www.itunes.com/dtds/podcast-1.0.dtd
624 | ITEM | stationId | | http://www.ard.de/ardNamespace
624 | ITEM | url | | http://www.ard.de/ardNamespace
624 | ITEM | series | | http://www.ard.de/ardNamespace
621 | ITEM | link | rel,length,href,type,title | http://www.w3.org/2005/Atom
617 | ITEM | category | | http://www.itunes.com/dtds/podcast-1.0.dtd
604 | ITEM | thumbnail | width,url,height | http://search.yahoo.com/mrss
591 | ITEM | image | herf | http://itunes.com/dtds/podcast-1.0.dtd
587 | ITEM | comment | | http://wellformedweb.org/CommentAPI/
581 | FEED | item | id | rss
562 | ITEM | content | expression,fileSize,medium,url | http://search.yahoo.com/mrss/
556 | ITEM | group | | http://search.yahoo.com/mrss
546 | ITEM | duration | | http://www.itunes.com/dtds/-1.0.dtd
546 | ITEM | summary | | http://www.itunes.com/dtds/-1.0.dtd
546 | ITEM | author | | http://www.itunes.com/dtds/-1.0.dtd
546 | ITEM | explicit | | http://www.itunes.com/dtds/-1.0.dtd
546 | ITEM | subtitle | | http://www.itunes.com/dtds/-1.0.dtd
530 | ITEM | categories | | http://www.castfire.com/dtds/rss.dtd
530 | ITEM | filename | | http://www.castfire.com/dtds/rss.dtd
530 | ITEM | content_producer | slug | http://www.castfire.com/dtds/rss.dtd
530 | ITEM | content | duration,expression,fileSize,bitrate,type,url | http://search.yahoo.com/mrss
530 | ITEM | sh_id | | http://www.castfire.com/dtds/rss.dtd
530 | ITEM | date | date | http://www.castfire.com/dtds/rss.dtd
530 | ITEM | show_id | | http://www.castfire.com/dtds/rss.dtd
530 | ITEM | network | slug | http://www.castfire.com/dtds/rss.dtd
530 | ITEM | channel | slug | http://www.castfire.com/dtds/rss.dtd
528 | ITEM | content | width,height | http://search.yahoo.com/mrss/
528 | ITEM | content | framerate | http://search.yahoo.com/mrss/
524 | ITEM | type | ratio | http://www.cdjunior.com/xml
517 | ITEM | hash | algo | http://search.yahoo.com/mrss/
516 | ITEM | titleApp | | rss
506 | ITEM | topTitleApp | | rss
503 | ITEM | subtitle | | rss
502 | ITEM | keywords | | http://itunes.com/dtds/podcast-1.0.dtd
500 | ITEM | commentRSS | | http://wellformedweb.org/CommentAPI/
499 | ITEM | subitle | | http://www.itunes.com/dtds/podcast-1.0.dtd
496 | ITEM | encoded | | https://purl.org/rss/1.0/modules/content/
493 | ITEM | thumbnail | width,type,url,height | http://search.yahoo.com/mrss/
492 | ITEM | image | href | http://itunes.com/dtds/podcast-1.0.dtd
492 | ITEM | image | | http://www.podcastingireland.ie/digicast
492 | ITEM | block | | http://itunes.com/dtds/podcast-1.0.dtd
484 | ITEM | target | | http://madskills.com/public/xml/rss/module/pingback/
484 | ITEM | server | | http://madskills.com/public/xml/rss/module/pingback/
483 | ITEM | category | scheme | rss
483 | ITEM | uniqueid | | rss
483 | ITEM | coverimage | | rss
482 | ITEM | img | src,alt,style | rss
480 | ITEM | a | property,rel,href | rss
480 | ITEM | website | | http://www.podcastingireland.ie/digicast
478 | FEED | skin | | http://www.thespringbox.com/dtds/thespringbox-1.0.dtd
478 | FEED | creator | | http://purl.org/dc/elements/1.1/
476 | ITEM | span | property,rel,href | rss
475 | FEED | subscribe | feed,itunes,html | http://www.rawvoice.com/rawvoiceRssModule/
473 | ITEM | content | duration,url | http://search.yahoo.com/mrss/
470 | ITEM | media | image,link,time | http://www.pupuplayer.com/ppexplination-rtf
470 | ITEM | timestamp | | http://www.parissportifs.com/
470 | FEED | new-feed-url | | http://www.itunes.com/DTDs/Podcast-1.0.dtd
469 | ITEM | thumbnail | | http://search.yahoo.com/mrss/
469 | ITEM | category | label | http://search.yahoo.com/mrss
463 | ITEM | category | scheme,term,label | http://www.w3.org/2005/Atom
459 | FEED | rating | scheme | http://search.yahoo.com/mrss/
456 | ITEM | is_premium | | http://blip.tv/dtd/blip/1.0
453 | ITEM | the_date | | rss
451 | ITEM | enclosure | size,type,url | rss
450 | ITEM | topics | | http://www.mediapublisher.ch/amp/
448 | ITEM | keyword | | rss
436 | ITEM | enclosure | | rss
433 | ITEM | stream | | rss
432 | ITEM | artist | | http://www.itunes.com/dtds/podcast-1.0.dtd
432 | FEED | id | | http://www.cbsradio.com/
431 | FEED | donate | href | http://www.rawvoice.com/rawvoiceRssModule/
430 | ITEM | reference | | http://purl.org/rss/1.0/modules/reference/
430 | ITEM | hq_filename | | rss
430 | ITEM | hq_filetype | | rss
430 | ITEM | hq | | rss
428 | ITEM | episodeId | | rss
427 | ITEM | content | expression,fileSize,type,url | http://search.yahoo.com/mrss/
426 | ITEM | title_in_language | | rss
423 | ITEM | img | src,alt,width,title,class,height | rss
422 | FEED | meta | name,content | http://www.w3.org/1999/xhtml
418 | ITEM | size | | rss
416 | ITEM | credit | | http://search.yahoo.com/mrss
414 | ITEM | thumbnail | url | http://search.yahoo.com/mrss
401 | ITEM | link | rel,count,href,type | http://www.w3.org/2005/Atom
400 | ITEM | related | | http://www.cdjunior.com/xml
400 | ITEM | topic | | https://s3.amazonaws.com/podcasts.learningmarkets.com/st.html#
400 | ITEM | level | | https://s3.amazonaws.com/podcasts.learningmarkets.com/st.html#
400 | ITEM | focus | | https://s3.amazonaws.com/podcasts.learningmarkets.com/st.html#
400 | ITEM | guid | | http://www.cdjunior.com/xml
399 | FEED | explicit | | http://www.google.com/schemas/play-podcasts/1.0/play-podcasts.xsd
396 | ITEM | width | | http://api.vg.no/podcast/dtd
396 | ITEM | thumb | | http://api.vg.no/podcast/dtd
396 | ITEM | url | | http://api.vg.no/podcast/dtd
396 | ITEM | height | | http://api.vg.no/podcast/dtd
393 | ITEM | keyword | | http://www.itunes.com/dtds/podcast-1.0.dtd
390 | ITEM | enclosure | filename | http://search.yahoo.com/core/
384 | ITEM | subtitle | | https://www.itunes.com/dtds/podcast-1.0.dtd
383 | ITEM | link | rel,href,type | http://www.itunes.com/DTDs/Podcast-1.0.dtd
382 | ITEM | category | type | http://www.itunes.com/DTDs/Podcast-1.0.dtd
380 | ITEM | content | type,url | http://search.yahoo.com/mrss
379 | FEED | link | rel,href,type | http://www.itunes.com/DTDs/Podcast-1.0.dtd
377 | ITEM | series | id,partno | rss
377 | ITEM | references | | rss
375 | ITEM | thumbnail | kind,url | http://search.yahoo.com/mrss/
375 | ITEM | subtitle | type | http://www.w3.org/2005/Atom
374 | ITEM | content | fileSize,width,medium,type,url,height | http://search.yahoo.com/mrss/
368 | ITEM | summary | type | http://www.w3.org/2005/Atom
368 | ITEM | indTag | | rss
367 | ITEM | Speaker | | rss
365 | ITEM | content | isDefault,expression,bitrate,medium,type,url | http://search.yahoo.com/mrss/
360 | FEED | sourceURL | | http://www.granicus.com/schema/rss-supplements
360 | FEED | podCastEnabled | | http://www.granicus.com/schema/rss-supplements
360 | ITEM | link | rel,href,type | http://www.dailymotion.com/dmrss
358 | ITEM | adult | | http://search.yahoo.com/mrss/
356 | ITEM | guid | IsPermaLink | rss
356 | ITEM | summary | | http://www.w3.org/2005/Atom
349 | FEED | subscribe | feed,googleplay,itunes | http://www.rawvoice.com/rawvoiceRssModule/
347 | ITEM | Date | | rss
344 | ITEM | name | | http://organizeseries.com/
340 | ITEM | Summary | | rss
339 | ITEM | content | length,type,url | http://search.yahoo.com/mrss
339 | ITEM | content | duration,isDefault,channels,fileSize,framerate,width,bitrate,type,url,height | http://search.yahoo.com/mrss/
338 | ITEM | link | rel,href,title | http://www.w3.org/2005/Atom
333 | FEED | author | | rss
332 | ITEM | description | | http://blip.tv/dtd/blip/1.0
332 | ITEM | distributions_info | | http://blip.tv/dtd/blip/1.0
332 | ITEM | thumbnail | | http://blip.tv/dtd/blip/1.0
332 | ITEM | token | | http://blip.tv/dtd/blip/1.0
332 | ITEM | title | | http://blip.tv/dtd/blip/1.0
324 | ITEM | identifier | | http://purl.org/dc/elements/1.1/
320 | ITEM | medialink | | rss
320 | FEED | email | | http://www.itunes.com/dtds/podcast-1.0.dtd
316 | ITEM | Keywords | | rss
316 | FEED | item | sdImg,hdImg | rss
316 | ITEM | link | href | http://www.itunes.com/dtds/podcast-1.0.dtd
313 | ITEM | rights | | http://purl.org/dc/elements/1.1/
311 | ITEM | format | | http://purl.org/dc/elements/1.1/
310 | ITEM | credit | | http://search.yahoo.com/mrss/
309 | ITEM | BibleText | | rss
308 | ITEM | content | length,type,url | http://search.yahoo.com/mrss/
303 | ITEM | content | duration,expression,medium,type,url | http://search.yahoo.com/mrss/
303 | ITEM | guid | ispermalink | rss
302 | ITEM | content | isDefault,expression,fileSize,bitrate,medium,type,url | http://search.yahoo.com/mrss/
300 | ITEM | comment-collection | | http://www.laudably.com/rss2-comments
300 | ITEM | alternate-fullwork | duration,isDefault,expression,fileSize,description,medium,type,lang,url | http://code.cchits.net/index.php?title=Mrss%2B
298 | ITEM | content | duration,isDefault,fileSize,type,url | http://search.yahoo.com/mrss/
296 | ITEM | explicit | | http://www.google.com/schemas/play-podcasts/1.0/play-podcasts.xsd
296 | ITEM | draft | | http://purl.org/atom-blog/ns#
294 | ITEM | body | | http://www.w3.org/1999/xhtml
292 | ITEM | vidfile | | rss
289 | FEED | network | name,id | http://bbc.co.uk/2009/01/ppgRss
283 | FEED | date | | http://purl.org/dc/elements/1.1/
278 | FEED | seriesDetails | daysLive,frequency | http://bbc.co.uk/2009/01/ppgRss
273 | ITEM | explict | | rss
273 | ITEM | nonp | | rss
266 | FEED | generatorAgent | resource | http://webns.net/mvcb/
262 | ITEM | imgsrc | | http://www.pheed.com/pheed/
261 | ITEM | lastBuildDate | | rss
260 | ITEM | reply-count | | http://www.livejournal.org/rss/lj/1.0/
260 | FEED | logo | | http://www.adobe.com/amp/1.0
260 | ITEM | security | | http://www.livejournal.org/rss/lj/1.0/
259 | FEED | category | scheme | http://www.rssboard.org/media-rss
258 | ITEM | content | isDefault,length,medium,url | http://www.rssboard.org/media-rss
258 | ITEM | author | | http://example.com/DTDs/Podcast-1.0.dtd
256 | ITEM | duration | | hhtp://www.itunes.com/dtds/podcast-1.0.dtd
253 | ITEM | pubDateParsed | | rss
252 | FEED | complete | | http://www.itunes.com/dtds/podcast-1.0.dtd
251 | ITEM | li | | rss
250 | FEED | keywords | | rss
249 | FEED | rating | | http://www.rssboard.org/media-rss
249 | FEED | description | type | http://www.rssboard.org/media-rss
249 | FEED | credit | role | http://www.rssboard.org/media-rss
247 | ITEM | contentId | | rss
245 | ITEM | image | | http://www.itunes.com/DTDs/Podcast-1.0.dtd
243 | ITEM | slot | max,timecode | rss
240 | ITEM | image | | http://www.graubuendentv.com/schemas/rss_extension#
238 | ITEM | content | src,type | http://www.w3.org/2005/Atom
236 | ITEM | copyright | | http://www.itunes.com/dtds/podcast-1.0.dtd
236 | FEED | guid | isPermaLink | rss
236 | ITEM | highlight | | rss
232 | ITEM | http | | http://www.w3.org/TR/REC-smil/
232 | ITEM | rtmp | | http://www.w3.org/TR/REC-smil/
232 | ITEM | hd | | http://www.w3.org/TR/REC-smil/
229 | ITEM | content | duration,channels,width,medium,type,lang,url,height | http://search.yahoo.com/mrss/
229 | ITEM | content | width,medium,url,height | http://search.yahoo.com/mrss/
228 | ITEM | transcript | | http://www.aids.gov/dtds/podcast-1.0.dtd
228 | ITEM | tid | | http://castbox.fm/dtds/podcast-1.0.dtd
226 | ITEM | youTube | | rss
223 | ITEM | enclosure | artist,part,length,bandWebsite,type,episodeNumber,url,listenUrl,dateRecorded,blogUrl,imageUrl,season,radioSong | rss
219 | ITEM | podID | | rss
218 | ITEM | datesAired | | rss
218 | ITEM | keywords | | http://example.com/DTDs/Podcast-1.0.dtd
218 | ITEM | duration | | http://example.com/DTDs/Podcast-1.0.dtd
216 | ITEM | group | container,video-aspect-ratio,video-codec,audio-codec,id | http://search.yahoo.com/mrss/
216 | FEED | updated | | http://www.w3.org/2005/Atom
216 | ITEM | seriesID | | rss
215 | ITEM | img | | rss
215 | FEED | item | width,id,type,height | rss
212 | FEED | block | | http://www.google.com/schemas/play-podcasts/1.0
212 | ITEM | streamBitrate | | rss
212 | ITEM | explicit | | http://www.itunes.com/dtds/podcast,1.0.dtd
212 | ITEM | summary | | http://www.itunes.com/dtds/podcast,1.0.dtd
212 | ITEM | subtitle | | http://www.itunes.com/dtds/podcast,1.0.dtd
212 | ITEM | keywords | | http://www.itunes.com/dtds/podcast,1.0.dtd
212 | ITEM | media | | rss
212 | ITEM | duration | | http://www.itunes.com/dtds/podcast,1.0.dtd
212 | ITEM | author | | http://www.itunes.com/dtds/podcast,1.0.dtd
212 | ITEM | streamQuality | | rss
211 | ITEM | in-reply-to | ref,href,type | http://purl.org/syndication/thread/1.0
211 | ITEM | content | duration,medium | http://search.yahoo.com/mrss/
208 | ITEM | album | | rss
207 | ITEM | alert | | rss
207 | ITEM | updDate | | rss
206 | ITEM | category | label | http://search.yahoo.com/mrss/
205 | ITEM | title | | http://www.w3.org/2005/Atom
205 | FEED | item | base | rss
203 | ITEM | lastModDate | | rss
203 | FEED | webmaster | | rss
203 | FEED | author | | http://www.w3.org/2005/Atom
202 | FEED | startIndex | | http://a9.com/-/spec/opensearch/1.1/
201 | FEED | title | type | http://www.w3.org/2005/Atom
200 | ITEM | large | | http://scouting.org/rss/2.0/
200 | ITEM | doctype | | http://www.bnet.com/search
200 | ITEM | intro | | https://code.condenast.co.uk/static/rss.dtd.xml
200 | ITEM | multimedia | | http://scouting.org/rss/2.0/
200 | ITEM | AuthorList | | http://www.td.org/dtds/feed
200 | ITEM | image | | http://scouting.org/rss/2.0/
200 | ITEM | title | | http://scouting.org/rss/2.0/
200 | ITEM | small | | http://scouting.org/rss/2.0/
200 | ITEM | AuthorHeadshot | | http://www.td.org/dtds/feed
200 | ITEM | type | | https://code.condenast.co.uk/static/rss.dtd.xml
200 | ITEM | content | duration,isDefault,fileSize,width,medium,type,url,height | http://search.yahoo.com/mrss/
200 | ITEM | teaser | | https://code.condenast.co.uk/static/rss.dtd.xml
200 | ITEM | image | orientation | https://code.condenast.co.uk/static/rss.dtd.xml
197 | ITEM | streamURL | | rss
197 | ITEM | contentQuality | | rss
197 | ITEM | streamFormat | | rss
197 | ITEM | synopsis | | rss
195 | FEED | subtitle | type | http://www.w3.org/2005/Atom
194 | FEED | totalResults | | http://a9.com/-/spec/opensearch/1.1/
193 | ITEM | script | src,type | rss
190 | FEED | generator | version,uri | http://www.w3.org/2005/Atom
190 | FEED | itemsPerPage | | http://a9.com/-/spec/opensearch/1.1/
188 | ITEM | content | isDefault,expression,medium,url | http://search.yahoo.com/mrss/
188 | ITEM | category | text | http://example.com/DTDs/Podcast-1.0.dtd
186 | ITEM | videoLink | url | rss
184 | ITEM | creator | | rss
182 | ITEM | content | fileSize,type,lang,url | http://search.yahoo.com/mrss/
181 | ITEM | image | href | http://www.itunes.com/dtds/Podcast-1.0.dtd
180 | ITEM | id | | http://www.dailymotion.com/dmrss
180 | ITEM | author | | http://www.dailymotion.com/dmrss
180 | ITEM | relativeDate | | http://www.dailymotion.com/dmrss
180 | ITEM | channels | | http://www.dailymotion.com/dmrss
180 | ITEM | loggerURL | | http://www.dailymotion.com/dmrss
180 | ITEM | views | | http://www.dailymotion.com/dmrss
180 | ITEM | favorites | | http://www.dailymotion.com/dmrss
180 | ITEM | authorAvatar | | http://www.dailymotion.com/dmrss
179 | ITEM | vimeo | | rss
178 | ITEM | explicit | | http://example.com/DTDs/Podcast-1.0.dtd
176 | FEED | podcastId | | https://feed.press/xmlns
176 | ITEM | thumbnailurl | url | rss
171 | ITEM | metamark | type | http://www.rawvoice.com/rawvoiceRssModule/
170 | ITEM | mobile | url | rss
170 | ITEM | category | code | http://www.itunes.com/dtds/podcast-1.0.dtd
168 | ITEM | guid | isPermalink,isPermaLink | rss
167 | FEED | url | | http://www.itunes.com/dtds/podcast-1.0.dtd
165 | ITEM | content | type | rss
165 | ITEM | img | src,alt | rss
164 | ITEM | backLink | | http://search.yahoo.com/mrss/
164 | ITEM | embed | url | http://search.yahoo.com/mrss/
164 | ITEM | status | state | http://search.yahoo.com/mrss/
164 | ITEM | backLinks | | http://search.yahoo.com/mrss/
162 | ITEM | ads | | http://www.podbridge.com/podbridge-ad.dtd
162 | ITEM | link | rel,media,href,type | http://www.w3.org/1999/xhtml
162 | ITEM | Subtitle | | rss
161 | ITEM | webm | src,length,type | http://www.rawvoice.com/rawvoiceRssModule/
161 | FEED | language | | http://purl.org/dc/elements/1.1/
161 | ITEM | embed_img | | rss
160 | ITEM | pageName | | http://schemas.google.com/sites/2008
160 | FEED | link | | http://www.itunes.com/dtds/podcast-1.0.dtd
160 | ITEM | revision | | http://schemas.google.com/sites/2008
159 | FEED | item | lang | rss
156 | ITEM | media | fileSize,type,url | rss
156 | ITEM | series | | rss
155 | ITEM | width | | rss
155 | ITEM | height | | rss
154 | ITEM | content | type,url | http://www.sportspower.com/
154 | ITEM | thumbnail | url | http://www.sportspower.com/
154 | ITEM | image | url | http://www.sportspower.com/
153 | ITEM | thumbnail | url | rss
153 | ITEM | length | | http://www.itunes.com/dtds/podcast-1.0.dtd
153 | ITEM | updated | | rss
150 | ITEM | comments | url | http://code.cchits.net/index.php?title=Mrss%2B
150 | ITEM | itunes | | explicit
150 | ITEM | fullwork | duration,isDefault,expression,fileSize,medium,type,lang,url | http://code.cchits.net/index.php?title=Mrss%2B
150 | ITEM | content | isDefault,width,medium,type,lang,url,height | http://search.yahoo.com/mrss/
150 | ITEM | hash | algo | http://code.cchits.net/index.php?title=Mrss%2B
149 | ITEM | content | duration,width,url,height | http://search.yahoo.com/mrss/
148 | ITEM | synopsis | | http://www.itunes.com/dtds/podcast-1.0.dtd
148 | ITEM | itunes | | author
147 | ITEM | contributor | | http://purl.org/dc/elements/1.1/
147 | FEED | image | | http://www.itunes.com/dtds/podcast-1.0.dtd
146 | ITEM | content | expression,fileSize,medium,type,url | http://search.yahoo.com/mrss/
146 | ITEM | itunes | | keywords
146 | ITEM | itunes | | image
146 | ITEM | airdate | | http://www.kqed.org/#
145 | ITEM | creator | | http://purl.org/dc/elements/1.1
145 | ITEM | encoded | | http://purl.org/rss/1.0/modules/content
144 | ITEM | itunes | | summary
144 | ITEM | adult | scheme | http://search.yahoo.com/mrss
144 | ITEM | itunes | | duration
141 | ITEM | thumbnail | type,url | rss
140 | ITEM | copyright | | http://purl.org/dc/elements/1.1/
140 | ITEM | itunes | | subtitle
138 | ITEM | chapter | image,start,title | http://podlove.org/simple-chapters
136 | ITEM | description | | http://video.search.yahoo.com/mrss
136 | FEED | keywords | | http://www.rssboard.org/media-rss
136 | ITEM | content | medium,type,lang,url | http://video.search.yahoo.com/mrss
136 | ITEM | title | | http://video.search.yahoo.com/mrss
136 | ITEM | url | | http://scouting.org/rss/2.0/
136 | ITEM | catid | | rss
136 | ITEM | keywords | | http://video.search.yahoo.com/mrss
134 | ITEM | hour | | rss
133 | ITEM | img | src,alt,width,align,height | rss
131 | ITEM | img | src,width,alt,class,height | rss
131 | ITEM | keywords | | http://search.yahoo.com/mrss
130 | ITEM | contactWebsite | | http://libsyn.com/rss-extension
130 | ITEM | contentUri | | http://rss.impresa.pt/static/impresa.xsd
130 | ITEM | pdf | | http://libsyn.com/rss-extension
130 | ITEM | post-thumbnail | | rss
128 | ITEM | title | | http://search.yahoo.com/mrss
128 | ITEM | betaUser | | http://blip.tv/dtd/blip/1.0
128 | ITEM | author | | http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0"
128 | ITEM | summary | | http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0"
128 | ITEM | keywords | | http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0"
128 | ITEM | published | | rss
126 | ITEM | duration | | http://www.itunes.com/dtds/podcast-'1.0'.dtd
126 | ITEM | image | href | http://www.itunes.com/dtds/podcast-'1.0'.dtd
126 | ITEM | author | | http://www.itunes.com/dtds/podcast-'1.0'.dtd
126 | ITEM | subtitle | | http://www.itunes.com/dtds/podcast-'1.0'.dtd
126 | ITEM | summary | | http://www.itunes.com/dtds/podcast-'1.0'.dtd
124 | FEED | rights | | http://purl.org/dc/elements/1.1/
123 | ITEM | content | type,lang,url | http://search.yahoo.com/mrss/
122 | ITEM | username | | rss
122 | ITEM | description | | http://www.cdjunior.com/xml
120 | FEED | image | rel,href | http://www.itunes.com/DTDs/Podcast-1.0.dtd
120 | ITEM | comments | | https://purl.org/rss/1.0/modules/slash/
120 | ITEM | commentRss | | https://wellformedweb.org/CommentAPI/
118 | ITEM | item_id | | http://www.aan.com/rss/rss.dtd
118 | ITEM | i_image | | rss
118 | ITEM | segments | | http://www.aan.com/rss/rss.dtd
117 | ITEM | h3 | | rss
117 | ITEM | content | expression,channels,bitrate,medium,url | http://search.yahoo.com/mrss/
116 | ITEM | customField | title | http://www.theplatform.com/rss/
116 | ITEM | content | duration,fileSize,width,type,url,height | http://search.yahoo.com/mrss/
114 | ITEM | explicit | | https://www.itunes.com/dtds/podcast-1.0.dtd
114 | ITEM | metamark | link,type | http://www.rawvoice.com/rawvoiceRssModule/
114 | ITEM | author_picture | | rss
114 | FEED | credit | role | http://www.rtl.fr/rss
112 | FEED | newsletterId | | https://feed.press/xmlns
112 | ITEM | subscription | | http://api.simplefeed.com/rss/ext/1.0
112 | ITEM | source | | http://api.simplefeed.com/rss/ext/1.0
112 | ITEM | itempath | | http://api.simplefeed.com/rss/ext/1.0
110 | ITEM | category | text | urn:itunes
110 | FEED | subscribe | feed,googleplay,itunes,stitcher,blubrry | http://www.rawvoice.com/rawvoiceRssModule/
110 | ITEM | owner | | rss
110 | FEED | managingeditor | | rss
110 | ITEM | image | href | urn:itunes
110 | ITEM | edited | | http://purl.org/atom/app#
110 | ITEM | content | duration,channels,fileSize,bitrate,samplingrate,medium,type,url | http://search.yahoo.com/mrss/
109 | ITEM | enclosure | length1,type,url | rss
109 | ITEM | content | url | http://search.yahoo.com/mrss
108 | ITEM | meta | name,value | http://enterprise.piksel.com
108 | FEED | meta | name,content | http://pipes.yahoo.com
108 | ITEM | metadata | | http://enterprise.piksel.com
107 | ITEM | enclosure | duration,fileSize,type,url | rss
107 | ITEM | category | | http://www.itunesu.com/feed
106 | ITEM | link | rel,href,type | rss
105 | ITEM | p | style | rss
105 | FEED | style | | rss
105 | ITEM | pic | | http://www.itunes.com/dtds/podcast-1.0.dtd
104 | ITEM | link | rel,href,title | http://www.cdjunior.com/xml
104 | FEED | updateBase | | http://purl.org/rss/1.0/modules/syndication/
104 | FEED | subscribe | feed,googleplay,itunes,stitcher,tunein,blubrry | http://www.rawvoice.com/rawvoiceRssModule/
104 | ITEM | content | duration,expression,fileSize,width,bitrate,type,url | http://search.yahoo.com/mrss/
100 | ITEM | postthumbnail | | rss
100 | ITEM | fxexcerpt | | rss
100 | ITEM | showImage | | rss
100 | ITEM | mobilecorner | | rss
100 | ITEM | gui | href | rss
100 | ITEM | enclosure | type | http://search.yahoo.com/mrss/
100 | ITEM | restriction | relationship,type | http://search.yahoo.com/mrss
100 | ITEM | mobilesubtitle | | rss
100 | ITEM | showIcon | | rss
100 | ITEM | showThumb | | rss
100 | ITEM | mobileimg | src,width,height | rss
98 | FEED | category | | http://www.itunes.com/dtds/podcast-1.0.dtd
98 | ITEM | id | | http://wiki.cxense.com/
98 | FEED | image | href | rss
98 | ITEM | category | text | rss
97 | ITEM | creater | | http://purl.org/dc/elements/1.1/
97 | ITEM | thumbnail | width,time,url,height | http://search.yahoo.com/mrss/
97 | ITEM | pubblica | | rss
96 | ITEM | source | | http://purl.org/dc/elements/1.1/
96 | ITEM | isCloseCaptioned | | http://www.itunes.com/dtds/podcast-1.0.dtd
95 | ITEM | episodeCategory | | rss
95 | ITEM | creator | | https://purl.org/dc/elements/1.1/
95 | ITEM | image | href | https://www.itunes.com/dtds/podcast-1.0.dtd
94 | ITEM | episodeCategories | | rss
93 | ITEM | ID | | rss
92 | ITEM | player | width,url,height | http://search.yahoo.com/mrss
92 | ITEM | type | | http://www.cdjunior.com/xml
91 | ITEM | rating | scheme | http://search.yahoo.com/mrss
91 | ITEM | broadcastDate | | http://www.bnr.nl/rss/podcast/meta
91 | ITEM | summary | type | http://www.itunes.com/dtds/podcast-1.0.dtd
91 | ITEM | authors | | rss
90 | ITEM | summary | | http://www.itunes.com/dtds/podcast-1.0.dtd/
90 | FEED | adultContent | | http://schemas.google.com/blogger/2008
90 | ITEM | author | | http://www.itunes.com/dtds/podcast-1.0.dtd/
90 | ITEM | duration | | http://www.itunes.com/dtds/podcast-1.0.dtd/
90 | ITEM | subtitle | | http://www.itunes.com/dtds/podcast-1.0.dtd/
89 | FEED | subscribe | feed,googleplay,itunes,stitcher | http://www.rawvoice.com/rawvoiceRssModule/
88 | ITEM | body | | rss
88 | ITEM | cme | | http://www.aan.com/rss/rss.dtd
88 | ITEM | imageitem | | rss
88 | FEED | id | | http://www.rte.ie/applications/ipad/schemas
87 | ITEM | bumperType | | http://blip.tv/dtd/blip/1.0
87 | ITEM | title | type | http://search.yahoo.com/mrss
87 | ITEM | link | url | rss
87 | ITEM | description | type | http://search.yahoo.com/mrss
86 | ITEM | itunes | | rss
86 | FEED | provider | | http://www.itunes.com/dtds/podcast-1.0.dtd
86 | ITEM | descrition | | rss
84 | FEED | errorReportsTo | resource | http://webns.net/mvcb/
83 | ITEM | img | src,style | rss
83 | ITEM | content | filesize,type,url | http://search.yahoo.com/mrss/
82 | ITEM | subtitle | | http://example.com/DTDs/Podcast-1.0.dtd
82 | ITEM | associatedimage | | http://www.ibsys.com/rss/
82 | FEED | script | type | rss
82 | FEED | link | href | http://www.w3.org/2005/Atom
80 | ITEM | duration | | http://guest.fmnaha.jp
80 | ITEM | subtitle | | http://ddn.itunes.com/dtds/podcast-1.0.dtd
80 | ITEM | author | | http://ddn.itunes.com/dtds/podcast-1.0.dtd
80 | ITEM | summary | | http://ddn.itunes.com/dtds/podcast-1.0.dtd
80 | ITEM | duration | | http://ddn.itunes.com/dtds/podcast-1.0.dtd
80 | ITEM | content | isDefault,fileSize,type,url | httsp://search.yahoo.com/mrss/
80 | FEED | subscribe | feed,googleplay,itunes,stitcher,html,tunein,blubrry | http://www.rawvoice.com/rawvoiceRssModule/
80 | ITEM | keywords | | http://ddn.itunes.com/dtds/podcast-1.0.dtd
80 | ITEM | title | | httsp://search.yahoo.com/mrss/
80 | ITEM | subtitle | | https://itunes.com/dtds/podcast-1.0.dtd
80 | FEED | url | | http://podkast.nrk.no/podd-rss
79 | ITEM | enclosure | filesize,type,url | rss
79 | FEED | subscribe | feed,googleplay,itunes,html | http://www.rawvoice.com/rawvoiceRssModule/
79 | ITEM | soundCloud | | rss
78 | ITEM | subtitel | | http://www.itunes.com/DTDs/Podcast-1.0.dtd
77 | FEED | script | src,type | rss
77 | FEED | subscribe | feed,itunes,stitcher | http://www.rawvoice.com/rawvoiceRssModule/
76 | ITEM | id | | http://mediafly.com/xsd/RSS/1.0
76 | ITEM | year | | rss
76 | ITEM | extendedMetaData | | http://mediafly.com/xsd/RSS/1.0
76 | ITEM | payPerView | | http://mediafly.com/xsd/RSS/1.0
76 | FEED | copyright | | http://www.rssboard.org/media-rss
76 | ITEM | securityMode | | http://mediafly.com/xsd/RSS/1.0
76 | ITEM | language | | http://mediafly.com/xsd/RSS/1.0
76 | ITEM | downloadModel | | http://mediafly.com/xsd/RSS/1.0
76 | ITEM | ppvModel | | http://mediafly.com/xsd/RSS/1.0
76 | ITEM | ppvPreviewModel | | http://mediafly.com/xsd/RSS/1.0
76 | ITEM | shownotes | | rss
75 | ITEM | guid | isPermaLink,rel | rss
75 | ITEM | content | fileSize,bitrate,medium,type,url | http://search.yahoo.com/mrss/
75 | FEED | image | | http://www.itunes.com/DTDs/Podcast-1.0.dtd
75 | FEED | rating | | rss
74 | ITEM | enclosure | eventid,length,type,url | rss
73 | ITEM | chapter | start | http://podlove.org/simple-chapters
72 | FEED | indigocheckdate | | http://www.itunes.com/dtds/podcast-1.0.dtd
71 | ITEM | EpisodeGUID | | rss
71 | ITEM | file | | http://developer.longtailvideo.com/
70 | FEED | thumbnail | href | http://iono.fm/rss-namespace-1.0
70 | ITEM | message | | rss
70 | ITEM | thumbnail | url | https://search.yahoo.com/mrss/
70 | ITEM | player | width,url,height | https://search.yahoo.com/mrss/
70 | ITEM | credit | | https://search.yahoo.com/mrss/
70 | ITEM | keywords | | http//www.itunes.com/dtds/podcast-1.0.dtd
70 | ITEM | rating | scheme | https://search.yahoo.com/mrss/
70 | ITEM | description | | https://search.yahoo.com/mrss/
70 | FEED | pageSize | | http://channel9.msdn.com
70 | ITEM | author | | http://posterous.com/help/rss/1.0
70 | ITEM | author | | http//www.itunes.com/dtds/podcast-1.0.dtd
70 | FEED | totalResults | | http://channel9.msdn.com
70 | ITEM | userImage | | http://posterous.com/help/rss/1.0
70 | ITEM | duration | | http//www.itunes.com/dtds/podcast-1.0.dtd
70 | ITEM | summary | | http//www.itunes.com/dtds/podcast-1.0.dtd
70 | FEED | pageCount | | http://channel9.msdn.com
70 | ITEM | lastName | | http://posterous.com/help/rss/1.0
70 | ITEM | firstName | | http://posterous.com/help/rss/1.0
70 | ITEM | content | fileSize,medium,type,url | https://search.yahoo.com/mrss/
70 | ITEM | category | | https://search.yahoo.com/mrss/
70 | ITEM | title | | https://search.yahoo.com/mrss/
70 | FEED | subscribe | feed,googleplay,itunes,stitcher,html,blubrry | http://www.rawvoice.com/rawvoiceRssModule/
70 | ITEM | keywords | | https://search.yahoo.com/mrss/
70 | ITEM | displayName | | http://posterous.com/help/rss/1.0
70 | ITEM | subtitle | | http//www.itunes.com/dtds/podcast-1.0.dtd
70 | ITEM | profileUrl | | http://posterous.com/help/rss/1.0
70 | ITEM | featuredimage | | rss
70 | ITEM | nickName | | http://posterous.com/help/rss/1.0
69 | ITEM | catagory | | rss
68 | ITEM | adzone | | rss
68 | ITEM | icon | | rss
67 | ITEM | em | | rss
66 | ITEM | poster | | http://www.livejournal.org/rss/lj/1.0/
66 | FEED | domain | | rss
62 | ITEM | keyword | | http://www.google.com/coop/namespace
62 | FEED | verify | | https://fyyd.de/fyyd-ns/
62 | FEED | tunein | | http://www.fox.com/foxcast/dtd/fox.dtd
62 | FEED | itunes_id | | http://www.fox.com/foxcast/dtd/fox.dtd
62 | ITEM | link | rel,count,href,type,updated | http://www.w3.org/2005/Atom
61 | FEED | h4 | | rss
60 | ITEM | guid-size | | rss
60 | ITEM | thumbnail | width,medium,type,url,height | http://search.yahoo.com/mrss/
60 | FEED | email | | http://www.itunes.com/DTDs/Podcast-1.0.dtd
60 | ITEM | guid-name | | rss
60 | FEED | ffmpeg | | rss