-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcase_category.json
More file actions
1310 lines (1310 loc) · 44.1 KB
/
case_category.json
File metadata and controls
1310 lines (1310 loc) · 44.1 KB
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
{
"0101": {
"Category": "Labour Matters",
"Sub Category": "Dismissal"
},
"0102": {
"Category": "Labour Matters",
"Sub Category": "Retrenchment"
},
"0103": {
"Category": "Labour Matters",
"Sub Category": "Contract Labour"
},
"0104": {
"Category": "Labour Matters",
"Sub Category": "Matters relating to wages, bonus, ad-hoc, casual daily wages & their regularisation"
},
"0105": {
"Category": "Labour Matters",
"Sub Category": "Matters relating to Workmen Compensation Act"
},
"0106": {
"Category": "Labour Matters",
"Sub Category": "ESI"
},
"0107": {
"Category": "Labour Matters",
"Sub Category": "Factory Act"
},
"0108": {
"Category": "Labour Matters",
"Sub Category": "Conditions of Service & Industrial Employment (Standing Order Act, 1946)"
},
"0109": {
"Category": "Labour Matters",
"Sub Category": "Matters under various States Act"
},
"0110": {
"Category": "Labour Matters",
"Sub Category": "Others"
},
"0111": {
"Category": "Labour Matters",
"Sub Category": "Matters relating to Provident Fund"
},
"0112": {
"Category": "Labour Matters",
"Sub Category": "Payment of Gratuity Act, 1962"
},
"0113": {
"Category": "Labour Matters",
"Sub Category": "Trade Unions Act, 1926"
},
"0114": {
"Category": "Labour Matters",
"Sub Category": "Other matters under Industrial Disputes Act, 1947"
},
"0201": {
"Category": "Rent Act Matters",
"Sub Category": "Eviction matters of personal necessity"
},
"0202": {
"Category": "Rent Act Matters",
"Sub Category": "Eviction matters for re-building, and material alteration"
},
"0203": {
"Category": "Rent Act Matters",
"Sub Category": "Eviction matters of sub-letting"
},
"0204": {
"Category": "Rent Act Matters",
"Sub Category": "Eviction matters of disclaimer of title"
},
"0205": {
"Category": "Rent Act Matters",
"Sub Category": "Arrears of rent"
},
"0206": {
"Category": "Rent Act Matters",
"Sub Category": "Others"
},
"0207": {
"Category": "Rent Act Matters",
"Sub Category": "Eviction on the ground of misuse"
},
"0208": {
"Category": "Rent Act Matters",
"Sub Category": "Enhancement of rent"
},
"0209": {
"Category": "Rent Act Matters",
"Sub Category": "Eviction on the ground of non-payment of rent"
},
"0301": {
"Category": "Direct Taxes Matter",
"Sub Category": "Income Tax Reference under Section 257"
},
"0302": {
"Category": "Direct Taxes Matter",
"Sub Category": "Appeals under Section 261 of Income Tax Act upon a certificate granted by the High Court"
},
"0303": {
"Category": "Direct Taxes Matter",
"Sub Category": "Other matters under Income Tax act, 1961"
},
"0304": {
"Category": "Direct Taxes Matter",
"Sub Category": "Cases relating to Excess Profit Tax Act 1940"
},
"0305": {
"Category": "Direct Taxes Matter",
"Sub Category": "Business profit tax Act, 1947"
},
"0306": {
"Category": "Direct Taxes Matter",
"Sub Category": "Agricultural Income Tax"
},
"0307": {
"Category": "Direct Taxes Matter",
"Sub Category": "Reference under Section 27(3)(a) of the Wealth Tax Act, 1957"
},
"0308": {
"Category": "Direct Taxes Matter",
"Sub Category": "Appeals under Section 29(1) of the Wealth Tax Act, 1957 upon a certificate granted by the High Court"
},
"0309": {
"Category": "Direct Taxes Matter",
"Sub Category": "Gift Tax Act 1958"
},
"0310": {
"Category": "Direct Taxes Matter",
"Sub Category": "Property Tax"
},
"0311": {
"Category": "Direct Taxes Matter",
"Sub Category": "Valuation"
},
"0312": {
"Category": "Direct Taxes Matter",
"Sub Category": "Capital Gains"
},
"0313": {
"Category": "Direct Taxes Matter",
"Sub Category": "SLPs relating to Wealth Tax"
},
"0314": {
"Category": "Direct Taxes Matter",
"Sub Category": "Income from salaries"
},
"0315": {
"Category": "Direct Taxes Matter",
"Sub Category": "Income from House Property"
},
"0316": {
"Category": "Direct Taxes Matter",
"Sub Category": "Income from Business/Profession"
},
"0317": {
"Category": "Direct Taxes Matter",
"Sub Category": "Income from other sources"
},
"0318": {
"Category": "Direct Taxes Matter",
"Sub Category": "Deductions/exemptions"
},
"0319": {
"Category": "Direct Taxes Matter",
"Sub Category": "Penalties/Prosecution/Settlement Commission"
},
"0320": {
"Category": "Direct Taxes Matter",
"Sub Category": "Re-assessment/Revisional Power/Rectification"
},
"0321": {
"Category": "Direct Taxes Matter",
"Sub Category": "CBDT circular"
},
"0322": {
"Category": "Direct Taxes Matter",
"Sub Category": "Registration"
},
"0323": {
"Category": "Direct Taxes Matter",
"Sub Category": "Others"
},
"0324": {
"Category": "Direct Taxes Matter",
"Sub Category": "Matters relating to recovery of Direct Tax due"
},
"0401": {
"Category": "Indirect Taxes Matters",
"Sub Category": "Interpretation of the Customs Act, Rules & Regulations"
},
"0402": {
"Category": "Indirect Taxes Matters",
"Sub Category": "Interpretation of exemption notification under Customs Act"
},
"0403": {
"Category": "Indirect Taxes Matters",
"Sub Category": "Interpretation of other notification under Customs Act"
},
"0404": {
"Category": "Indirect Taxes Matters",
"Sub Category": "Valuation of Goods under the Customs Act"
},
"0405": {
"Category": "Indirect Taxes Matters",
"Sub Category": "Sales Tax Act (Central & various States)"
},
"0406": {
"Category": "Indirect Taxes Matters",
"Sub Category": "Cess Acts (Rubber, Coffee, Tea, Sugar, etc.)"
},
"0407": {
"Category": "Indirect Taxes Matters",
"Sub Category": "Entry Taxes"
},
"0408": {
"Category": "Indirect Taxes Matters",
"Sub Category": "Motor Vehicles Taxation"
},
"0409": {
"Category": "Indirect Taxes Matters",
"Sub Category": "Purchase Tax"
},
"0410": {
"Category": "Indirect Taxes Matters",
"Sub Category": "Licence Fee"
},
"0411": {
"Category": "Indirect Taxes Matters",
"Sub Category": "Classification under the Indian Tariff Act, 1934 & Customs Tariff Act, 1975"
},
"0412": {
"Category": "Indirect Taxes Matters",
"Sub Category": "Reference under Section 82C of the Gold Control Act"
},
"0413": {
"Category": "Indirect Taxes Matters",
"Sub Category": "Hotel Receipts Tax Act"
},
"0414": {
"Category": "Indirect Taxes Matters",
"Sub Category": "Entertainment Tax"
},
"0415": {
"Category": "Indirect Taxes Matters",
"Sub Category": "Terminal Tax"
},
"0416": {
"Category": "Indirect Taxes Matters",
"Sub Category": "Octroi"
},
"0417": {
"Category": "Indirect Taxes Matters",
"Sub Category": "Valuation"
},
"0418": {
"Category": "Indirect Taxes Matters",
"Sub Category": "Toll Tax"
},
"0419": {
"Category": "Indirect Taxes Matters",
"Sub Category": "Interpretation of the Central Excise Act & the rules"
},
"0420": {
"Category": "Indirect Taxes Matters",
"Sub Category": "Interpretation of exemption notifications under Central Excise Act"
},
"0421": {
"Category": "Indirect Taxes Matters",
"Sub Category": "Interpretation of other notifications under Central Excise Act"
},
"0422": {
"Category": "Indirect Taxes Matters",
"Sub Category": "Valuation of goods under the Central Excise Act"
},
"0423": {
"Category": "Indirect Taxes Matters",
"Sub Category": "Tariff classification under the Central Excise Act, 1944 and Central Excise Tariff Act, 1985"
},
"0424": {
"Category": "Indirect Taxes Matters",
"Sub Category": "Import/Export Control Act, 1947"
},
"0425": {
"Category": "Indirect Taxes Matters",
"Sub Category": "Import Control Order"
},
"0426": {
"Category": "Indirect Taxes Matters",
"Sub Category": "Open General License"
},
"0427": {
"Category": "Indirect Taxes Matters",
"Sub Category": "Import/Export Policy"
},
"0428": {
"Category": "Indirect Taxes Matters",
"Sub Category": "Others"
},
"0429": {
"Category": "Indirect Taxes Matters",
"Sub Category": "Professional Tax"
},
"0430": {
"Category": "Indirect Taxes Matters",
"Sub Category": "Water & Sewage Tax"
},
"0431": {
"Category": "Indirect Taxes Matters",
"Sub Category": "Service Tax"
},
"0432": {
"Category": "Indirect Taxes Matters",
"Sub Category": "Appeals u/s 130 E of Customs Act, 1962"
},
"0433": {
"Category": "Indirect Taxes Matters",
"Sub Category": "Appeals u/s 35 L of Central Excise and Salt Act, 1944."
},
"0434": {
"Category": "Indirect Taxes Matters",
"Sub Category": "Anti Dumping Duty"
},
"0435": {
"Category": "Indirect Taxes Matters",
"Sub Category": "Value Added Tax"
},
"0436": {
"Category": "Indirect Taxes Matters",
"Sub Category": "Matters relating to recovery of Indirect Tax due"
},
"0501": {
"Category": "Land Acquisition & Requisition Matters",
"Sub Category": "Matters challenging the acquisition proceedings"
},
"0502": {
"Category": "Land Acquisition & Requisition Matters",
"Sub Category": "Matters challenging compensations"
},
"0503": {
"Category": "Land Acquisition & Requisition Matters",
"Sub Category": "Requisition & De-requisition of property"
},
"0504": {
"Category": "Land Acquisition & Requisition Matters",
"Sub Category": "Others"
},
"0505": {
"Category": "Land Acquisition & Requisition Matters",
"Sub Category": "Acquisition for Defence purpose"
},
"0601": {
"Category": "Service Matters",
"Sub Category": "Retiral benefits"
},
"0602": {
"Category": "Service Matters",
"Sub Category": "Regularisation of ad-hoc employees etc."
},
"0603": {
"Category": "Service Matters",
"Sub Category": "Removal/Dismissal/Termination from service or other major penalties"
},
"0604": {
"Category": "Service Matters",
"Sub Category": "Suspension"
},
"0605": {
"Category": "Service Matters",
"Sub Category": "Compulsory retirement"
},
"0606": {
"Category": "Service Matters",
"Sub Category": "Disciplinary proceedings"
},
"0607": {
"Category": "Service Matters",
"Sub Category": "Condition of service"
},
"0608": {
"Category": "Service Matters",
"Sub Category": "Promotion"
},
"0609": {
"Category": "Service Matters",
"Sub Category": "Seniority"
},
"0610": {
"Category": "Service Matters",
"Sub Category": "Pay scales"
},
"0611": {
"Category": "Service Matters",
"Sub Category": "Reservation in service for SC/ST/OBC"
},
"0612": {
"Category": "Service Matters",
"Sub Category": "Equal pay for equal work"
},
"0613": {
"Category": "Service Matters",
"Sub Category": "Others"
},
"0614": {
"Category": "Service Matters",
"Sub Category": "Medical facilities"
},
"0615": {
"Category": "Service Matters",
"Sub Category": "Recruitment/Transfer/Compassionate Appointment"
},
"0616": {
"Category": "Service Matters",
"Sub Category": "Minor penalties"
},
"0617": {
"Category": "Service Matters",
"Sub Category": "Back wages"
},
"0618": {
"Category": "Service Matters",
"Sub Category": "Voluntary Retirement"
},
"0619": {
"Category": "Service Matters",
"Sub Category": "Allotment of Accommodation"
},
"0620": {
"Category": "Service Matters",
"Sub Category": "Probation & Confirmation"
},
"0621": {
"Category": "Service Matters",
"Sub Category": "Temporary Appointment"
},
"0622": {
"Category": "Service Matters",
"Sub Category": "Use of forged/false document(s) for securing employment"
},
"0701": {
"Category": "Academic Matters",
"Sub Category": "Matters relating to examination"
},
"0702": {
"Category": "Academic Matters",
"Sub Category": "Introduction/Abolition of languages"
},
"0703": {
"Category": "Academic Matters",
"Sub Category": "Matters relating to syllabi"
},
"0704": {
"Category": "Academic Matters",
"Sub Category": "Matters relating to with-holding/cancellation of results, evaluation of marks, expulsion of students"
},
"0705": {
"Category": "Academic Matters",
"Sub Category": "Others"
},
"0706": {
"Category": "Academic Matters",
"Sub Category": "Tuition Fee"
},
"0707": {
"Category": "Academic Matters",
"Sub Category": "Matters relating to management of Educational Institutions"
},
"0801": {
"Category": "Letter Petition & Pil Matters",
"Sub Category": "Child labour matters including neglected children"
},
"0802": {
"Category": "Letter Petition & Pil Matters",
"Sub Category": "Air pollution matters, i.e., Industrial, Vehicular, Power stations etc."
},
"0803": {
"Category": "Letter Petition & Pil Matters",
"Sub Category": "Water Pollution :Industrial, domestic, sewage, rivers and sea"
},
"0804": {
"Category": "Letter Petition & Pil Matters",
"Sub Category": "Noise Pollution :Industry, vehicular"
},
"0805": {
"Category": "Letter Petition & Pil Matters",
"Sub Category": "Ecological Imbalance: Protection and conservation of forests throughout the country, protection of wild life, ban on felling of trees and falling of underground water level"
},
"0806": {
"Category": "Letter Petition & Pil Matters",
"Sub Category": "Bonded labour matters"
},
"0807": {
"Category": "Letter Petition & Pil Matters",
"Sub Category": "Matters relating to custody harassment, Jails, complaint of harassment, custodial death, speedy trial, premature release, inaction by police etc."
},
"0808": {
"Category": "Letter Petition & Pil Matters",
"Sub Category": "Matters relating to harassment of SC/ST/OBC and women"
},
"0809": {
"Category": "Letter Petition & Pil Matters",
"Sub Category": "Matters relating to unauthorised constructions including encroachments, sealing, demolitions, urban planning"
},
"0810": {
"Category": "Letter Petition & Pil Matters",
"Sub Category": "Matters relating to Election Commissions"
},
"0811": {
"Category": "Letter Petition & Pil Matters",
"Sub Category": "Scam matters"
},
"0812": {
"Category": "Letter Petition & Pil Matters",
"Sub Category": "Others"
},
"0813": {
"Category": "Letter Petition & Pil Matters",
"Sub Category": "Essential Amenities or Services"
},
"0814": {
"Category": "Letter Petition & Pil Matters",
"Sub Category": "Housing"
},
"0815": {
"Category": "Letter Petition & Pil Matters",
"Sub Category": "Natural & Man-made Disasters including Riots"
},
"0816": {
"Category": "Letter Petition & Pil Matters",
"Sub Category": "SLPs filed against judgments / orders passed by the High Courts in Writ Petitions filed as PIL"
},
"0817": {
"Category": "Letter Petition & Pil Matters",
"Sub Category": "Writ Petitions (Criminal) and Writ Petitions filed as PIL pertaining to criminal investigations/prosecution"
},
"0818": {
"Category": "Letter Petition & Pil Matters",
"Sub Category": "Social Justice Matters"
},
"0901": {
"Category": "Election Matters",
"Sub Category": "Matters challenging election of President & Vice-President of India"
},
"0902": {
"Category": "Election Matters",
"Sub Category": "Elections relating to Gram Panchayats and Zila Parishad"
},
"0903": {
"Category": "Election Matters",
"Sub Category": "Matters under Representation of Peoples Act Involving corrupt practices"
},
"0904": {
"Category": "Election Matters",
"Sub Category": "Matters relating to re-counting of votes"
},
"0905": {
"Category": "Election Matters",
"Sub Category": "Matters under the Co-operative Societies Act"
},
"0906": {
"Category": "Election Matters",
"Sub Category": "University election matters"
},
"0907": {
"Category": "Election Matters",
"Sub Category": "Delimitation of Constituency"
},
"0908": {
"Category": "Election Matters",
"Sub Category": "Others"
},
"0909": {
"Category": "Election Matters",
"Sub Category": "Matters challenging Elections of MPs and MLAs"
},
"0910": {
"Category": "Election Matters",
"Sub Category": "Elections relating to Municipal Councils"
},
"0911": {
"Category": "Election Matters",
"Sub Category": "Appeals u/s 116 A of Representation of People Act, 1951."
},
"0912": {
"Category": "Election Matters",
"Sub Category": "Disqualification & expulsion of MPs/MLAs"
},
"1001": {
"Category": "Company Law, Mrtp, Trai, Sebi, Idrai & Rbi",
"Sub Category": "Matters relating to winding up"
},
"1002": {
"Category": "Company Law, Mrtp, Trai, Sebi, Idrai & Rbi",
"Sub Category": "Matters relating to Sick Industries"
},
"1003": {
"Category": "Company Law, Mrtp, Trai, Sebi, Idrai & Rbi",
"Sub Category": "Matters arising out of orders of Company Law Board under Section 397 & 398 of Companies Act, 1956"
},
"1004": {
"Category": "Company Law, Mrtp, Trai, Sebi, Idrai & Rbi",
"Sub Category": "Reference under Section 7(2) of the MRTP Act, 1969"
},
"1005": {
"Category": "Company Law, Mrtp, Trai, Sebi, Idrai & Rbi",
"Sub Category": "Appeals under Section 55 of the MRTP Act, 1969"
},
"1006": {
"Category": "Company Law, Mrtp, Trai, Sebi, Idrai & Rbi",
"Sub Category": "Others"
},
"1007": {
"Category": "Company Law, Mrtp, Trai, Sebi, Idrai & Rbi",
"Sub Category": "Matters relating to disinvestment"
},
"1008": {
"Category": "Company Law, Mrtp, Trai, Sebi, Idrai & Rbi",
"Sub Category": "Appeals u/s 15 Z of Securities and Exchange Board of India Act, 1992."
},
"1009": {
"Category": "Company Law, Mrtp, Trai, Sebi, Idrai & Rbi",
"Sub Category": "Matters filed against the orders of MRTP Commission /Competition Commission."
},
"1010": {
"Category": "Company Law, Mrtp, Trai, Sebi, Idrai & Rbi",
"Sub Category": "Matters pertaining to TRAI / SEBI / IDRAI and RBI including Appeals U/S 18 of TRAI Act, Indian Electricity Act, 1910 and 2003, Electricity Supply Act, 1948 and Electricity Reforms Commission Act, 1998"
},
"1101": {
"Category": "Arbitration Matters",
"Sub Category": "Arbitration Petitions under Section 11 of Arbitration & Conciliation Act, 1996"
},
"1100": {
"Category": "Arbitration Matters",
"Sub Category": "SLPs challenging Arbitration Matters"
},
"1201": {
"Category": "Compensation Matters",
"Sub Category": "Motor accident claim matters involving permanent disability/death of persons"
},
"1202": {
"Category": "Compensation Matters",
"Sub Category": "Motor accident claim matters relating to the other injuries"
},
"1203": {
"Category": "Compensation Matters",
"Sub Category": "Insurer/owners liability matters"
},
"1204": {
"Category": "Compensation Matters",
"Sub Category": "Matters relating to railway accident including other railway compensation matters"
},
"1205": {
"Category": "Compensation Matters",
"Sub Category": "Matters relating to accidents other than those covered by M.V. Act"
},
"1206": {
"Category": "Compensation Matters",
"Sub Category": "Matters relating to telephone, electricity etc."
},
"1207": {
"Category": "Compensation Matters",
"Sub Category": "Others"
},
"1300": {
"Category": "Habeas Corpus Matters",
"Sub Category": "-"
},
"1401": {
"Category": "Criminal Matters",
"Sub Category": "Matters relating to capital punishment"
},
"1402": {
"Category": "Criminal Matters",
"Sub Category": "Matters relating to maintenance under Section 125 of Cr.P.C."
},
"1403": {
"Category": "Criminal Matters",
"Sub Category": "Matters relating to harassment, cruelty to woman for dowry, dowry death, eveteasing, domestic violence etc."
},
"1404": {
"Category": "Criminal Matters",
"Sub Category": "Matters relating to sexual harassment, kidnapping & abduction"
},
"1405": {
"Category": "Criminal Matters",
"Sub Category": "Matters relating to Prevention of Corruption Act"
},
"1406": {
"Category": "Criminal Matters",
"Sub Category": "Matters relating to Bank scams, cheating, forgery etc."
},
"1407": {
"Category": "Criminal Matters",
"Sub Category": "Matters relating to Essential Commodities Act"
},
"1408": {
"Category": "Criminal Matters",
"Sub Category": "Criminal matters relating to State Excise Law"
},
"1409": {
"Category": "Criminal Matters",
"Sub Category": "Criminal matters relating to bail/interim bail/anticipatory bail"
},
"1410": {
"Category": "Criminal Matters",
"Sub Category": "Criminal matters in which sentence awarded is up to five years"
},
"1411": {
"Category": "Criminal Matters",
"Sub Category": "Criminal T.P. Under Article 139(A)(1) of the Constitution of India"
},
"1412": {
"Category": "Criminal Matters",
"Sub Category": "Criminal T.P. Under Section 406 of the Cr.P.C."
},
"1413": {
"Category": "Criminal Matters",
"Sub Category": "Criminal matters arising out of Securities Act, 1992."
},
"1414": {
"Category": "Criminal Matters",
"Sub Category": "Criminal matters relating to Drugs and Cosmetics, NDPS Act"
},
"1415": {
"Category": "Criminal Matters",
"Sub Category": "Criminal matters relating to Food Adulteration"
},
"1416": {
"Category": "Criminal Matters",
"Sub Category": "Criminal matters relating to preventive detention, TADA/POTA & national security-COFEPOSA-SAFEMA"
},
"1417": {
"Category": "Criminal Matters",
"Sub Category": "Matters relating to SC & ST (Prevention of atrocities) Act, 1989; Untouchability (offences) Amendment & Misc. Provision Act, 1976."
},
"1418": {
"Category": "Criminal Matters",
"Sub Category": "Others"
},
"1419": {
"Category": "Criminal Matters",
"Sub Category": "Scam matters other than relating to Banks"
},
"1420": {
"Category": "Criminal Matters",
"Sub Category": "Appeal under Section 2 of the Supreme Court enlargement of jurisdiction Act"
},
"1421": {
"Category": "Criminal Matters",
"Sub Category": "Police atrocities matters"
},
"1422": {
"Category": "Criminal Matters",
"Sub Category": "Matters relating to Foreign Exchange Regulation Act"
},
"1423": {
"Category": "Criminal Matters",
"Sub Category": "Matters challenging sentence till rising of the court and/or fine only"
},
"1424": {
"Category": "Criminal Matters",
"Sub Category": "Appeals u/s 10 of the Special Courts (Trial of Offences relating to transactions in Securities) Act, 1992."
},
"1425": {
"Category": "Criminal Matters",
"Sub Category": "Appeals u/s 19 of the Terrorist and Disruptive Activities Act, 1987"
},
"1426": {
"Category": "Criminal Matters",
"Sub Category": "Matters filed by State against Acquittal"
},
"1427": {
"Category": "Criminal Matters",
"Sub Category": "Matters filed by complainant against Acquittal"
},
"1428": {
"Category": "Criminal Matters",
"Sub Category": "Matters under State Police Acts"
},
"1429": {
"Category": "Criminal Matters",
"Sub Category": "Matters for/against quashing of criminal proceedings"
},
"1430": {
"Category": "Criminal Matters",
"Sub Category": "Matters challenging prosecution under Income Tax Act"
},
"1431": {
"Category": "Criminal Matters",
"Sub Category": "Matters challenging prosecution under Negotiable Instruments Act"
},
"1432": {
"Category": "Criminal Matters",
"Sub Category": "Criminal matters relating to Central Excise & Salt Act, 1944"
},
"1433": {
"Category": "Criminal Matters",
"Sub Category": "Criminal matters relating to Customs Act, 1962"
},
"1434": {
"Category": "Criminal Matters",
"Sub Category": "Matters relating to Foreign Exchange Management Act (FEMA)"
},
"1435": {
"Category": "Criminal Matters",
"Sub Category": "Criminal appeals filed against the orders of various Tribunals"
},
"1436": {
"Category": "Criminal Matters",
"Sub Category": "Criminal matters relating to suspension of sentence"
},
"1437": {
"Category": "Criminal Matters",
"Sub Category": "Criminal matters relating to cancellation to bail"
},
"1438": {
"Category": "Criminal Matters",
"Sub Category": "Criminal matters in which sentence awarded is more than five years"
},
"1439": {
"Category": "Criminal Matters",
"Sub Category": "Criminal matters in which sentence awarded is life imprisonment"
},
"1501": {
"Category": "Appeal Against Orders Of Statutory Bodies",
"Sub Category": "Bar Council of India"
},
"1502": {
"Category": "Appeal Against Orders Of Statutory Bodies",
"Sub Category": "Others"
},
"1503": {
"Category": "Appeal Against Orders Of Statutory Bodies",
"Sub Category": "Tribunals"
},
"1504": {
"Category": "Appeal Against Orders Of Statutory Bodies",
"Sub Category": "Appeals and other matters U/Ss 30 and 31 of the Armed Forces Tribunal Act, 2007"
},
"1505": {
"Category": "Appeal Against Orders Of Statutory Bodies",
"Sub Category": "Matters filed against the orders of other Regulatory Authorities / Bodies"
},
"1601": {
"Category": "Family Law Matters",
"Sub Category": "Mutual consent divorce matters"
},
"1602": {
"Category": "Family Law Matters",
"Sub Category": "Other divorce matters"
},
"1603": {
"Category": "Family Law Matters",
"Sub Category": "Restitution of conjugal rights"
},
"1604": {
"Category": "Family Law Matters",
"Sub Category": "Child custody matters"
},
"1605": {
"Category": "Family Law Matters",
"Sub Category": "Adoption & Maintenance matters"
},
"1606": {
"Category": "Family Law Matters",
"Sub Category": "Minority & guardianship matters"
},
"1607": {
"Category": "Family Law Matters",
"Sub Category": "Matters under Hindu Marriage Act"
},
"1608": {
"Category": "Family Law Matters",
"Sub Category": "Matters under Muslim Marriage Act"
},
"1609": {
"Category": "Family Law Matters",
"Sub Category": "Matters under Christian Marriage Act"
},
"1610": {
"Category": "Family Law Matters",
"Sub Category": "Alimony"
},
"1611": {
"Category": "Family Law Matters",
"Sub Category": "Others"
},
"1701": {
"Category": "Contempt Of Court Matters",
"Sub Category": "Suo Moto civil contempt matters"
},
"1702": {
"Category": "Contempt Of Court Matters",
"Sub Category": "Suo Moto criminal contempt matters"
},
"1703": {
"Category": "Contempt Of Court Matters",
"Sub Category": "Other civil contempt matters"
},
"1704": {
"Category": "Contempt Of Court Matters",
"Sub Category": "Other criminal contempt matters."
},
"1705": {
"Category": "Contempt Of Court Matters",
"Sub Category": "Appeals u/s 19(1)(b) of Contempt of Court Act, 1971."
},
"1801": {
"Category": "Ordinary Civil Matters",
"Sub Category": "T.P. Under Article 139A(1) of the Constitution of India"
},
"1802": {
"Category": "Ordinary Civil Matters",
"Sub Category": "T.P. Under Section 25 of the C.P.C."
},
"1803": {
"Category": "Ordinary Civil Matters",
"Sub Category": "Civil matters arising out of Securities Act, 1992"
},
"1804": {
"Category": "Ordinary Civil Matters",
"Sub Category": "Original Civil Suit under Article 131 of the Constitution of India"
},
"1805": {
"Category": "Ordinary Civil Matters",
"Sub Category": "Matters relating to specific performance of contract"
},
"1806": {
"Category": "Ordinary Civil Matters",
"Sub Category": "Matters relating to allotment, cancellation, fixation of prices of plots/flats"
},
"1807": {
"Category": "Ordinary Civil Matters",
"Sub Category": "Others"
},
"1808": {
"Category": "Ordinary Civil Matters",
"Sub Category": "Market fee under the APMC Act"
},
"1809": {
"Category": "Ordinary Civil Matters",
"Sub Category": "Matters relating to Lotteries"
},
"1810": {
"Category": "Ordinary Civil Matters",
"Sub Category": "Dealership and distributership of petroleum products"
},
"1811": {
"Category": "Ordinary Civil Matters",
"Sub Category": "Benami transactions"
},
"1812": {
"Category": "Ordinary Civil Matters",
"Sub Category": "Royalty on coal etc."
},
"1813": {
"Category": "Ordinary Civil Matters",
"Sub Category": "Stage carriage permits"
},
"1814": {
"Category": "Ordinary Civil Matters",
"Sub Category": "Freedom Fighters Pension"
},
"1815": {
"Category": "Ordinary Civil Matters",
"Sub Category": "Matters relating to Electricity Dispute(connection/disconnection etc)"
},
"1816": {
"Category": "Ordinary Civil Matters",
"Sub Category": "Appeals u/s 10 of Special Courts (Trial of offences relating to Transactions in Securities) Act, 1992"
},
"1817": {
"Category": "Ordinary Civil Matters",
"Sub Category": "Matters for eviction / dispossession other than Rent Control Act matters"
},
"1818": {
"Category": "Ordinary Civil Matters",
"Sub Category": "Appeals u/s 53 T of The Competition Act, 2002"
},
"1819": {
"Category": "Ordinary Civil Matters",
"Sub Category": "Matters relating to demolition"
},
"1900": {
"Category": "Three Judges Bench Matter",
"Sub Category": "-"
},
"2000": {
"Category": "Five Judges Bench Matter",
"Sub Category": "-"
},
"2100": {
"Category": "Eleven Judges Bench Matter",
"Sub Category": "-"
},
"2200": {
"Category": "Seven Judges Bench Matter",
"Sub Category": "-"