tmdb-api 0.9.1

Yet another TMDB client. This one is using async methods.
Documentation
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
{
  "certifications": {
    "AU": [
      {
        "certification": "P",
        "meaning": "Programming is intended for younger children 2–11; commercial stations must show at least 30 minutes of P-rated content each weekday and weekends at all times. No advertisements may be shown during P-rated programs.",
        "order": 1
      },
      {
        "certification": "C",
        "meaning": "Programming intended for older children 5–14; commercial stations must show at least 30 minutes of C-rated content each weekday between 7 a.m. and 8 a.m. or between 4 p.m. and 8:30 p.m. A further 2 and a half ours a week must also be shown either within these time bands or between 7 a.m. and 8:30 p.m. on weekends and school holidays, for a total of five hours a week (averaged as 260 hours over the course of a year). C-rated content is subject to certain restrictions and limitations on advertising (typically five minutes maximum per 30-minute period or seven minutes including promotions and community announcements).",
        "order": 2
      },
      {
        "certification": "G",
        "meaning": "For general exhibition; all ages are permitted to watch programming with this rating.",
        "order": 3
      },
      {
        "certification": "PG",
        "meaning": "Parental guidance is recommended for young viewers; PG-rated content may air at any time on digital-only channels, otherwise, it should only be broadcast between 8:30 a.m. and 4:00 p.m. and between 7:00 p.m. and 6:00 a.m. on weekdays, and between 10:00 a.m. and 6:00 a.m. on weekends.",
        "order": 4
      },
      {
        "certification": "M",
        "meaning": "Recommended for mature audiences; M-rated content may only be broadcast between 8:30 p.m. and 5:00 a.m. on any day, and additionally between 12:00 p.m. and 3:00 p.m. on schooldays.",
        "order": 5
      },
      {
        "certification": "MA 15+",
        "meaning": "Not suitable for children and teens under 15; MA15+-rated programming may only be broadcast between 9:00 p.m. and 5:00 a.m. on any given day. Consumer advice is mandatory. Some R18+ rated movies on DVD/Blu-ray are often re-edited on free TV/cable channels to secure a more ",
        "order": 6
      },
      {
        "certification": "AV 15+",
        "meaning": "Not suitable for children and teens under 15; this is the same as the MA15+ rating, except the ",
        "order": 7
      },
      {
        "certification": "R 18+",
        "meaning": "Not for children under 18; this is limited to Adult ",
        "order": 8
      }
    ],
    "BR": [
      {
        "certification": "14",
        "meaning": "Content suitable for viewers over the age of 14.",
        "order": 3
      },
      {
        "certification": "16",
        "meaning": "Content suitable for viewers over the age of 16.",
        "order": 4
      },
      {
        "certification": "L",
        "meaning": "Content is suitable for all audiences.",
        "order": 0
      },
      {
        "certification": "10",
        "meaning": "Content suitable for viewers over the age of 10.",
        "order": 1
      },
      {
        "certification": "12",
        "meaning": "Content suitable for viewers over the age of 12.",
        "order": 2
      },
      {
        "certification": "18",
        "meaning": "Content suitable for viewers over the age of 18.",
        "order": 5
      }
    ],
    "CA": [
      {
        "certification": "Exempt",
        "meaning": "Shows which are exempt from ratings (such as news and sports programming) will not display an on-screen rating at all.",
        "order": 1
      },
      {
        "certification": "C",
        "meaning": "Programming suitable for children ages of 2–7 years. No profanity or sexual content of any level allowed. Contains little violence.",
        "order": 2
      },
      {
        "certification": "C8",
        "meaning": "Suitable for children ages 8+. Low level violence and fantasy horror is allowed. No foul language is allowed, but occasional ",
        "order": 3
      },
      {
        "certification": "G",
        "meaning": "Suitable for general audiences. Programming suitable for the entire family with mild violence, and mild profanity and/or censored language.",
        "order": 4
      },
      {
        "certification": "PG",
        "meaning": "Parental guidance. Moderate violence and moderate profanity is allowed, as is brief nudity and sexual references if important to the context of the story.",
        "order": 5
      },
      {
        "certification": "14+",
        "meaning": "Programming intended for viewers ages 14 and older. May contain strong violence and strong profanity, and depictions of sexual activity as long as they are within the context of a story.",
        "order": 6
      },
      {
        "certification": "18+",
        "meaning": "Programming intended for viewers ages 18 and older. May contain explicit violence and sexual activity. Programming with this rating cannot air before the watershed (9:00 p.m. to 6:00 a.m.).",
        "order": 7
      }
    ],
    "CA-QC": [
      {
        "certification": "18+",
        "meaning": "Only to be viewed by adults and may contain extreme violence and graphic sexual content. It is mostly used for 18+ movies and pornography.",
        "order": 5
      },
      {
        "certification": "13+",
        "meaning": "Appropriate – suitable for children 13 and up and may contain with moderate violence, language, and some sexual situations.",
        "order": 3
      },
      {
        "certification": "8+",
        "meaning": "Appropriate for children 8 and up may contain with little violence, language, and little to no sexual situations.",
        "order": 2
      },
      {
        "certification": "16+",
        "meaning": "Recommended for children over the age of 16 and may contain with strong violence, strong language, and strong sexual content.",
        "order": 4
      },
      {
        "certification": "NR",
        "meaning": "No rating information.",
        "order": 0
      },
      {
        "certification": "G",
        "meaning": "Appropriate for all ages and must contain little or no violence and little to no sexual content.",
        "order": 1
      }
    ],
    "DE": [
      {
        "certification": "0",
        "meaning": "Can be aired at any time.",
        "order": 1
      },
      {
        "certification": "6",
        "meaning": "Can be aired at any time.",
        "order": 2
      },
      {
        "certification": "12",
        "meaning": "The broadcaster must take the decision about the air time by taking in consideration the impact on young children in the timeframe from 6:00am to 8:00pm.",
        "order": 3
      },
      {
        "certification": "16",
        "meaning": "Can be aired only from 10:00pm Uhr to 6:00am.",
        "order": 4
      },
      {
        "certification": "18",
        "meaning": "Can be aired only from 11:00pm Uhr to 6:00am.",
        "order": 5
      }
    ],
    "ES": [
      {
        "certification": "NR",
        "meaning": "No rating information.",
        "order": 0
      },
      {
        "certification": "ERI",
        "meaning": "Specially recommended for younger children.",
        "order": 1
      },
      {
        "certification": "TP",
        "meaning": "For general viewing.",
        "order": 2
      },
      {
        "certification": "7",
        "meaning": "Not recommended for viewers under the age of 7.",
        "order": 3
      },
      {
        "certification": "10",
        "meaning": "Not recommended for viewers under the age of 10.",
        "order": 4
      },
      {
        "certification": "12",
        "meaning": "Not recommended for viewers under the age of 12.",
        "order": 5
      },
      {
        "certification": "13",
        "meaning": "Not recommended for viewers under the age of 13.",
        "order": 6
      },
      {
        "certification": "16",
        "meaning": "Not recommended for viewers under the age of 16.",
        "order": 7
      },
      {
        "certification": "18",
        "meaning": "Not recommended for viewers under the age of 18.",
        "order": 8
      }
    ],
    "FR": [
      {
        "certification": "NR",
        "meaning": "No rating information.",
        "order": 0
      },
      {
        "certification": "10",
        "meaning": "Not recommended for children under 10. Not allowed in children's television series.",
        "order": 1
      },
      {
        "certification": "12",
        "meaning": "Not recommended for children under 12. Not allowed air before 10:00 p.m. Some channels and programs are subject to exception.",
        "order": 2
      },
      {
        "certification": "16",
        "meaning": "Not recommended for children under 16. Not allowed air before 10:30 p.m. Some channels and programs are subject to exception.",
        "order": 3
      },
      {
        "certification": "18",
        "meaning": "Not recommended for persons under 18. Allowed between midnight and 5 a.m. and only in some channels, access to these programs is locked by a personal password.",
        "order": 4
      }
    ],
    "GB": [
      {
        "certification": "U",
        "meaning": "The U symbol stands for Universal. A U film should be suitable for audiences aged four years and over.",
        "order": 0
      },
      {
        "certification": "PG",
        "meaning": "PG stands for Parental Guidance. This means a film is suitable for general viewing, but some scenes may be unsuitable for young children. A PG film should not unsettle a child aged around eight or older.",
        "order": 1
      },
      {
        "certification": "12A",
        "meaning": "Films classified 12A and video works classified 12 contain material that is not generally suitable for children aged under 12. 12A requires an adult to accompany any child under 12 seeing a 12A film at the cinema.",
        "order": 2
      },
      {
        "certification": "12",
        "meaning": "Films classified 12A and video works classified 12 contain material that is not generally suitable for children aged under 12.",
        "order": 3
      },
      {
        "certification": "15",
        "meaning": "No-one under 15 is allowed to see a 15 film at the cinema or buy/rent a 15 rated video. 15 rated works are not suitable for children under 15 years of age.",
        "order": 4
      },
      {
        "certification": "18",
        "meaning": "Films rated 18 are for adults. No-one under 18 is allowed to see an 18 film at the cinema or buy / rent an 18 rated video. No 18 rated works are suitable for children.",
        "order": 5
      },
      {
        "certification": "R18",
        "meaning": "The R18 category is a special and legally-restricted classification primarily for explicit works of consenting sex or strong fetish material involving adults.",
        "order": 6
      }
    ],
    "HU": [
      {
        "certification": "Unrated",
        "meaning": "Without age restriction.",
        "order": 1
      },
      {
        "certification": "Children",
        "meaning": "Programs recommended for children. It is an optional rating, there is no obligation for broadcasters to indicate it.",
        "order": 2
      },
      {
        "certification": "16",
        "meaning": "Programs not recommended for teens and children below the age of 16, may contain more intensive violence and sexual content. A yellow circle with the number 16 written inside is used for this rating.",
        "order": 5
      },
      {
        "certification": "18",
        "meaning": "The program is recommended only for adult viewers (for ages 18 and up), may contain explicit violence and explicit sexual content. A red circle with the number 18 written inside is used for this rating (the red circle was also used until 2002, but it did not contain any number in it).",
        "order": 6
      },
      {
        "certification": "NR",
        "meaning": "No rating information.",
        "order": 0
      },
      {
        "certification": "6",
        "meaning": "Programs not recommended for children below the age of 6, may not contain any violence or sexual content. A yellow circle with the number 6 written inside is used for this rating.",
        "order": 3
      },
      {
        "certification": "12",
        "meaning": "Programs not recommended for children below the age of 12, may contain light sexual content or explicit language. Most films without serious violence or sexual content fit into this category as well. A yellow circle with the number 12 written inside is used for this rating.",
        "order": 4
      }
    ],
    "KR": [
      {
        "certification": "Exempt",
        "meaning": "This rating is only for knowledge based game shows; lifestyle shows; documentary shows; news; current topic discussion shows; education/culture shows; sports that excludes MMA or other violent sports; and other programs that Korea Communications Standards Commission recognizes.",
        "order": 1
      },
      {
        "certification": "ALL",
        "meaning": "This rating is for programming that is appropriate for all ages. This program usually involves programs designed for children or families.",
        "order": 2
      },
      {
        "certification": "7",
        "meaning": "This rating is for programming that may contain material inappropriate for children younger than 7, and parental discretion should be used. Some cartoon programming not deemed strictly as ",
        "order": 3
      },
      {
        "certification": "12",
        "meaning": "This rating is for programs that may deemed inappropriate for those younger than 12, and parental discretion should be used. Usually used for animations that have stronger themes or violence then those designed for children, or for reality shows that have mild violence, themes, or language.",
        "order": 4
      },
      {
        "certification": "15",
        "meaning": "This rating is for programs that contain material that may be inappropriate for children under 15, and that parental discretion should be used. Examples include most dramas, and talk shows on OTA (over-the-air) TV (KBS, MBC, SBS), and many American TV shows/dramas on Cable TV channels like OCN and OnStyle. The programs that have this rating may include moderate or strong adult themes, language, sexual inference, and violence. As with the TV-MA rating in North America, this rating is commonly applied to live events where the occurrence of inappropriate dialogue is unpredictable. Since 2007, this rating is the most used rating for TV.",
        "order": 5
      },
      {
        "certification": "19",
        "meaning": "This rating is for programs that are intended for adults only. 19-rated programming cannot air during the hours of 7:00AM to 9:00AM, and 1:00PM to 10:00PM. Programmes that receive this rating will almost certainly have adult themes, sexual situations, frequent use of strong language and disturbing scenes of violence.",
        "order": 6
      }
    ],
    "LT": [
      {
        "certification": "S",
        "meaning": "Intended for adult viewers from the age of 18 (corresponding to the age-appropriate index N-18) and broadcast between 23 (11pm) and 6 (6am) hours; Limited to minors and intended for adult audiences.",
        "order": 3
      },
      {
        "certification": "N-14",
        "meaning": "Intended for viewers from 14 years of age and broadcast from 21 (9pm) to 6 (6am) hours.",
        "order": 2
      },
      {
        "certification": "NR",
        "meaning": "No rating information.",
        "order": 0
      },
      {
        "certification": "N-7",
        "meaning": "Intended for viewers from 7 years old.",
        "order": 1
      }
    ],
    "NL": [
      {
        "certification": "NR",
        "meaning": "No rating information.",
        "order": 0
      },
      {
        "certification": "AL",
        "meaning": "Not harmful / All Ages.",
        "order": 1
      },
      {
        "certification": "6",
        "meaning": "Take care with children under 6.",
        "order": 2
      },
      {
        "certification": "9",
        "meaning": "Take care with children under 9.",
        "order": 3
      },
      {
        "certification": "12",
        "meaning": "Take care with children under 12.",
        "order": 4
      },
      {
        "certification": "16",
        "meaning": "Take care with children under 16.",
        "order": 6
      },
      {
        "certification": "14",
        "meaning": "Take care with children under 14.",
        "order": 5
      },
      {
        "certification": "18",
        "meaning": "Take care with children under 18.",
        "order": 7
      }
    ],
    "PH": [
      {
        "certification": "NR",
        "meaning": "No rating information.",
        "order": 0
      },
      {
        "certification": "G",
        "meaning": "Suitable for all ages. Material for television, which in the judgment of the Board does not contain anything unsuitable for children.",
        "order": 1
      },
      {
        "certification": "PG",
        "meaning": "Parental guidance suggested. Material for television, which, in the judgment of the Board, may contain some adult material that may be permissible for children to watch but only under the guidance and supervision of a parent or adult.",
        "order": 2
      },
      {
        "certification": "SPG",
        "meaning": "Stronger and more vigilant parental guidance is suggested. Programs classified as “SPG” may contain more serious topic and theme, which may not be advisable for children to watch except under the very vigilant guidance and presence of a parent or an adult.",
        "order": 3
      },
      {
        "certification": "X",
        "meaning": "Any television program that does not conform to the “G”, “PG”, and “SPG” classification shall be disapproved for television broadcast.",
        "order": 4
      }
    ],
    "PT": [
      {
        "certification": "12AP",
        "meaning": "Acompanhamento Parental (may not be suitable for children under 12, parental guidance advised).",
        "order": 3
      },
      {
        "certification": "18",
        "meaning": "Not suitable for children under 18.",
        "order": 5
      },
      {
        "certification": "NR",
        "meaning": "No rating information.",
        "order": 0
      },
      {
        "certification": "16",
        "meaning": "Not suitable for children under 16, access to these programs is locked by a personal password.",
        "order": 4
      },
      {
        "certification": "T",
        "meaning": "Todos (suitable for all).",
        "order": 1
      },
      {
        "certification": "10AP",
        "meaning": "Acompanhamento Parental (may not be suitable for children under 10, parental guidance advised).",
        "order": 2
      }
    ],
    "RU": [
      {
        "certification": "16+",
        "meaning": "Only teens the age of 16 or older can watch.",
        "order": 4
      },
      {
        "certification": "18+",
        "meaning": "Restricted to People 18 or Older.",
        "order": 5
      },
      {
        "certification": "6+",
        "meaning": "Only kids the age of 6 or older can watch.",
        "order": 2
      },
      {
        "certification": "12+",
        "meaning": "Only kids the age of 12 or older can watch.",
        "order": 3
      },
      {
        "certification": "0+",
        "meaning": "Can be watched by Any Age.",
        "order": 1
      }
    ],
    "SK": [
      {
        "certification": "NR",
        "meaning": "No rating information.",
        "order": 0
      },
      {
        "certification": "7",
        "meaning": "Content suitable for children over 6 years.",
        "order": 2
      },
      {
        "certification": "U",
        "meaning": "Content suitable for all children.",
        "order": 1
      },
      {
        "certification": "12",
        "meaning": "Content suitable for children over 12 years.",
        "order": 3
      },
      {
        "certification": "15",
        "meaning": "Content suitable for teens over 15 years.",
        "order": 4
      },
      {
        "certification": "18",
        "meaning": "Content exclusively for adults.",
        "order": 5
      }
    ],
    "TH": [
      {
        "certification": "ส",
        "meaning": "Sor - Educational movies which the public should be encouraged to see.",
        "order": 1
      },
      {
        "certification": "ท",
        "meaning": "Tor - G Movies appropriate for the general public. No sex, abusive language or violence.",
        "order": 2
      },
      {
        "certification": "น 13+",
        "meaning": "Nor 13+ Movies appropriate for audiences aged 13 and older.",
        "order": 3
      },
      {
        "certification": "น 15+",
        "meaning": "Nor 15+ Movies appropriate for audiences aged 15 and older. Some violence, brutality, inhumanity, bad language or indecent gestures allowed.",
        "order": 4
      },
      {
        "certification": "น 18+",
        "meaning": "Nor 18+ Movies appropriate for audiences aged 18 and older.",
        "order": 5
      },
      {
        "certification": "ฉ 20-",
        "meaning": "Chor 20 - Movies prohibited for audiences aged below 20.",
        "order": 6
      },
      {
        "certification": "-",
        "meaning": "Banned.",
        "order": 7
      }
    ],
    "US": [
      {
        "certification": "TV-MA",
        "meaning": "This program is specifically designed to be viewed by adults and therefore may be unsuitable for children under 17.",
        "order": 6
      },
      {
        "certification": "TV-Y",
        "meaning": "This program is designed to be appropriate for all children.",
        "order": 1
      },
      {
        "certification": "TV-14",
        "meaning": "This program contains some material that many parents would find unsuitable for children under 14 years of age.",
        "order": 5
      },
      {
        "certification": "NR",
        "meaning": "No rating information.",
        "order": 0
      },
      {
        "certification": "TV-PG",
        "meaning": "This program contains material that parents may find unsuitable for younger children.",
        "order": 4
      },
      {
        "certification": "TV-Y7",
        "meaning": "This program is designed for children age 7 and above.",
        "order": 2
      },
      {
        "certification": "TV-G",
        "meaning": "Most parents would find this program suitable for all ages.",
        "order": 3
      }
    ],
    "IT": [
      {
        "certification": "T",
        "meaning": "All ages admitted.",
        "order": 1
      },
      {
        "certification": "BA",
        "meaning": "Parental guidance suggested.",
        "order": 2
      },
      {
        "certification": "VM12",
        "meaning": "Not recommended for children under 12.",
        "order": 3
      },
      {
        "certification": "VM14",
        "meaning": "Not recommended for children under 14.",
        "order": 4
      },
      {
        "certification": "VM18",
        "meaning": "Not recommended for children under 18.",
        "order": 5
      }
    ],
    "FI": [
      {
        "certification": "S",
        "meaning": "Allowed at all times.",
        "order": 0
      },
      {
        "certification": "K7",
        "meaning": "Not allowed air before 7:00 a.m., not recommended for children under 7.",
        "order": 1
      },
      {
        "certification": "K12",
        "meaning": "Not allowed air before 5:00 p.m., not recommended for children under 12.",
        "order": 2
      },
      {
        "certification": "K16",
        "meaning": "Not allowed air before 9:00 p.m., not recommended for children under 16.",
        "order": 3
      },
      {
        "certification": "K18",
        "meaning": "Not allowed air before 11:00 p.m., not recommended for children under 18.",
        "order": 4
      }
    ],
    "MY": [
      {
        "certification": "U",
        "meaning": "No age limit. Can be broadcast anytime.",
        "order": 1
      },
      {
        "certification": "P13",
        "meaning": "Viewers under 13 years of age need parental/guardian supervision while viewing. Can be broadcast anytime, but some elements may only be broadcast at night.",
        "order": 2
      },
      {
        "certification": "18",
        "meaning": "For viewers 18 and above. Cannot be broadcast before 10:00 PM.",
        "order": 3
      }
    ],
    "NZ": [
      {
        "certification": "G",
        "meaning": "Approved for general viewing.",
        "order": 1
      },
      {
        "certification": "PG",
        "meaning": "Parental Guidance recommended for younger viewers.",
        "order": 2
      },
      {
        "certification": "M",
        "meaning": "Suitable for mature audiences 16 years and over.",
        "order": 3
      },
      {
        "certification": "16",
        "meaning": "People under 16 years should not view.",
        "order": 4
      },
      {
        "certification": "18",
        "meaning": "People under 18 years should not view.",
        "order": 5
      }
    ],
    "NO": [
      {
        "certification": "A",
        "meaning": "Allowed at all times.",
        "order": 1
      },
      {
        "certification": "6",
        "meaning": "Allowed at all times.",
        "order": 2
      },
      {
        "certification": "9",
        "meaning": "Allowed at all times.",
        "order": 3
      },
      {
        "certification": "12",
        "meaning": "Only allowed during the period 19.00 – 05.30.",
        "order": 4
      },
      {
        "certification": "15",
        "meaning": "Only allowed during the period 21.00 – 05.30.",
        "order": 5
      },
      {
        "certification": "18",
        "meaning": "Only allowed during the period 21.00 – 05.30.",
        "order": 6
      }
    ],
    "BG": [
      {
        "certification": "Unrated",
        "meaning": "Can be viewed for each age.",
        "order": 1
      },
      {
        "certification": "12",
        "meaning": "Content suitable for viewers over the age of 12.",
        "order": 2
      },
      {
        "certification": "14",
        "meaning": "Content suitable for viewers over the age of 14.",
        "order": 3
      },
      {
        "certification": "16",
        "meaning": "Content suitable for viewers over the age of 16.",
        "order": 4
      },
      {
        "certification": "18",
        "meaning": "Content suitable for viewers over the age of 18. Not allowed before 23:00.",
        "order": 5
      }
    ],
    "MX": [
      {
        "certification": "AA",
        "meaning": "Aimed at children (can be broadcast anytime).",
        "order": 1
      },
      {
        "certification": "A",
        "meaning": "Appropriate for all ages.",
        "order": 2
      },
      {
        "certification": "B",
        "meaning": "Designed for ages 12 and older (allowed only between 16:00 and 05:59).",
        "order": 3
      },
      {
        "certification": "B-15",
        "meaning": "Designed for ages 15 and up (allowed only between 19:00 and 05:59).",
        "order": 4
      },
      {
        "certification": "C",
        "meaning": "Designed to be viewed by adults aged 18 or older (allowed only between 21:00 and 05:59).",
        "order": 5
      },
      {
        "certification": "D",
        "meaning": "Exclusively for adults aged 18 or older (allowed only between midnight and 05:00).",
        "order": 6
      }
    ],
    "IN": [
      {
        "certification": "U",
        "meaning": "Viewable for all ages.",
        "order": 1
      },
      {
        "certification": "U/A 7+",
        "meaning": "Viewable for 7 and above years old.",
        "order": 2
      },
      {
        "certification": "U/A 13+",
        "meaning": "Viewable for 13 and above years old.",
        "order": 3
      },
      {
        "certification": "U/A 16+",
        "meaning": "Viewable for 16 and above years old.",
        "order": 4
      },
      {
        "certification": "A",
        "meaning": "Viewable only for adults.",
        "order": 5
      }
    ],
    "DK": [
      {
        "certification": "A",
        "meaning": "Suitable for a general audience.",
        "order": 1
      },
      {
        "certification": "7",
        "meaning": "Not recommended for children under 7.",
        "order": 2
      },
      {
        "certification": "11",
        "meaning": "For ages 11 and up.",
        "order": 3
      },
      {
        "certification": "15",
        "meaning": "For ages 15 and up.",
        "order": 4
      }
    ],
    "SE": [
      {
        "certification": "Btl",
        "meaning": "",
        "order": 1
      },
      {
        "certification": "Från 7 år",
        "meaning": "",
        "order": 2
      },
      {
        "certification": "Från 11 år",
        "meaning": "",
        "order": 3
      },
      {
        "certification": "Från 15 år",
        "meaning": "",
        "order": 4
      }
    ],
    "ID": [
      {
        "certification": "SU",
        "meaning": "Suitable for general audiences over the age of 2 years.",
        "order": 1
      },
      {
        "certification": "P",
        "meaning": "Suitable for pre-school children from ages 2 through 6.",
        "order": 2
      },
      {
        "certification": "A",
        "meaning": "Suitable for children from ages 7 through 12.",
        "order": 3
      },
      {
        "certification": "R",
        "meaning": "Suitable for teens from ages 13 through 17.",
        "order": 4
      },
      {
        "certification": "D",
        "meaning": "Suitable for viewers over 18 and older. Programmes with this rating are aired from 10.00 PM to 03.00 AM.",
        "order": 5
      }
    ],
    "TR": [
      {
        "certification": "Genel İzleyici",
        "meaning": "General audience. Suitable for all ages.",
        "order": 1
      },
      {
        "certification": "7+",
        "meaning": "Suitable for ages 7 and over.",
        "order": 2
      },
      {
        "certification": "13+",
        "meaning": "Suitable for ages 13 and over.",
        "order": 3
      },
      {
        "certification": "18+",
        "meaning": "Suitable for ages 18 and over.",
        "order": 4
      }
    ],
    "AR": [
      {
        "certification": "ATP",
        "meaning": "Suitable for all audiences.",
        "order": 1
      },
      {
        "certification": "SAM 13",
        "meaning": "Suitable for ages 13 and up.",
        "order": 2
      },
      {
        "certification": "SAM 16",
        "meaning": "Suitable for ages 16 and up.",
        "order": 3
      },
      {
        "certification": "SAM 18",
        "meaning": "Suitable for ages 18 and up.",
        "order": 4
      }
    ],
    "PL": [
      {
        "certification": "0",
        "meaning": "Positive or neutral view of the world, little to no violence, non-sexual love, and no sexual content.",
        "order": 1
      },
      {
        "certification": "7",
        "meaning": "As above; may additionally contain some mild language, bloodless violence, and a more negative view of the world.",
        "order": 2
      },
      {
        "certification": "12",
        "meaning": "May contain some foul language, some violence, and some sexual content.",
        "order": 3
      },
      {
        "certification": "16",
        "meaning": "Deviant social behaviour, world filled with violence and sexuality, simplified picture of adulthood, display of physical force, especially in controversial social context (against or by parents, teachers, etc.), immoral behaviour without ethic dilemma, putting the blame on the victim, excessive concentration on material possessions.",
        "order": 4
      },
      {
        "certification": "18",
        "meaning": "One-sided display of the joys of adult life without showing responsibilities (e.g. work), social justification of violent behaviour, excessive vulgarity, use of racial slurs and social stereotypes, explicit sexual content, praise of aggression or vulgarity, access to these programs is locked by a personal password.",
        "order": 5
      }
    ],
    "MA": [
      {
        "certification": "NR",
        "meaning": "All audiences.",
        "order": 0
      },
      {
        "certification": "10",
        "meaning": "Not recommended for under 10.",
        "order": 1
      },
      {
        "certification": "12",
        "meaning": "Not recommended for under 12.",
        "order": 2
      },
      {
        "certification": "16",
        "meaning": "Not recommended for under 16.",
        "order": 3
      }
    ],
    "GR": [
      {
        "certification": "K",
        "meaning": "Suitable for all ages.",
        "order": 1
      },
      {
        "certification": "8",
        "meaning": "Suitable for ages 8 and up (allowed only 30 minutes after the kid-friendly zone).",
        "order": 2
      },
      {
        "certification": "12",
        "meaning": "Suitable for ages 12 and up (allowed only between 9:30 p.m. and 6:00 a.m., or between 10:00 p.m. and 6:00 a.m. during Fridays, Saturdays and school holidays).",
        "order": 3
      },
      {
        "certification": "16",
        "meaning": "Suitable for ages 16 and up (allowed only between 11:00 p.m. and 6:00 a.m.).",
        "order": 4
      },
      {
        "certification": "18",
        "meaning": "Suitable for ages 18 and up (allowed only between 1:00 a.m. and 6:00 a.m.).",
        "order": 5
      }
    ],
    "IL": [
      {
        "certification": "E",
        "meaning": "Exempt from classification. This rating is usually applied to live broadcasts.",
        "order": 1
      },
      {
        "certification": "G",
        "meaning": "General Audiences. Anyone, regardless of age, can watch the programme.",
        "order": 1
      },
      {
        "certification": "12+",
        "meaning": "Suitable for children 12 and over only.",
        "order": 2
      },
      {
        "certification": "15+",
        "meaning": "Suitable for teens 15 and over only.",
        "order": 3
      },
      {
        "certification": "18+",
        "meaning": "Suitable for adults 18 and over only.",
        "order": 4
      }
    ],
    "TW": [
      {
        "certification": "0+",
        "meaning": "Suitable for watching by general audiences.",
        "order": 1
      },
      {
        "certification": "6+",
        "meaning": "Not suitable for viewing by children under the age of six; children over six and under the age of twelve can view if accompanied by parents, teacher or an adult relative.",
        "order": 2
      },
      {
        "certification": "12+",
        "meaning": "Not suitable for viewing by children under the age of twelve, split from the former rating Parental Guidance.",
        "order": 3
      },
      {
        "certification": "15+",
        "meaning": "Not suitable for viewing by people under the age of fifteen, split from the former rating Parental Guidance.",
        "order": 4
      },
      {
        "certification": "18+",
        "meaning": "Not suitable for viewing by people under the age of eighteen.",
        "order": 4
      }
    ],
    "ZA": [
      {
        "certification": "All",
        "meaning": "This is a programme/film that does not contain any obscenity, and is suitable for family viewing. A logo must be displayed in the corner of the screen for 30 seconds after each commercial break.",
        "order": 1
      },
      {
        "certification": "PG",
        "meaning": "Children under 6 may watch this programme/film, but must be accompanied by an adult. This program contains an adult related theme, which might include very mild language, violence and sexual innuendo. A logo must be displayed in the corner of the screen for one minute after each commercial break.",
        "order": 2
      },
      {
        "certification": "13",
        "meaning": "Children under 13 are prohibited from watching this programme/film. This programme contains mild language, violence and sexual innuendo. A logo must be displayed in the corner of the screen for two minutes after each commercial break.",
        "order": 3
      },
      {
        "certification": "16",
        "meaning": "Children under 16 are prohibited from watching this programme/film. It contains moderate violence, language, and some sexual situations. In the case of television, this programme may only be broadcast after 9pm–4:30am. A logo must be displayed in the corner of the screen for five minutes after each commercial break. A full-screen warning must be issued before the start of the programme. If the programme is longer than an hour, a warning must be displayed every half an hour.",
        "order": 4
      },
      {
        "certification": "18",
        "meaning": "Children under 18 are prohibited from watching this programme/film. It contains extreme violence, language and/or graphic sexual content. In the case of television, this program may only be broadcast from 10pm–4:30am. A logo must be displayed in the corner of the screen for the duration of the programme. A full-screen warning must be issued before the start of the programme and after each commercial break.",
        "order": 5
      },
      {
        "certification": "X18",
        "meaning": "This is reserved for films of an extreme sexual nature (pornography). X18 films may only be distributed in the form of video and DVD in a controlled environment (e.g. adult shops). No public viewing of this film may take place. X18 films may not be broadcast on television and in cinemas. This has been breached twice by e.tv, where the softcore (borderline hardcore) Emmanuelle was screened. The X18 rating does not refer to child pornography/child sexual abuse—due to being banned by the Film and Publication Board.",
        "order": 6
      }
    ],
    "SG": [
      {
        "certification": "G",
        "meaning": "",
        "order": 1
      },
      {
        "certification": "PG",
        "meaning": "",
        "order": 2
      },
      {
        "certification": "PG13",
        "meaning": "",
        "order": 3
      },
      {
        "certification": "NC16",
        "meaning": "",
        "order": 4
      },
      {
        "certification": "M18",
        "meaning": "",
        "order": 5
      },
      {
        "certification": "R21",
        "meaning": "Suitable for adults aged 21 and above.",
        "order": 6
      }
    ],
    "PR": [
      {
        "certification": "NR",
        "meaning": "",
        "order": 0
      },
      {
        "certification": "TV-MA",
        "meaning": "",
        "order": 6
      },
      {
        "certification": "TV-Y",
        "meaning": "",
        "order": 1
      },
      {
        "certification": "TV-Y7",
        "meaning": "",
        "order": 2
      },
      {
        "certification": "TV-G",
        "meaning": "",
        "order": 3
      },
      {
        "certification": "TV-PG",
        "meaning": "",
        "order": 4
      },
      {
        "certification": "TV-14",
        "meaning": "",
        "order": 5
      }
    ],
    "VI": [
      {
        "certification": "NR",
        "meaning": "",
        "order": 0
      },
      {
        "certification": "TV-Y",
        "meaning": "",
        "order": 1
      },
      {
        "certification": "TV-Y7",
        "meaning": "",
        "order": 2
      },
      {
        "certification": "TV-G",
        "meaning": "",
        "order": 3
      },
      {
        "certification": "TV-PG",
        "meaning": "",
        "order": 4
      },
      {
        "certification": "TV-14",
        "meaning": "",
        "order": 5
      },
      {
        "certification": "TV-MA",
        "meaning": "",
        "order": 6
      }
    ]
  }
}