-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathschemes_cache.json
More file actions
2692 lines (2692 loc) · 92.2 KB
/
schemes_cache.json
File metadata and controls
2692 lines (2692 loc) · 92.2 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
{
"timestamp": "2026-04-18T19:58:49.414396",
"schemes": [
{
"id": 1,
"name": "PMMSYMSOFRU",
"full_name": "Pradhan Mantri Matsya Sampada Yojana: Medium Scale Ornamental Fish Rearing Unit (Fresh Water) - Haryana",
"category": "state",
"tagline": "PMMSYMSOFRU",
"keywords": [
"fish production",
"fish",
"fish farmer",
"subsidy",
"ornamental aquaculture",
"fish rearing unit",
"fresh water",
"pradhan",
"mantri",
"matsya",
"sampada",
"yojana:"
],
"benefits": "Under this scheme, financial assistance in the form of a subsidy is provided to eligible beneficiaries for setting up infrastructure such as sheds, breeding units, and rearing and culture tanks for or",
"benefits_list": [
"Under this scheme, financial assistance in the form of a subsidy is provided to ",
"Easy application",
"Official scheme",
"Pan-India coverage"
],
"eligibility": "Check official website for details",
"description": "Under this scheme, financial assistance in the form of a subsidy is provided to eligible beneficiaries for setting up infrastructure such as sheds, breeding units, and rearing and culture tanks for ornamental fish. ",
"documents": [
"Aadhaar Card",
"PAN Card",
"Address Proof",
"Bank Account"
],
"link": "https://www.myscheme.gov.in/schemes/msofru",
"color": "#2E8B57",
"gradient": [
"#2E8B57",
"#3CB371"
],
"icon": "📋",
"ministry": null,
"state": [
"All India"
]
},
{
"id": 2,
"name": "PMFDR",
"full_name": "Prime Minister’s Fellowship for Doctoral Research",
"category": "central",
"tagline": "PMFDR",
"keywords": [
"fellowship",
"doctoral",
"research",
"serb",
"phd",
"fellow",
"prime",
"minister’s",
"fellowship",
"for",
"doctoral"
],
"benefits": "Prime Minister’s Fellowship for Doctoral Research scheme is a prestigious initiative of Science and Engineering Research Board (SERB), Department of Science & Technology, Government of India towards t",
"benefits_list": [
"Prime Minister’s Fellowship for Doctoral Research scheme is a prestigious initia",
"Easy application",
"Official scheme",
"Pan-India coverage"
],
"eligibility": "Check official website for details",
"description": "Prime Minister’s Fellowship for Doctoral Research scheme is a prestigious initiative of Science and Engineering Research Board (SERB), Department of Science & Technology, Government of India towards the advancement of university research engagements in line with industry requirement.",
"documents": [
"Aadhaar Card",
"PAN Card",
"Address Proof",
"Bank Account"
],
"link": "https://www.myscheme.gov.in/schemes/pmfdr",
"color": "#4A90E2",
"gradient": [
"#4A90E2",
"#5DADE2"
],
"icon": "📋",
"ministry": "Ministry Of Science And Technology",
"state": [
"All India"
]
},
{
"id": 3,
"name": "PM-USP-CSSS",
"full_name": "Pradhan Mantri Uchchatar Shiksha Protsahan (PM-USP) Central Sector Scheme of Scholarship for College and University students",
"category": "central",
"tagline": "PM-USP-CSSS",
"keywords": [
"scholarship",
"student",
"financial assistance",
"college",
"university",
"pradhan",
"mantri",
"uchchatar",
"shiksha",
"protsahan"
],
"benefits": "A scholarship scheme by the Dept. of Higher Education to provide financial assistance to meritorious students from poor families to meet a part of their day-to-day expenses while pursuing higher studi",
"benefits_list": [
"A scholarship scheme by the Dept. of Higher Education to provide financial assis",
"Easy application",
"Official scheme",
"Pan-India coverage"
],
"eligibility": "Check official website for details",
"description": "A scholarship scheme by the Dept. of Higher Education to provide financial assistance to meritorious students from poor families to meet a part of their day-to-day expenses while pursuing higher studies. The scholarships are awarded on the basis of results of Higher Secondary / Class 12th Board Exam",
"documents": [
"Aadhaar Card",
"PAN Card",
"Address Proof",
"Bank Account"
],
"link": "https://www.myscheme.gov.in/schemes/csss-cus",
"color": "#E91E63",
"gradient": [
"#E91E63",
"#F06292"
],
"icon": "📚",
"ministry": "Ministry of Education",
"state": [
"All India"
]
},
{
"id": 4,
"name": "PM-KUSUM",
"full_name": "Pradhan Mantri Kisan Urja Suraksha Evam Utthan Mahabhiyan Scheme For Farmers.",
"category": "central",
"tagline": "PM-KUSUM",
"keywords": [
"solar",
"farmer",
"infrastructure",
"utility",
"pradhan",
"mantri",
"kisan",
"urja",
"suraksha"
],
"benefits": "Pradhan Mantri Kisan Urja Surakshaevam Utthaan Mahabhiyan Yojana (PM-KUSUM Scheme) was launched in March 2019 by the Ministry of New and Renewable Energy (MNRE), to subsidize farmers to install solar ",
"benefits_list": [
"Pradhan Mantri Kisan Urja Surakshaevam Utthaan Mahabhiyan Yojana (PM-KUSUM Schem",
"Easy application",
"Official scheme",
"Pan-India coverage"
],
"eligibility": "Check official website for details",
"description": "Pradhan Mantri Kisan Urja Surakshaevam Utthaan Mahabhiyan Yojana (PM-KUSUM Scheme) was launched in March 2019 by the Ministry of New and Renewable Energy (MNRE), to subsidize farmers to install solar irrigation pumps for cultivation. Each farmer will receive a 60% subsidy.",
"documents": [
"Aadhaar Card",
"PAN Card",
"Address Proof",
"Bank Account"
],
"link": "https://www.myscheme.gov.in/schemes/pm-kusum",
"color": "#9C27B0",
"gradient": [
"#9C27B0",
"#BA68C8"
],
"icon": "📋",
"ministry": "Ministry Of New and Renewable Energy",
"state": [
"All India"
]
},
{
"id": 5,
"name": "PMKVY -STT",
"full_name": "Pradhan Mantri Kaushal Vikas Yojana - Short Term Training",
"category": "central",
"tagline": "PMKVY -STT",
"keywords": [
"placement",
"counselling",
"training",
"dropout",
"unemployed",
"skill",
"vikas",
"kaushal",
"pradhan",
"mantri",
"kaushal",
"vikas",
"yojana"
],
"benefits": "A skill development scheme by Ministry of Skill Development and Entrepreneurship for school/college dropouts/unemployed aged 15-45 at PMKVY Training Centres (TCs). ",
"benefits_list": [
"A skill development scheme by Ministry of Skill Development and Entrepreneurship",
"Easy application",
"Official scheme",
"Pan-India coverage"
],
"eligibility": "Check official website for details",
"description": "A skill development scheme by Ministry of Skill Development and Entrepreneurship for school/college dropouts/unemployed aged 15-45 at PMKVY Training Centres (TCs). ",
"documents": [
"Aadhaar Card",
"PAN Card",
"Address Proof",
"Bank Account"
],
"link": "https://www.myscheme.gov.in/schemes/pmkvy-stt",
"color": "#F44336",
"gradient": [
"#F44336",
"#EF5350"
],
"icon": "📋",
"ministry": "Ministry Of Skill Development And Entrepreneurship",
"state": [
"All India"
]
},
{
"id": 6,
"name": "PM-KISAN",
"full_name": "Pradhan Mantri Kisan Samman Nidhi",
"category": "central",
"tagline": "PM-KISAN",
"keywords": [
"farmers",
"income support",
"agricultural inputs",
"kisan",
"agriculture",
"pradhan",
"mantri",
"kisan",
"samman",
"nidhi"
],
"benefits": "Farmer welfare scheme by Ministry of Agriculture and Farmers Welfare to provide income support to all landholding farmers' families in the country to supplement their financial needs for procuring var",
"benefits_list": [
"Farmer welfare scheme by Ministry of Agriculture and Farmers Welfare to provide ",
"Easy application",
"Official scheme",
"Pan-India coverage"
],
"eligibility": "Check official website for details",
"description": "Farmer welfare scheme by Ministry of Agriculture and Farmers Welfare to provide income support to all landholding farmers' families in the country to supplement their financial needs for procuring various inputs related to agriculture and allied activities as well as domestic needs.\n",
"documents": [
"Aadhaar Card",
"PAN Card",
"Address Proof",
"Bank Account"
],
"link": "https://www.myscheme.gov.in/schemes/pm-kisan",
"color": "#FF9800",
"gradient": [
"#FF9800",
"#FFB74D"
],
"icon": "📋",
"ministry": "Ministry Of Agriculture and Farmers Welfare",
"state": [
"All India"
]
},
{
"id": 7,
"name": "PMKVY - SP",
"full_name": "Pradhan Mantri Kaushal Vikas Yojana - Special Projects",
"category": "central",
"tagline": "PMKVY - SP",
"keywords": [
"marginalized groups",
"vulnerable groups",
"kaushal",
"vikas",
"skill",
"scheduled caste",
"scheduled tribe",
"pvtg",
"women",
"transgender",
"economically backward section",
"person with disabilities",
"lwe",
"pradhan",
"mantri",
"kaushal",
"vikas",
"yojana"
],
"benefits": "A skill development scheme by Ministry of Skill Development and Entrepreneurship for Marginalized or vulnerable groups which may not meet all the parameters as laid down in the Guidelines of ShortTerm",
"benefits_list": [
"A skill development scheme by Ministry of Skill Development and Entrepreneurship",
"Easy application",
"Official scheme",
"Pan-India coverage"
],
"eligibility": "Check official website for details",
"description": "A skill development scheme by Ministry of Skill Development and Entrepreneurship for Marginalized or vulnerable groups which may not meet all the parameters as laid down in the Guidelines of ShortTerm Training (STT) of PMKVY 3.0",
"documents": [
"Aadhaar Card",
"PAN Card",
"Address Proof",
"Bank Account"
],
"link": "https://www.myscheme.gov.in/schemes/pmkvy-sp",
"color": "#00BCD4",
"gradient": [
"#00BCD4",
"#4DD0E1"
],
"icon": "📋",
"ministry": "Ministry Of Skill Development And Entrepreneurship",
"state": [
"All India"
]
},
{
"id": 8,
"name": "PMMY",
"full_name": "Pradhan Mantri Mudra Yojana",
"category": "central",
"tagline": "PMMY",
"keywords": [
"loan",
"business",
"mudra",
"pradhan",
"mantri",
"mudra",
"yojana"
],
"benefits": "Pradhan Mantri Mudra Yojana (PMMY) is a flagship scheme of Government of India. It facilitates micro credit/Loan upto Rs. 20 lakhs to income generating micro enterprises engaged in the non farm secto",
"benefits_list": [
"Pradhan Mantri Mudra Yojana (PMMY) is a flagship scheme of Government of India.",
"Easy application",
"Official scheme",
"Pan-India coverage"
],
"eligibility": "Check official website for details",
"description": "Pradhan Mantri Mudra Yojana (PMMY) is a flagship scheme of Government of India. It facilitates micro credit/Loan upto Rs. 20 lakhs to income generating micro enterprises engaged in the non farm sector in manufacturing, processing, trading or service sector including activities allied to agriculture",
"documents": [
"Aadhaar Card",
"PAN Card",
"Address Proof",
"Bank Account"
],
"link": "https://www.myscheme.gov.in/schemes/pmmy",
"color": "#FF6B35",
"gradient": [
"#FF6B35",
"#F7931E"
],
"icon": "📋",
"ministry": "Ministry Of Finance",
"state": [
"All India"
]
},
{
"id": 9,
"name": "AB-PMJAY",
"full_name": "Ayushman Bharat - Pradhan Mantri Jan Arogya Yojana",
"category": "central",
"tagline": "AB-PMJAY",
"keywords": [
"health",
"insurance",
"ayushman",
"bharat",
"-",
"pradhan",
"mantri"
],
"benefits": "AB PM-JAY is a health insurance scheme for low-income families in rural and urban areas. The scheme aims to provide affordable healthcare facilities to the Poor. It is the largest health assurance sch",
"benefits_list": [
"AB PM-JAY is a health insurance scheme for low-income families in rural and urba",
"Easy application",
"Official scheme",
"Pan-India coverage"
],
"eligibility": "Check official website for details",
"description": "AB PM-JAY is a health insurance scheme for low-income families in rural and urban areas. The scheme aims to provide affordable healthcare facilities to the Poor. It is the largest health assurance scheme in the world which aims at providing a health cover of ₹5,00,000/- per family per year.",
"documents": [
"Aadhaar Card",
"PAN Card",
"Address Proof",
"Bank Account"
],
"link": "https://www.myscheme.gov.in/schemes/ab-pmjay",
"color": "#2E8B57",
"gradient": [
"#2E8B57",
"#3CB371"
],
"icon": "📋",
"ministry": "Ministry Of Health & Family Welfare",
"state": [
"All India"
]
},
{
"id": 10,
"name": "PMSBY",
"full_name": "Pradhan Mantri Suraksha Bima Yojana",
"category": "central",
"tagline": "PMSBY",
"keywords": [
"bank account holders",
"insurance",
"accident insurance",
"death insurance",
"pradhan",
"mantri",
"suraksha",
"bima",
"yojana"
],
"benefits": "An Accident Insurance Scheme offering accidental death and disability cover for death or disability on account of an accident.",
"benefits_list": [
"An Accident Insurance Scheme offering accidental death and disability cover for ",
"Easy application",
"Official scheme",
"Pan-India coverage"
],
"eligibility": "Check official website for details",
"description": "An Accident Insurance Scheme offering accidental death and disability cover for death or disability on account of an accident.",
"documents": [
"Aadhaar Card",
"PAN Card",
"Address Proof",
"Bank Account"
],
"link": "https://www.myscheme.gov.in/schemes/pmsby",
"color": "#4A90E2",
"gradient": [
"#4A90E2",
"#5DADE2"
],
"icon": "📋",
"ministry": "Ministry Of Finance",
"state": [
"All India"
]
},
{
"id": 11,
"name": "PMEGP",
"full_name": "Prime Minister's Employment Generation Programme",
"category": "central",
"tagline": "PMEGP",
"keywords": [
"financial assistance",
"loan",
"entrepreneur",
"projects",
"micro enterprises",
"prime",
"minister's",
"employment",
"generation",
"programme"
],
"benefits": "Launched in August 2008, Prime Minister's Employment Generation Programme (PMEGP) is a credit-linked subsidy scheme, administered by the Ministry of Micro, Small and Medium Enterprises (MSME). PMEGP a",
"benefits_list": [
"Launched in August 2008, Prime Minister's Employment Generation Programme (PMEGP",
"Easy application",
"Official scheme",
"Pan-India coverage"
],
"eligibility": "Check official website for details",
"description": "Launched in August 2008, Prime Minister's Employment Generation Programme (PMEGP) is a credit-linked subsidy scheme, administered by the Ministry of Micro, Small and Medium Enterprises (MSME). PMEGP aims to generate employment opportunities through the establishment of micro-enterprises in ",
"documents": [
"Aadhaar Card",
"PAN Card",
"Address Proof",
"Bank Account"
],
"link": "https://www.myscheme.gov.in/schemes/pmegp",
"color": "#E91E63",
"gradient": [
"#E91E63",
"#F06292"
],
"icon": "📋",
"ministry": "Ministry Of Micro, Small and Medium Enterprises",
"state": [
"All India"
]
},
{
"id": 12,
"name": "PMAGY",
"full_name": "Pradhan Mantri Adarsh Gram Yojana",
"category": "central",
"tagline": "PMAGY",
"keywords": [
"rural development",
"social justice",
"sc-majority villages",
"village profiling",
"gap-filling fund",
"pradhan",
"mantri",
"adarsh",
"gram",
"yojana"
],
"benefits": "With a view to enabling an area-based development approach, a new scheme Pradhan Mantri Adarsh Gram Yojana (PMAGY) was launched during 2009-10. The Scheme aims at the integrated development of Schedul",
"benefits_list": [
"With a view to enabling an area-based development approach, a new scheme Pradhan",
"Easy application",
"Official scheme",
"Pan-India coverage"
],
"eligibility": "Check official website for details",
"description": "With a view to enabling an area-based development approach, a new scheme Pradhan Mantri Adarsh Gram Yojana (PMAGY) was launched during 2009-10. The Scheme aims at the integrated development of Scheduled Castes majority villages.",
"documents": [
"Aadhaar Card",
"PAN Card",
"Address Proof",
"Bank Account"
],
"link": "https://www.myscheme.gov.in/schemes/pmagy",
"color": "#9C27B0",
"gradient": [
"#9C27B0",
"#BA68C8"
],
"icon": "📋",
"ministry": "Ministry Of Social Justice and Empowerment",
"state": [
"All India"
]
},
{
"id": 13,
"name": "PM-DAKSH",
"full_name": "Pradhan Mantri Dakshta Aur Kushalta Sampann Hitgrahi (PM-DAKSH)",
"category": "central",
"tagline": "PM-DAKSH",
"keywords": [
"skill",
"training",
"employment",
"stipend",
"scheduled caste",
"other backward class",
"economically weaker section",
"pradhan",
"mantri",
"dakshta",
"aur",
"kushalta"
],
"benefits": "The scheme \"PM-DAKSH\", launched by the Ministry of Social Justice & Empowerment (MoSJ&E), aims to empower socially, educationally, and economically marginalized groups like SCs, OBCs, EWS, DNTs, Safai",
"benefits_list": [
"The scheme \"PM-DAKSH\", launched by the Ministry of Social Justice & Empowerment ",
"Easy application",
"Official scheme",
"Pan-India coverage"
],
"eligibility": "Check official website for details",
"description": "The scheme \"PM-DAKSH\", launched by the Ministry of Social Justice & Empowerment (MoSJ&E), aims to empower socially, educationally, and economically marginalized groups like SCs, OBCs, EWS, DNTs, Safai Mitras, and Waste Pickers by enhancing their skills through high-quality training.",
"documents": [
"Aadhaar Card",
"PAN Card",
"Address Proof",
"Bank Account"
],
"link": "https://www.myscheme.gov.in/schemes/pm-daksh",
"color": "#F44336",
"gradient": [
"#F44336",
"#EF5350"
],
"icon": "📋",
"ministry": "Ministry Of Social Justice and Empowerment",
"state": [
"All India"
]
},
{
"id": 14,
"name": "PM-USPY:CSISS",
"full_name": "Pradhan Mantri Uchchatar Shiksha Protsahan Yojana: Central Sector Interest Subsidy Scheme",
"category": "central",
"tagline": "PM-USPY:CSISS",
"keywords": [
"interest subsidy",
"student",
"economically weaker sections",
"education loan",
"iba",
"professional programmes",
"technical programmes",
"pradhan",
"mantri",
"uchchatar",
"shiksha",
"protsahan"
],
"benefits": "The scheme provides full interest subsidy during the moratorium period on loan availed under Model Education Loan Scheme of Indian Banks’ Association (IBA) to students belonging to economically weaker",
"benefits_list": [
"The scheme provides full interest subsidy during the moratorium period on loan a",
"Easy application",
"Official scheme",
"Pan-India coverage"
],
"eligibility": "Check official website for details",
"description": "The scheme provides full interest subsidy during the moratorium period on loan availed under Model Education Loan Scheme of Indian Banks’ Association (IBA) to students belonging to economically weaker sections whose annual parental income is up to ₹4.5 Lakhs from all sources.",
"documents": [
"Aadhaar Card",
"PAN Card",
"Address Proof",
"Bank Account"
],
"link": "https://www.myscheme.gov.in/schemes/pm-uspycsiss",
"color": "#FF9800",
"gradient": [
"#FF9800",
"#FFB74D"
],
"icon": "📋",
"ministry": "Ministry of Education",
"state": [
"All India"
]
},
{
"id": 15,
"name": "PMUY",
"full_name": "Pradhan Mantri Ujjwala Yojana",
"category": "central",
"tagline": "PMUY",
"keywords": [
"ujjwala",
"women",
"bpl",
"gas cylinder",
"lpg cylinder",
"pradhan",
"mantri",
"ujjwala",
"yojana"
],
"benefits": "A scheme by Ministry of Petroleum and Natural Gas for Providing free LPG connections to women belonging to the Below Poverty Line (BPL) households.\n",
"benefits_list": [
"A scheme by Ministry of Petroleum and Natural Gas for Providing free LPG connect",
"Easy application",
"Official scheme",
"Pan-India coverage"
],
"eligibility": "Check official website for details",
"description": "A scheme by Ministry of Petroleum and Natural Gas for Providing free LPG connections to women belonging to the Below Poverty Line (BPL) households.\n",
"documents": [
"Aadhaar Card",
"PAN Card",
"Address Proof",
"Bank Account"
],
"link": "https://www.myscheme.gov.in/schemes/pmuy",
"color": "#00BCD4",
"gradient": [
"#00BCD4",
"#4DD0E1"
],
"icon": "📋",
"ministry": "Ministry Of Petroleum and Natural Gas",
"state": [
"All India"
]
},
{
"id": 16,
"name": "PM POSHAN",
"full_name": "PM POSHAN - Prime Minister's Overarching Scheme For Holistic Nourishment",
"category": "central",
"tagline": "PM POSHAN",
"keywords": [
"school",
"children",
"health",
"govt scheme",
"nutrition india",
"pm",
"poshan",
"-",
"prime",
"minister's"
],
"benefits": "PM POSHAN is a centrally sponsored scheme by the Department of School Education & Literacy, Ministry of Education. Under this scheme, one hot cooked meal will be provided to the children studying in G",
"benefits_list": [
"PM POSHAN is a centrally sponsored scheme by the Department of School Education ",
"Easy application",
"Official scheme",
"Pan-India coverage"
],
"eligibility": "Check official website for details",
"description": "PM POSHAN is a centrally sponsored scheme by the Department of School Education & Literacy, Ministry of Education. Under this scheme, one hot cooked meal will be provided to the children studying in Government and Government – aided schools. The Scheme is implemented by the Ministry of Education.",
"documents": [
"Aadhaar Card",
"PAN Card",
"Address Proof",
"Bank Account"
],
"link": "https://www.myscheme.gov.in/schemes/pm-poshan",
"color": "#FF6B35",
"gradient": [
"#FF6B35",
"#F7931E"
],
"icon": "📋",
"ministry": "Ministry of Education",
"state": [
"All India"
]
},
{
"id": 17,
"name": "PMIS",
"full_name": "Prime Minister’s Internship Scheme",
"category": "central",
"tagline": "PMIS",
"keywords": [
"internship",
"youth",
"employment opportunities",
"training",
"monthly assistance",
"skill development",
"prime",
"minister’s",
"internship",
"scheme"
],
"benefits": "The scheme aims to provide internship opportunities to one crore youth in top 500 companies in five years. Through this Scheme, youth will gain exposure for 12 months to real-life business environment",
"benefits_list": [
"The scheme aims to provide internship opportunities to one crore youth in top 50",
"Easy application",
"Official scheme",
"Pan-India coverage"
],
"eligibility": "Check official website for details",
"description": "The scheme aims to provide internship opportunities to one crore youth in top 500 companies in five years. Through this Scheme, youth will gain exposure for 12 months to real-life business environment, across varied professions and employment opportunities.",
"documents": [
"Aadhaar Card",
"PAN Card",
"Address Proof",
"Bank Account"
],
"link": "https://www.myscheme.gov.in/schemes/pmis",
"color": "#2E8B57",
"gradient": [
"#2E8B57",
"#3CB371"
],
"icon": "📋",
"ministry": "Ministry of Corporate Affairs",
"state": [
"All India"
]
},
{
"id": 18,
"name": "PMMSYTWIBIFV",
"full_name": "Pradhan Mantri Matsya Sampada Yojana: Three Wheeler with Ice Box Including E-rickshaws for Fish Vending - Haryana",
"category": "state",
"tagline": "PMMSYTWIBIFV",
"keywords": [
"subsidy",
"fish",
"fishries",
"three wheeler",
"ice box",
"pradhan",
"mantri",
"matsya",
"sampada",
"yojana:"
],
"benefits": "The scheme aims to promote hygienic and efficient fish transportation and retailing through mobile outlets. Under this scheme, financial assistance is provided to eligible beneficiaries for purchasing",
"benefits_list": [
"The scheme aims to promote hygienic and efficient fish transportation and retail",
"Easy application",
"Official scheme",
"Pan-India coverage"
],
"eligibility": "Check official website for details",
"description": "The scheme aims to promote hygienic and efficient fish transportation and retailing through mobile outlets. Under this scheme, financial assistance is provided to eligible beneficiaries for purchasing e-rickshaws equipped with ice boxes for selling fish directly.",
"documents": [
"Aadhaar Card",
"PAN Card",
"Address Proof",
"Bank Account"
],
"link": "https://www.myscheme.gov.in/schemes/twibierfv",
"color": "#4A90E2",
"gradient": [
"#4A90E2",
"#5DADE2"
],
"icon": "📋",
"ministry": null,
"state": [
"All India"
]
},
{
"id": 19,
"name": "PM-USP SSSJKL",
"full_name": "Pradhan Mantri Uchchatar Shiksha Protsahan Yojana - Special Scholarship Scheme for Jammu & Kashmir and Ladakh",
"category": "central",
"tagline": "PM-USP SSSJKL",
"keywords": [
"education",
"financial assistance",
"scholarship",
"pradhan",
"mantri",
"uchchatar",
"shiksha",
"protsahan"
],
"benefits": "This initiative provides academic fees and maintenance allowances to support students from Jammu & Kashmir and Ladakh pursuing higher education outside the Union Territories",
"benefits_list": [
"This initiative provides academic fees and maintenance allowances to support stu",
"Easy application",
"Official scheme",
"Pan-India coverage"
],
"eligibility": "Check official website for details",
"description": "This initiative provides academic fees and maintenance allowances to support students from Jammu & Kashmir and Ladakh pursuing higher education outside the Union Territories",
"documents": [
"Aadhaar Card",
"PAN Card",
"Address Proof",
"Bank Account"
],
"link": "https://www.myscheme.gov.in/schemes/pm-usp-sssjkl",
"color": "#E91E63",
"gradient": [
"#E91E63",
"#F06292"
],
"icon": "📚",
"ministry": "Ministry of Education",
"state": [
"All India"
]
},
{
"id": 20,
"name": "PMSSRPF",
"full_name": "Prime Minister's Scholarship Scheme for Railway Protection Force",
"category": "central",
"tagline": "PMSSRPF",
"keywords": [
"scholarship",
"rpf",
"rpsf",
"student",
"railway",
"prime",
"minister's",
"scholarship",
"scheme",
"for"
],
"benefits": "Prime Minister’s Scholarship Scheme (PMSS) for RPF was announced by Hon’ble Prime Minister of India in his address to the nation from the historical Red Ford on 15th August 2005 to encourage higher te",
"benefits_list": [
"Prime Minister’s Scholarship Scheme (PMSS) for RPF was announced by Hon’ble Prim",
"Easy application",
"Official scheme",
"Pan-India coverage"
],
"eligibility": "Check official website for details",
"description": "Prime Minister’s Scholarship Scheme (PMSS) for RPF was announced by Hon’ble Prime Minister of India in his address to the nation from the historical Red Ford on 15th August 2005 to encourage higher technical and professional education for the dependent wards of Ex/Serving RPF/RPSF personnel& widows.",
"documents": [
"Aadhaar Card",
"PAN Card",
"Address Proof",
"Bank Account"
],
"link": "https://www.myscheme.gov.in/schemes/pmssrpf",
"color": "#9C27B0",
"gradient": [
"#9C27B0",
"#BA68C8"
],
"icon": "📚",
"ministry": "Ministry Of Railways",
"state": [
"All India"
]
},
{
"id": 21,
"name": "PMSSRPF",
"full_name": "Prime Minister's Scholarship Scheme for Railway Protection Force",
"category": "central",
"tagline": "PMSSRPF",
"keywords": [
"scholarship",
"rpf",
"rpsf",
"student",
"railway",
"prime",
"minister's",
"scholarship",
"scheme",
"for"
],
"benefits": "Prime Minister’s Scholarship Scheme (PMSS) for RPF was announced by Hon’ble Prime Minister of India in his address to the nation from the historical Red Ford on 15th August 2005 to encourage higher te",
"benefits_list": [
"Prime Minister’s Scholarship Scheme (PMSS) for RPF was announced by Hon’ble Prim",
"Easy application",
"Official scheme",
"Pan-India coverage"
],
"eligibility": "Check official website for details",
"description": "Prime Minister’s Scholarship Scheme (PMSS) for RPF was announced by Hon’ble Prime Minister of India in his address to the nation from the historical Red Ford on 15th August 2005 to encourage higher technical and professional education for the dependent wards of Ex/Serving RPF/RPSF personnel& widows.",
"documents": [
"Aadhaar Card",
"PAN Card",
"Address Proof",
"Bank Account"
],
"link": "https://www.myscheme.gov.in/schemes/pmssrpf",
"color": "#F44336",
"gradient": [
"#F44336",
"#EF5350"
],
"icon": "📚",
"ministry": "Ministry Of Railways",
"state": [
"All India"
]
},
{
"id": 22,
"name": "PM-MKSSY-1A",
"full_name": "Pradhan Mantri Matsya Kisan Samridhi Sah-yojana (PM-MKSSY): COMPONENT 1A: Formalization of Fisheries Sector and Facilitating Access of Fisheries Microenterprises to Government of India Programs for Working Capital Financing",
"category": "central",
"tagline": "PM-MKSSY-1A",
"keywords": [
"fisheries",
"enterprise",
"aquaculture",
"value chain",
"pradhan",
"mantri",
"matsya",
"kisan",
"samridhi"
],
"benefits": "The scheme aims to formalise fisheries microenterprises and facilitate their access to institutional working capital finance through small grants and credit intermediaries. It benefits fisheries secto",
"benefits_list": [
"The scheme aims to formalise fisheries microenterprises and facilitate their acc",
"Easy application",
"Official scheme",
"Pan-India coverage"
],
"eligibility": "Check official website for details",
"description": "The scheme aims to formalise fisheries microenterprises and facilitate their access to institutional working capital finance through small grants and credit intermediaries. It benefits fisheries sector stakeholders registered on NFDP with verifiable credit needs and valid bank accounts.",
"documents": [
"Aadhaar Card",
"PAN Card",
"Address Proof",
"Bank Account"
],
"link": "https://www.myscheme.gov.in/schemes/pm-mkssy-1a",
"color": "#FF9800",
"gradient": [
"#FF9800",
"#FFB74D"
],
"icon": "📋",
"ministry": "Ministry of Fisheries,Animal Husbandry and Dairying",
"state": [
"All India"
]
},
{