forked from sunlightlabs/databuoy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata.json
4604 lines (4603 loc) · 312 KB
/
data.json
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
{
"conformsTo":"https://project-open-data.cio.gov/v1.1/schema",
"dataset":[
{ "accessLevel":"public",
"bureauCode": ["184:15"],
"contactPoint": {
"fn":"Brandon Pustejovsky",
"hasEmail":"mailto:[email protected]"
},
"modified": "2015-05-18",
"description":"Provides a list of all data assets maintained by USAID",
"title":"USAID Enterprise Data Inventory",
"keyword": [
"USAID"],
"publisher":{
"name":"USAID"},
"identifier":"4a3eea16-c278-4b42-9713-a877c7c5ec43",
"programCode":["184:036"],
"distribution": [
{
"downloadURL":"http://www.usaid.gov/data.json",
"format":"JSON",
"mediaType":"application/json"
}
],
"language": ["en-US"]
},
{
"accessLevel":"public",
"bureauCode":["184:15"],
"contactPoint": {
"fn":"Brandon Pustejovsky",
"hasEmail":"mailto:[email protected]"
},
"modified":"2015-05-18",
"description":"Version 4.1.20150227",
"title":"USAID Public Data Listing",
"keyword":["catalog"],
"publisher": {
"name":"USAID"},
"identifier": "0101010101010011010000010100100101000100",
"programCode": [
"184:001","184:002","184:003","184:004","184:005","184:006","184:007","184:008","184:009","184:010",
"184:011","184:012","184:013","184:014","184:015","184:016","184:017","184:018","184:019","184:020",
"184:021","184:022","184:023","184:024","184:025","184:026","184:027","184:028","184:029","184:030",
"184:031","184:032","184:033","184:034","184:035","184:036","184:037"
],
"distribution":[
{
"downloadURL":"http://www.usaid.gov/data.json",
"format":"json",
"mediaType":"application/json",
"title":"USAID Public Data Listing"
}
]
},
{
"accessLevel":"public",
"bureauCode":["184:15"],
"contactPoint": {
"fn":"Brian Bingham",
"hasEmail":"mailto:[email protected]"
},
"modified":"2015-01-09",
"description":"AidData is a research and innovation lab making information on development finance more accessible and actionable. Tracking more than $6 trillion dollars from 90+ donor agencies, AidData undertakes cutting-edge research on aid distribution and impact, geocodes and crowdsources aid information, and develops applications and custom data solutions for diverse stakeholders. The AidData team works with a wide range of partner organizations to collect, visualize, and analyze development finance for more effective development policy, practice, and research.",
"title":"AidData",
"keyword":["partners","financial","impact","distribution"],
"publisher": {
"name":"USAID"},
"identifier":"49fc4b3c-c556-4552-8551-797c1a84c83c",
"programCode":["184:016","184:017","184:018","184:028","184:029","184:033","184:037"],
"license":"http://www.usaid.gov/data/license-data-created-usaid-partners",
"distribution":[
{
"description":"The AidData API allows for programmatic access to the catalogue of AidData information.",
"accessURL":"http://aiddata.org/use-aiddatas-api",
"format":"API",
"title": "AIDDATA API"
}
],
"language":["en-US"],
"landingPage": "http://aiddata.org",
"rights":"Owned and maintained by Development Gateway, www.developmentgateway.org."
},
{"accessLevel":"public",
"bureauCode": ["184:15"],
"contactPoint": {
"fn":"Joe Cabino",
"hasEmail":"mailto:[email protected]"
},
"modified": "2012-04-27",
"description":"A part of the 2014 round of public opinion surveys implemented by LAPOP, the Brazil survey was carried out between March 21st and April 27th of 2014. It is a follow-up of the national surveys of 2006, and 2008, 2010 and 2012. The 2014 survey was conducted by Vanderbilt University and Universidade de Brasilia. The 2014 AmericasBarometer received generous support from many sources, including USAID, UNDP, IADB, Vanderbilt U., Princeton U., Universit? Laval, U. of Notre Dame, among others.",
"title":"The AmericasBarometer by the Latin American Public Opinion Project (LAPOP)-Brazil",
"keyword": [
"Opinion Survey","Crime","Corruption","Brazil"],
"publisher":{
"name":"USAID"},
"identifier":"f6336b6f-b6bd-44ce-a448-8690e90174b9",
"programCode":["184:008","184:010","184:022","184:031","184:033"],
"license":"http://www.usaid.gov/data/license-data-created-usaid-partners",
"landingPage": "http://www.http://datasets.americasbarometer.org/database-login/index.html",
"spatial": "Brazil",
"distribution": [
{
"description":"This survey was carried out between March 21st and April 27th of 2014, as part of the LAPOP AmericasBarometer 2014 wave of surveys. It is a follow-up of the national surveys of 2006, and 2008, 2010 and 2012 carried out by the LAPOP. The 2014 survey was conducted by Vanderbilt University and Universidade de Brasilia. The 2014 AmericasBarometer received generous support from many sources, including USAID, UNDP, IADB, Vanderbilt U., Princeton U., Universit? Laval, U. of Notre Dame, among others.",
"downloadURL":"http://www.usaid.gov/opengov/developer/datasets/Brazil_Data_LAPOP_americasbarometer_2014.csv",
"format":"csv",
"mediaType":"text/csv",
"title": "The AmericasBarometer by the Latin American Public Opinion Project (LAPOP)-Brazil",
"describedBy":"http://www.usaid.gov/opengov/developer/datasets/Brazil_codebook_LAPOP_americasbarometer_2014.pdf",
"describedByType":"application/pdf"
}
],
"language": ["en-US","pt"],
"references":["http://www.usaid.gov/opengov/developer/datasets/Brazil_14_Questionnaire_Por_LAPOP_americasbarometer.pdf","http://www.usaid.gov/opengov/developer/datasets/Brazil_Tech_Info_LAPOP_americasbarometer_2014.pdf"]
},
{"accessLevel":"public",
"bureauCode": ["184:15"],
"contactPoint": {
"fn":"Joe Cabino",
"hasEmail":"mailto:[email protected]"
},
"modified": "2014-05-05",
"description":"A part of the 2014 round of public opinion surveys implemented by LAPOP, the Colombia survey was carried out between March 28st and May 5th of 2014. It is a follow-up of the national surveys since 1991. The 2014 survey was conducted by Vanderbilt University and the Universidad de los Andes and the Observatorio de la Democracia with the field work being carried out by the Centro Nacional de Consultoria (CNC). The 2014 AmericasBarometer received generous support from many sources, including USAID, UNDP, IADB, Vanderbilt U., Princeton U., Universit? Laval, U. of Notre Dame, among others.",
"title":"The AmericasBarometer by the Latin American Public Opinion Project (LAPOP)-Colombia",
"keyword": [
"Opinion Survey","Crime","Corruption","Colombia"],
"publisher":{
"name":"USAID"},
"identifier":"057b9ff1-29c3-4a6c-be52-11d0060e8789",
"programCode":["184:008","184:010","184:022","184:031","184:033"],
"license":"http://www.usaid.gov/data/license-data-created-usaid-partners",
"landingPage": "http://www.http://datasets.americasbarometer.org/database-login/index.html",
"spatial": "Colombia",
"distribution": [
{
"description":"A part of the 2014 round of public opinion surveys implemented by LAPOP, the Colombia survey was carried out between March 28st and May 5th of 2014. It is a follow-up of the national surveys since 1991. The 2014 survey was conducted by Vanderbilt University and the Universidad de los Andes and the Observatorio de la Democracia with the field work being carried out by the Centro Nacional de Consultoria (CNC). The 2014 AmericasBarometer received generous support from many sources, including USAID, UNDP, IADB, Vanderbilt U., Princeton U., Universit? Laval, U. of Notre Dame, among others.",
"downloadURL":"http://www.usaid.gov/opengov/developer/datasets/Colombia_Data_LAPOP_americasbarometer_2014.csv",
"format":"csv",
"mediaType":"text/csv",
"title": "The AmericasBarometer by the Latin American Public Opinion Project (LAPOP)-Colombia",
"describedBy":"http://www.usaid.gov/opengov/developer/datasets/Colombia_codebook_LAPOP_americasbarometer_2014.pdf",
"describedByType":"application/pdf"
}
],
"language": ["en-US","es"],
"references":["http://www.usaid.gov/opengov/developer/datasets/Colombia_14_Questionnaire_SPAN_LAPOP_americasbarometer.pdf","http://www.usaid.gov/opengov/developer/datasets/Colombia_Tech_Info_LAPOP_americasbarometer_2014.pdf"]
},
{"accessLevel":"public",
"bureauCode": ["184:15"],
"contactPoint": {
"fn":"Joe Cabino",
"hasEmail":"mailto:[email protected]"
},
"modified": "2014-05-06",
"description":"A part of the 2014 round of public opinion surveys implemented by LAPOP, the Costa Rica survey was carried out between March 4th and May 6th of 2014. It is a follow-up of the national surveys of 2004,2006,2008,2010 and 2012. The 2014 survey was conducted by Vanderbilt University with the field work being carried out by Borge y Asociados. The 2014 AmericasBarometer received generous support from many sources, including USAID, UNDP, IADB, Vanderbilt U., Princeton U., Universit? Laval, U. of Notre Dame, among others.",
"title":"The AmericasBarometer by the Latin American Public Opinion Project (LAPOP)-Costa Rica",
"keyword": [
"Opinion Survey","Crime","Corruption","Costa Rica"],
"publisher":{
"name":"USAID"},
"identifier":"1d1c83dc-9b6c-4682-af4d-39d4738b571e",
"programCode":["184:008","184:010","184:022","184:031","184:033"],
"license":"http://www.usaid.gov/data/license-data-created-usaid-partners",
"landingPage": "http://www.http://datasets.americasbarometer.org/database-login/index.html",
"spatial": "Costa Rica",
"distribution": [
{
"description":"A part of the 2014 round of public opinion surveys implemented by LAPOP, the Costa Rica survey was carried out between March 4th and May 6th of 2014. It is a follow-up of the national surveys of 2004,2006,2008,2010 and 2012. The 2014 survey was conducted by Vanderbilt University with the field work being carried out by Borge y Asociados. The 2014 AmericasBarometer received generous support from many sources, including USAID, UNDP, IADB, Vanderbilt U., Princeton U., Universit? Laval, U. of Notre Dame, among others.",
"downloadURL":"http://www.usaid.gov/opengov/developer/datasets/CostaRica_Data_LAPOP_americasbarometer_2014.csv",
"format":"csv",
"mediaType":"text/csv",
"title": "The AmericasBarometer by the Latin American Public Opinion Project (LAPOP)-CostaRica",
"describedBy":"http://www.usaid.gov/opengov/developer/datasets/CostaRica_codebook_LAPOP_americasbarometer_2014.pdf",
"describedByType":"application/pdf"
}
],
"language": ["en-US","es"],
"references":["http://www.usaid.gov/opengov/developer/datasets/CostaRica_14_Questionnaire_SPAN_LAPOP_americasbarometer.pdf","http://www.usaid.gov/opengov/developer/datasets/CostaRica_Tech_Info_LAPOP_americasbarometer_2014.pdf"]
},
{"accessLevel":"public",
"bureauCode": ["184:15"],
"contactPoint": {
"fn":"Joe Cabino",
"hasEmail":"mailto:[email protected]"
},
"modified": "2014-03-25",
"description":"A part of the 2014 round of public opinion surveys implemented by LAPOP, the Dominican Republic survey was carried out between March 11th and March 25th of 2014. It is a follow-up of the national surveys of 2004,2006,2008,2010 and 2012. The 2014 survey was conducted by Vanderbilt University with the field work being carried out by Gallup Republica Dominica. The 2014 AmericasBarometer received generous support from many sources, including USAID, UNDP, IADB, Vanderbilt U., Princeton U., Universit? Laval, U. of Notre Dame, among others.",
"title":"The AmericasBarometer by the Latin American Public Opinion Project (LAPOP)-Dominican Republic",
"keyword": [
"Opinion Survey","Crime","Corruption","Dominican Republic"],
"publisher":{
"name":"USAID"},
"identifier":"c9e00b1b-3179-4ee9-ae80-39be092b2db9",
"programCode":["184:008","184:010","184:022","184:031","184:033"],
"license":"http://www.usaid.gov/data/license-data-created-usaid-partners",
"landingPage": "http://www.http://datasets.americasbarometer.org/database-login/index.html",
"spatial": "Dominican Republic",
"distribution": [
{
"description":"A part of the 2014 round of public opinion surveys implemented by LAPOP, the Dominican Republic survey was carried out between March 11th and March 25th of 2014. It is a follow-up of the national surveys of 2004,2006,2008,2010 and 2012. The 2014 survey was conducted by Vanderbilt University with the field work being carried out by Gallup Republica Dominica. The 2014 AmericasBarometer received generous support from many sources, including USAID, UNDP, IADB, Vanderbilt U., Princeton U., Universit? Laval, U. of Notre Dame, among others.",
"downloadURL":"http://www.usaid.gov/opengov/developer/datasets/DominicanRepublic_Data_LAPOP_americasbarometer_2014.csv",
"format":"csv",
"mediaType":"text/csv",
"title": "The AmericasBarometer by the Latin American Public Opinion Project (LAPOP)-DominicanRepublic",
"describedBy":"http://www.usaid.gov/opengov/developer/datasets/DominicanRepublic_codebook_LAPOP_americasbarometer_2014.pdf",
"describedByType":"application/pdf"
}
],
"language": ["en-US","es"],
"references":["http://www.usaid.gov/opengov/developer/datasets/DominicanRepublic_14_Questionnaire_SPAN_LAPOP_americasbarometer.pdf","http://www.usaid.gov/opengov/developer/datasets/DominicanRepublic_Tech_Info_LAPOP_americasbarometer_2014.pdf"]
},
{"accessLevel":"public",
"bureauCode": ["184:15"],
"contactPoint": {
"fn":"Joe Cabino",
"hasEmail":"mailto:[email protected]"
},
"modified": "2014-04-30",
"description":"A part of the 2014 round of public opinion surveys implemented by LAPOP, the El Salvador survey was carried out between March 28th and April 30th of 2014. It is a follow-up of the national surveys since 1991. The 2014 survey was conducted by Vanderbilt University and FUNDAUNGO. The 2014 AmericasBarometer received generous support from many sources, including USAID, UNDP, IADB, Vanderbilt U., Princeton U., Universit? Laval, U. of Notre Dame, among others.",
"title":"The AmericasBarometer by the Latin American Public Opinion Project (LAPOP)-El Salvador",
"keyword": [
"Opinion Survey","Crime","Corruption","El Salvador"],
"publisher":{
"name":"USAID"},
"identifier":"ce0cbbf5-a8ea-4cd5-8aaf-4b04336f03f4",
"programCode":["184:008","184:010","184:022","184:031","184:033"],
"license":"http://www.usaid.gov/data/license-data-created-usaid-partners",
"landingPage": "http://www.http://datasets.americasbarometer.org/database-login/index.html",
"spatial": "El Salvador",
"distribution": [
{
"description":"A part of the 2014 round of public opinion surveys implemented by LAPOP, the El Salvador survey was carried out between March 28th and April 30th of 2014. It is a follow-up of the national surveys since 1991. The 2014 survey was conducted by Vanderbilt University and FUNDAUNGO. The 2014 AmericasBarometer received generous support from many sources, including USAID, UNDP, IADB, Vanderbilt U., Princeton U., Universit? Laval, U. of Notre Dame, among others.",
"downloadURL":"http://www.usaid.gov/opengov/developer/datasets/ElSalvador_Data_LAPOP_americasbarometer_2014.csv",
"format":"csv",
"mediaType":"text/csv",
"title": "The AmericasBarometer by the Latin American Public Opinion Project (LAPOP)-ElSalvador",
"describedBy":"http://www.usaid.gov/opengov/developer/datasets/ElSalvador_codebook_LAPOP_americasbarometer_2014.pdf",
"describedByType":"application/pdf"
}
],
"language": ["en-US","es"],
"references":["http://www.usaid.gov/opengov/developer/datasets/ElSalvador_14_Questionnaire_SPAN_LAPOP_americasbarometer.pdf","http://www.usaid.gov/opengov/developer/datasets/ElSalvador_Tech_Info_LAPOP_americasbarometer_2014.pdf"]
},
{"accessLevel":"public",
"bureauCode": ["184:15"],
"contactPoint": {
"fn":"Joe Cabino",
"hasEmail":"mailto:[email protected]"
},
"modified": "2014-05-10",
"description":"A part of the 2014 round of public opinion surveys implemented by LAPOP, the Guatemala survey was carried out between April 1st and May 10th of 2014. It is a follow-up of the national surveys since 1992. The 2014 survey was conducted by Vanderbilt University and Asociation de Investigacion y Estudios Sociales (ASIES). The 2014 AmericasBarometer received generous support from many sources, including USAID, UNDP, IADB, Vanderbilt U., Princeton U., Universit? Laval, U. of Notre Dame, among others.",
"title":"The AmericasBarometer by the Latin American Public Opinion Project (LAPOP)-Guatemala",
"keyword": [
"Opinion Survey","Crime","Corruption","Guatemala"],
"publisher":{
"name":"USAID"},
"identifier":"bd2906ee-7880-4f39-9aff-7c8876d0403b",
"programCode":["184:008","184:010","184:022","184:031","184:033"],
"license":"http://www.usaid.gov/data/license-data-created-usaid-partners",
"landingPage": "http://www.http://datasets.americasbarometer.org/database-login/index.html",
"spatial": "Guatemala",
"distribution": [
{
"description":"A part of the 2014 round of public opinion surveys implemented by LAPOP, the Guatemala survey was carried out between April 1st and May 10th of 2014. It is a follow-up of the national surveys since 1992. The 2014 survey was conducted by Vanderbilt University and Asociation de Investigacion y Estudios Sociales (ASIES). The 2014 AmericasBarometer received generous support from many sources, including USAID, UNDP, IADB, Vanderbilt U., Princeton U., Universit? Laval, U. of Notre Dame, among others.",
"downloadURL":"http://www.usaid.gov/opengov/developer/datasets/Guatemala_Data_LAPOP_americasbarometer_2014.csv",
"format":"csv",
"mediaType":"text/csv",
"title": "The AmericasBarometer by the Latin American Public Opinion Project (LAPOP)-Guatemala",
"describedBy":"http://www.usaid.gov/opengov/developer/datasets/Guatemala_codebook_LAPOP_americasbarometer_2014.pdf",
"describedByType":"application/pdf"
}
],
"language": ["en-US","es"],
"references":["http://www.usaid.gov/opengov/developer/datasets/Guatemala_14_Questionnaire_SPAN_LAPOP_americasbarometer.pdf","http://www.usaid.gov/opengov/developer/datasets/Guatemala_Tech_Info_LAPOP_americasbarometer_2014.pdf"]
},
{"accessLevel":"public",
"bureauCode": ["184:15"],
"contactPoint": {
"fn":"Joe Cabino",
"hasEmail":"mailto:[email protected]"
},
"modified": "2014-07-12",
"description":"A part of the 2014 round of public opinion surveys implemented by LAPOP, the Guyana survey was carried out between June 4th and July 12th of 2014. It is a follow-up of the national surveys of 2006, 2009, 2010 and 2012. The 2014 survey was conducted by Vanderbilt University with the field work being carried out by Development Policy and Management Consultants (DPMC). The 2014 AmericasBarometer received generous support from many sources, including USAID, UNDP, IADB, Vanderbilt U., Princeton U., Universit? Laval, U. of Notre Dame, among others.",
"title":"The AmericasBarometer by the Latin American Public Opinion Project (LAPOP)-Guyana",
"keyword": [
"Opinion Survey","Crime","Corruption","Guyana"],
"publisher":{
"name":"USAID"},
"identifier":"41aaf419-1f2c-4284-b213-25c30d8c7b19",
"programCode":["184:008","184:010","184:022","184:031","184:033"],
"license":"http://www.usaid.gov/data/license-data-created-usaid-partners",
"landingPage": "http://www.http://datasets.americasbarometer.org/database-login/index.html",
"spatial": "Guyana",
"distribution": [
{
"description":"A part of the 2014 round of public opinion surveys implemented by LAPOP, the Guyana survey was carried out between June 4th and July 12th of 2014. It is a follow-up of the national surveys of 2006, 2009, 2010 and 2012. The 2014 survey was conducted by Vanderbilt University with the field work being carried out by Development Policy and Management Consultants (DPMC). The 2014 AmericasBarometer received generous support from many sources, including USAID, UNDP, IADB, Vanderbilt U., Princeton U., Universit? Laval, U. of Notre Dame, among others.",
"downloadURL":"http://www.usaid.gov/opengov/developer/datasets/Guyana_Data_LAPOP_americasbarometer_2014.csv",
"format":"csv",
"mediaType":"text/csv",
"title": "The AmericasBarometer by the Latin American Public Opinion Project (LAPOP)-Guyana",
"describedBy":"http://www.usaid.gov/opengov/developer/datasets/Guyana_codebook_LAPOP_americasbarometer_2014.pdf",
"describedByType":"application/pdf"
}
],
"language": ["en-US"],
"references":["http://www.usaid.gov/opengov/developer/datasets/Guyana_14_Questionnaire_SPAN_LAPOP_americasbarometer.pdf","http://www.usaid.gov/opengov/developer/datasets/Guyana_Tech_Info_LAPOP_americasbarometer_2014.pdf"]
},
{"accessLevel":"public",
"bureauCode": ["184:15"],
"contactPoint": {
"fn":"Joe Cabino",
"hasEmail":"mailto:[email protected]"
},
"modified": "2014-03-08",
"description":"A part of the 2014 round of public opinion surveys implemented by LAPOP, the Haiti survey was carried out between February 18th and March 8th of 2014. It is a follow-up of the national surveys of 2006, 2008, 2010 and 2012. The 2014 survey was conducted by Vanderbilt University with the field work being carried out by Borges y Asociados. The 2014 AmericasBarometer received generous support from many sources, including USAID, UNDP, IADB, Vanderbilt U., Princeton U., Universit? Laval, U. of Notre Dame, among others.",
"title":"The AmericasBarometer by the Latin American Public Opinion Project (LAPOP)-Haiti",
"keyword": [
"Opinion Survey","Crime","Corruption","Haiti"],
"publisher":{
"name":"USAID"},
"identifier":"767769b9-60fe-4bc6-bf10-9171f60b0530",
"programCode":["184:008","184:010","184:022","184:031","184:033"],
"license":"http://www.usaid.gov/data/license-data-created-usaid-partners",
"landingPage": "http://www.http://datasets.americasbarometer.org/database-login/index.html",
"spatial": "Haiti",
"distribution": [
{
"description":"A part of the 2014 round of public opinion surveys implemented by LAPOP, the Haiti survey was carried out between February 18th and March 8th of 2014. It is a follow-up of the national surveys of 2006, 2008, 2010 and 2012. The 2014 survey was conducted by Vanderbilt University with the field work being carried out by Borges y Asociados. The 2014 AmericasBarometer received generous support from many sources, including USAID, UNDP, IADB, Vanderbilt U., Princeton U., Universit? Laval, U. of Notre Dame, among others.",
"downloadURL":"http://www.usaid.gov/opengov/developer/datasets/Haiti_Data_LAPOP_americasbarometer_2014.csv",
"format":"csv",
"mediaType":"text/csv",
"title": "The AmericasBarometer by the Latin American Public Opinion Project (LAPOP)-Haiti",
"describedBy":"http://www.usaid.gov/opengov/developer/datasets/Haiti_codebook_LAPOP_americasbarometer_2014.pdf",
"describedByType":"application/pdf"
}
],
"language": ["en-US"],
"references":["http://www.usaid.gov/opengov/developer/datasets/Haiti_14_Questionnaire_SPAN_LAPOP_americasbarometer.pdf","http://www.usaid.gov/opengov/developer/datasets/Haiti_Tech_Info_LAPOP_americasbarometer_2014.pdf"]
},
{"accessLevel":"public",
"bureauCode": ["184:15"],
"contactPoint": {
"fn":"Joe Cabino",
"hasEmail":"mailto:[email protected]"
},
"modified": "2014-05-09",
"description":"A part of the 2014 round of public opinion surveys implemented by LAPOP, the Honduras survey was carried out between March 8th and May 9th of 2014. It is a follow-up of the national surveys of 2004, 2006, 2008, 2010 and 2012. The 2014 survey was conducted with the field work being carried out by Le Vote. Funding came from the United States Agency for International Development (USAID).",
"title":"The AmericasBarometer by the Latin American Public Opinion Project (LAPOP)-Honduras",
"keyword": [
"Opinion Survey","Crime","Corruption","Honduras"],
"publisher":{
"name":"USAID"},
"identifier":"34369d11-52c7-419a-8654-0940ad5fea47",
"programCode":["184:008","184:010","184:022","184:031","184:033"],
"license":"http://www.usaid.gov/data/license-data-created-usaid-partners",
"landingPage": "http://www.http://datasets.americasbarometer.org/database-login/index.html",
"spatial": "Honduras",
"distribution": [
{
"description":"A part of the 2014 round of public opinion surveys implemented by LAPOP, the Honduras survey was carried out between March 8th and May 9th of 2014. It is a follow-up of the national surveys of 2004, 2006, 2008, 2010 and 2012. The 2014 survey was conducted with the field work being carried out by Le Vote. Funding came from the United States Agency for International Development (USAID).",
"downloadURL":"http://www.usaid.gov/opengov/developer/datasets/Honduras_Data_LAPOP_americasbarometer_2014.csv",
"format":"csv",
"mediaType":"text/csv",
"title": "The AmericasBarometer by the Latin American Public Opinion Project (LAPOP)-Honduras",
"describedBy":"http://www.usaid.gov/opengov/developer/datasets/Honduras_codebook_LAPOP_americasbarometer_2014.pdf",
"describedByType":"application/pdf"
}
],
"language": ["en-US","es"],
"references":["http://www.usaid.gov/opengov/developer/datasets/Honduras_14_Questionnaire_SPAN_LAPOP_americasbarometer.pdf","http://www.usaid.gov/opengov/developer/datasets/Honduras_Tech_Info_LAPOP_americasbarometer_2014.pdf"]
},
{"accessLevel":"public",
"bureauCode": ["184:15"],
"contactPoint": {
"fn":"Joe Cabino",
"hasEmail":"mailto:[email protected]"
},
"modified": "2014-03-20",
"description":"A part of the 2014 round of public opinion surveys implemented by LAPOP, the Jamaica survey was carried out between February 25th and March 20th of 2014. It is a follow-up of the national surveys of 2006, 2008, 2010 and 2012. The 2014 survey was conducted by the University of West Indies. The 2014 AmericasBarometer received generous support from many sources including USAID, UNDP, IADB,Vanderbilt U., Princeton U., Universite Laval, U. of Notre Dame, among others.",
"title":"The AmericasBarometer by the Latin American Public Opinion Project (LAPOP)-Jamaica",
"keyword": [
"Opinion Survey","Crime","Corruption","Jamaica"],
"publisher":{
"name":"USAID"},
"identifier":"698cacd4-af49-482a-aa4c-72eb674e41a9",
"programCode":["184:008","184:010","184:022","184:031","184:033"],
"license":"http://www.usaid.gov/data/license-data-created-usaid-partners",
"landingPage": "http://www.http://datasets.americasbarometer.org/database-login/index.html",
"spatial": "Jamaica",
"distribution": [
{
"description":"A part of the 2014 round of public opinion surveys implemented by LAPOP, the Jamaica survey was carried out between February 25th and March 20th of 2014. It is a follow-up of the national surveys of 2006, 2008, 2010 and 2012. The 2014 survey was conducted by the University of West Indies. The 2014 AmericasBarometer received generous support from many sources including USAID, UNDP, IADB,Vanderbilt U., Princeton U., Universite Laval, U. of Notre Dame, among others.",
"downloadURL":"http://www.usaid.gov/opengov/developer/datasets/Jamaica_Data_LAPOP_americasbarometer_2014.csv",
"format":"csv",
"mediaType":"text/csv",
"title": "The AmericasBarometer by the Latin American Public Opinion Project (LAPOP)-Jamaica",
"describedBy":"http://www.usaid.gov/opengov/developer/datasets/Jamaica_codebook_LAPOP_americasbarometer_2014.pdf",
"describedByType":"application/pdf"
}
],
"language": ["en-US"],
"references":["http://www.usaid.gov/opengov/developer/datasets/Jamaica_14_Questionnaire_SPAN_LAPOP_americasbarometer.pdf","http://www.usaid.gov/opengov/developer/datasets/Jamaica_Tech_Info_LAPOP_americasbarometer_2014.pdf"]
},
{"accessLevel":"public",
"bureauCode": ["184:15"],
"contactPoint": {
"fn":"Joe Cabino",
"hasEmail":"mailto:[email protected]"
},
"modified": "2014-02-24",
"description":"A part of the 2014 round of public opinion surveys implemented by LAPOP, the Mexico survey was carried out between January 24th and February 24th of 2014. It is a follow-up of the national surveys of 2006, 2008, 2010 and 2012. The 2014 survey was conducted by Vanderbilt University with the fieldwork being carried out by Data Opinion Publica y Mercados. The 2014 AmericasBarometer received generous support from many sources including USAID, UNDP, IADB,Vanderbilt U., Princeton U., Universite Laval, U. of Notre Dame, among others.",
"title":"The AmericasBarometer by the Latin American Public Opinion Project (LAPOP)-Mexico",
"keyword": [
"Opinion Survey","Crime","Corruption","Mexico"],
"publisher":{
"name":"USAID"},
"identifier":"f2f47904-00f1-44e3-ac3a-60af7d6ef7c7",
"programCode":["184:008","184:010","184:022","184:031","184:033"],
"license":"http://www.usaid.gov/data/license-data-created-usaid-partners",
"landingPage": "http://www.http://datasets.americasbarometer.org/database-login/index.html",
"spatial": "Mexico",
"distribution": [
{
"description":"A part of the 2014 round of public opinion surveys implemented by LAPOP, the Mexico survey was carried out between January 24th and February 24th of 2014. It is a follow-up of the national surveys of 2006, 2008, 2010 and 2012. The 2014 survey was conducted by Vanderbilt University with the fieldwork being carried out by Data Opinion Publica y Mercados. The 2014 AmericasBarometer received generous support from many sources including USAID, UNDP, IADB,Vanderbilt U., Princeton U., Universite Laval, U. of Notre Dame, among others.",
"downloadURL":"http://www.usaid.gov/opengov/developer/datasets/Mexico_Data_LAPOP_americasbarometer_2014.csv",
"format":"csv",
"mediaType":"text/csv",
"title": "The AmericasBarometer by the Latin American Public Opinion Project (LAPOP)-Mexico",
"describedBy":"http://www.usaid.gov/opengov/developer/datasets/Mexico_codebook_LAPOP_americasbarometer_2014.pdf",
"describedByType":"application/pdf"
}
],
"language": ["en-US","es"],
"references":["http://www.usaid.gov/opengov/developer/datasets/Mexico_14_Questionnaire_SPAN_LAPOP_americasbarometer.pdf","http://www.usaid.gov/opengov/developer/datasets/Mexico_Tech_Info_LAPOP_americasbarometer_2014.pdf"]
},
{"accessLevel":"public",
"bureauCode": ["184:15"],
"contactPoint": {
"fn":"Joe Cabino",
"hasEmail":"mailto:[email protected]"
},
"modified": "2014-03-22",
"description":"A part of the 2014 round of public opinion surveys implemented by LAPOP, the Nicaragua survey was carried out between February 25th and March 22nd of 2014. It is a follow-up of the national surveys of 1999, 2004, 2006, 2008, 2010 and 2012. The 2014 survey was conducted by Vanderbilt University with the fieldwork being carried out by Borge y Asociados. The 2014 AmericasBarometer received generous support from many sources including USAID, UNDP, IADB,Vanderbilt U., Princeton U., Universite Laval, U. of Notre Dame, among others.",
"title":"The AmericasBarometer by the Latin American Public Opinion Project (LAPOP)-Nicaragua",
"keyword": [
"Opinion Survey","Crime","Corruption","Nicaragua"],
"publisher":{
"name":"USAID"},
"identifier":"eff51ff1-c653-48a8-8eea-0b2529b77dce",
"programCode":["184:008","184:010","184:022","184:031","184:033"],
"license":"http://www.usaid.gov/data/license-data-created-usaid-partners",
"landingPage": "http://www.http://datasets.americasbarometer.org/database-login/index.html",
"spatial": "Nicaragua",
"distribution": [
{
"description":"A part of the 2014 round of public opinion surveys implemented by LAPOP, the Nicaragua survey was carried out between February 25th and March 22nd of 2014. It is a follow-up of the national surveys of 1999, 2004, 2006, 2008, 2010 and 2012. The 2014 survey was conducted by Vanderbilt University with the fieldwork being carried out by Borge y Asociados. The 2014 AmericasBarometer received generous support from many sources including USAID, UNDP, IADB,Vanderbilt U., Princeton U., Universite Laval, U. of Notre Dame, among others.",
"downloadURL":"http://www.usaid.gov/opengov/developer/datasets/Nicaragua_Data_LAPOP_americasbarometer_2014.csv",
"format":"csv",
"mediaType":"text/csv",
"title": "The AmericasBarometer by the Latin American Public Opinion Project (LAPOP)-Nicaragua",
"describedBy":"http://www.usaid.gov/opengov/developer/datasets/Nicaragua_codebook_LAPOP_americasbarometer_2014.pdf",
"describedByType":"application/pdf"
}
],
"language": ["en-US","es"],
"references":["http://www.usaid.gov/opengov/developer/datasets/Nicaragua_14_Questionnaire_SPAN_LAPOP_americasbarometer.pdf","http://www.usaid.gov/opengov/developer/datasets/Nicaragua_Tech_Info_LAPOP_americasbarometer_2014.pdf"]
},
{"accessLevel":"public",
"bureauCode": ["184:15"],
"contactPoint": {
"fn":"Joe Cabino",
"hasEmail":"mailto:[email protected]"
},
"modified": "2014-05-03",
"description":"A part of the 2014 round of public opinion surveys implemented by LAPOP, the Panama survey was carried out between March 13th and May 3rd of 2014. It is a follow-up of the national surveys of 2004, 2006, 2008, 2010 and 2012. The 2014 survey was conducted by Vanderbilt University with the fieldwork being carried out by Borge y Asociados. The 2014 AmericasBarometer received generous support from many sources including USAID, UNDP, IADB,Vanderbilt U., Princeton U., Universite Laval, U. of Notre Dame, among others.",
"title":"The AmericasBarometer by the Latin American Public Opinion Project (LAPOP)-Panama",
"keyword": [
"Opinion Survey","Crime","Corruption","Panama"],
"publisher":{
"name":"USAID"},
"identifier":"7a1a875c-b198-44e3-be66-16e3e94c2915",
"programCode":["184:008","184:010","184:022","184:031","184:033"],
"license":"http://www.usaid.gov/data/license-data-created-usaid-partners",
"landingPage": "http://www.http://datasets.americasbarometer.org/database-login/index.html",
"spatial": "Panama",
"distribution": [
{
"description":"A part of the 2014 round of public opinion surveys implemented by LAPOP, the Panama survey was carried out between March 13th and May 3rd of 2014. It is a follow-up of the national surveys of 2004, 2006, 2008, 2010 and 2012. The 2014 survey was conducted by Vanderbilt University with the fieldwork being carried out by Borge y Asociados. The 2014 AmericasBarometer received generous support from many sources including USAID, UNDP, IADB,Vanderbilt U., Princeton U., Universite Laval, U. of Notre Dame, among others.",
"downloadURL":"http://www.usaid.gov/opengov/developer/datasets/Panama_Data_LAPOP_americasbarometer_2014.csv",
"format":"csv",
"mediaType":"text/csv",
"title": "The AmericasBarometer by the Latin American Public Opinion Project (LAPOP)-Panama",
"describedBy":"http://www.usaid.gov/opengov/developer/datasets/Panama_codebook_LAPOP_americasbarometer_2014.pdf",
"describedByType":"application/pdf"
}
],
"language": ["en-US","es"],
"references":["http://www.usaid.gov/opengov/developer/datasets/Panama_14_Questionnaire_SPAN_LAPOP_americasbarometer.pdf","http://www.usaid.gov/opengov/developer/datasets/Panama_Tech_Info_LAPOP_americasbarometer_2014.pdf"]
},
{"accessLevel":"public",
"bureauCode": ["184:15"],
"contactPoint": {
"fn":"Joe Cabino",
"hasEmail":"mailto:[email protected]"
},
"modified": "2014-02-08",
"description":"A part of the 2014 round of public opinion surveys implemented by LAPOP, the Paraguay survey was carried out between January 18th and February 8th of 2014. It is a follow-up of the national surveys of 2006, 2008, 2010 and 2012. The 2014 survey was conducted by Vanderbilt University with the fieldwork being carried out by Centro de Informacion y Recursos para el (Desarrollo (CIRD). The 2014 AmericasBarometer received generous support from many sources including USAID, UNDP, IADB,Vanderbilt U., Princeton U., Universite Laval, U. of Notre Dame, among others.",
"title":"The AmericasBarometer by the Latin American Public Opinion Project (LAPOP)-Paraguay",
"keyword": [
"Opinion Survey","Crime","Corruption","Paraguay"],
"publisher":{
"name":"USAID"},
"identifier":"91eb630e-7a77-4cdd-b3fc-4fb05a717580",
"programCode":["184:008","184:010","184:022","184:031","184:033"],
"license":"http://www.usaid.gov/data/license-data-created-usaid-partners",
"landingPage": "http://www.http://datasets.americasbarometer.org/database-login/index.html",
"spatial": "Paraguay",
"distribution": [
{
"description":"A part of the 2014 round of public opinion surveys implemented by LAPOP, the Paraguay survey was carried out between January 18th and February 8th of 2014. It is a follow-up of the national surveys of 2006, 2008, 2010 and 2012. The 2014 survey was conducted by Vanderbilt University with the fieldwork being carried out by Centro de Informacion y Recursos para el (Desarrollo (CIRD). The 2014 AmericasBarometer received generous support from many sources including USAID, UNDP, IADB,Vanderbilt U., Princeton U., Universite Laval, U. of Notre Dame, among others.",
"downloadURL":"http://www.usaid.gov/opengov/developer/datasets/Paraguay_Data_LAPOP_americasbarometer_2014.csv",
"format":"csv",
"mediaType":"text/csv",
"title": "The AmericasBarometer by the Latin American Public Opinion Project (LAPOP)-Paraguay",
"describedBy":"http://www.usaid.gov/opengov/developer/datasets/Paraguay_codebook_LAPOP_americasbarometer_2014.pdf",
"describedByType":"application/pdf"
}
],
"language": ["en-US","es"],
"references":["http://www.usaid.gov/opengov/developer/datasets/Paraguay_14_Questionnaire_SPAN_LAPOP_americasbarometer.pdf","http://www.usaid.gov/opengov/developer/datasets/Paraguay_Tech_Info_LAPOP_americasbarometer_2014.pdf"]
},
{"accessLevel":"public",
"bureauCode": ["184:15"],
"contactPoint": {
"fn":"Joe Cabino",
"hasEmail":"mailto:[email protected]"
},
"modified": "2014-02-08",
"description":"A part of the 2014 round of public opinion surveys implemented by LAPOP, the Peru survey was carried out between January 23rd and February 8th of 2014. It is a follow-up of the national surveys of 2006, 2008, 2010 and 2012. The 2014 survey was conducted by Vanderbilt University and the Instituto de Estudios Peruanos. The 2014 AmericasBarometer received generous support from many sources including USAID, UNDP, IADB,Vanderbilt U., Princeton U., Universite Laval, U. of Notre Dame, among others.",
"title":"The AmericasBarometer by the Latin American Public Opinion Project (LAPOP)-Peru",
"keyword": [
"Opinion Survey","Crime","Corruption","Peru"],
"publisher":{
"name":"USAID"},
"identifier":"f8e81635-c4bd-4b9f-a853-abb4b9dba041",
"programCode":["184:008","184:010","184:022","184:031","184:033"],
"license":"http://www.usaid.gov/data/license-data-created-usaid-partners",
"landingPage": "http://www.http://datasets.americasbarometer.org/database-login/index.html",
"spatial": "Peru",
"distribution": [
{
"description":"A part of the 2014 round of public opinion surveys implemented by LAPOP, the Peru survey was carried out between January 23rd and February 8th of 2014. It is a follow-up of the national surveys of 2006, 2008, 2010 and 2012. The 2014 survey was conducted by Vanderbilt University and the Instituto de Estudios Peruanos. The 2014 AmericasBarometer received generous support from many sources including USAID, UNDP, IADB,Vanderbilt U., Princeton U., Universite Laval, U. of Notre Dame, among others.",
"downloadURL":"http://www.usaid.gov/opengov/developer/datasets/Peru_Data_LAPOP_americasbarometer_2014.csv",
"format":"csv",
"mediaType":"text/csv",
"title": "The AmericasBarometer by the Latin American Public Opinion Project (LAPOP)-Peru",
"describedBy":"http://www.usaid.gov/opengov/developer/datasets/Peru_codebook_LAPOP_americasbarometer_2014.pdf",
"describedByType":"application/pdf"
}
],
"language": ["en-US","es"],
"references":["http://www.usaid.gov/opengov/developer/datasets/Peru_14_Questionnaire_SPAN_LAPOP_americasbarometer.pdf","http://www.usaid.gov/opengov/developer/datasets/Peru_Tech_Info_LAPOP_americasbarometer_2014.pdf"]
},
{"accessLevel":"public",
"bureauCode": ["184:15"],
"contactPoint": {
"fn":"Joe Cabino",
"hasEmail":"mailto:[email protected]"
},
"modified": "2014-04-23",
"description":"A part of the 2014 round of public opinion surveys implemented by LAPOP, the Uruguay survey was carried out between March 8th and April 23rd of 2014. It is a follow-up of the national surveys of 2006, 2008, 2010 and 2012. The 2014 survey was conducted by Vanderbilt University, CIFRA, Gonzales Raga & Associates and la Universidad de Montevideo. The 2014 AmericasBarometer received generous support from many sources including USAID, UNDP, IADB,Vanderbilt U., Princeton U., Universite Laval, U. of Notre Dame, among others.",
"title":"The AmericasBarometer by the Latin American Public Opinion Project (LAPOP)-Uruguay",
"keyword": [
"Opinion Survey","Crime","Corruption","Uruguay"],
"publisher":{
"name":"USAID"},
"identifier":"b57363b2-e3e2-421c-9e07-92960b03f57e",
"programCode":["184:008","184:010","184:022","184:031","184:033"],
"license":"http://www.usaid.gov/data/license-data-created-usaid-partners",
"landingPage": "http://www.http://datasets.americasbarometer.org/database-login/index.html",
"spatial": "Uruguay",
"distribution": [
{
"description":"A part of the 2014 round of public opinion surveys implemented by LAPOP, the Uruguay survey was carried out between March 8th and April 23rd of 2014. It is a follow-up of the national surveys of 2006, 2008, 2010 and 2012. The 2014 survey was conducted by Vanderbilt University, CIFRA, Gonzales Raga & Associates and la Universidad de Montevideo. The 2014 AmericasBarometer received generous support from many sources including USAID, UNDP, IADB,Vanderbilt U., Princeton U., Universite Laval, U. of Notre Dame, among others.",
"downloadURL":"http://www.usaid.gov/opengov/developer/datasets/Uruguay_Data_LAPOP_americasbarometer_2014.csv",
"format":"csv",
"mediaType":"text/csv",
"title": "The AmericasBarometer by the Latin American Public Opinion Project (LAPOP)-Uruguay",
"describedBy":"http://www.usaid.gov/opengov/developer/datasets/Uruguay_codebook_LAPOP_americasbarometer_2014.pdf",
"describedByType":"application/pdf"
}
],
"language": ["en-US","es"],
"references":["http://www.usaid.gov/opengov/developer/datasets/Uruguay_14_Questionnaire_SPAN_LAPOP_americasbarometer.pdf","http://www.usaid.gov/opengov/developer/datasets/Uruguay_Tech_Info_LAPOP_americasbarometer_2014.pdf"]
},
{
"accessLevel":"public",
"bureauCode": ["184:15"],
"contactPoint": {
"fn":"Jill Moss",
"hasEmail":"mailto:[email protected]"
},
"modified": "2013-10-15",
"description":"In fiscal year 2012, USAID's Office of Food for Peace (FFP) awarded funding to private voluntary organizations (PVOs) to design and implement a multi-year Title II development food assistance program in Uganda. The main purpose of the Title II program is to improve long-term food security of chronically food insecure population in the target regions. FFP contracted a firm, ICF International to conduct a baseline study in targeted areas of the country prior to the start of the new program. The purpose of the study was to assess the current status of key indicators, have a better understanding of prevailing conditions and perceptions of the population in the implementation areas, and serve as a point of comparison for future final evaluations. Results would also be used to further refine program targeting and, where possible, to understand the relationship between variables to inform program design. The study was conducted in 2013, while FFP expects to conduct final evaluations as close as possible to the end of the program five years later.",
"title":"Baseline Study of Food for Peace Title II Development Food Assistance Program in Uganda",
"keyword": [
"Uganda","Baseline Survey","Food for Peace","FFP","Title II Development Program","Food Security","Karamoja"],
"publisher":{
"name":"USAID"},
"identifier":"3c32504d-ffba-46c9-8c7b-30449def4143",
"programCode":["184:016","184:018","184:019","184:029","184:037"],
"license":"http://www.usaid.gov/data/license-data-created-usaid-partners",
"landingPage": "http://www.usaid.gov/developer/FFPBaselineStudies",
"spatial": "Uganda",
"distribution": [
{
"description":"Data on agricultural practices in Karamoja, Uganda",
"downloadURL":"https://www.usaid.gov/opengov/developer/datasets/Uganda_Agric%20Practices_Data.csv",
"format":"csv",
"mediaType":"text/csv",
"title": "Uganda Agricultural Practices Data",
"describedBy":"https://www.usaid.gov/opengov/developer/datasets/Uganda_Agric_Practices_Codebook_wValues.csv",
"describedByType":"text/csv"
},
{
"description":"Data on child health in Karamoja, Uganda",
"downloadURL":"https://www.usaid.gov/opengov/developer/datasets/Uganda_Child%20Health_Data.csv",
"format":"csv",
"mediaType":"text/csv",
"title": "Uganda Child Health Data",
"describedBy":"https://www.usaid.gov/opengov/developer/datasets/Uganda_Child_Health_Codebook_wValues.csv",
"describedByType":"text/csv"
},
{
"description":"Data on food consumption in Karamoja, Uganda",
"downloadURL":"https://www.usaid.gov/opengov/developer/datasets/Uganda_Food%20Consumption_Data.csv",
"format":"csv",
"mediaType":"text/csv",
"title": "Uganda Food Consumption Data",
"describedBy":"https://www.usaid.gov/opengov/developer/datasets/Uganda_Food_Consumption_Codebook_wValues.csv",
"describedByType":"text/csv"
},
{
"description":"Data describing the households in Karamoja, Uganda",
"downloadURL":"https://www.usaid.gov/opengov/developer/datasets/Uganda_HH_Description_Data.csv",
"format":"csv",
"mediaType":"text/csv",
"title": "Uganda Household Description Data",
"describedBy":"https://www.usaid.gov/opengov/developer/datasets/Uganda_HH_Description_Codebook_wValues.csv",
"describedByType":"text/csv"
},
{
"description":"Data on maternal health and household sanitation in Karamoja, Uganda",
"downloadURL":"https://www.usaid.gov/opengov/developer/datasets/Uganda_Maternal%20Health%20and%20HH%20Sanitation_Data.csv",
"format":"csv",
"mediaType":"text/csv",
"title": "Uganda Maternal Health and Household Sanitation Data",
"describedBy":"https://www.usaid.gov/opengov/developer/datasets/Uganda_Maternal_Health_and_HH_Sanitation_Codebook_wValues.csv",
"describedByType":"text/csv"
}
],
"language": ["en-US"],
"references":["http://pdf.usaid.gov/pdf_docs/pnaed238.pdf"]
},
{ "accessLevel":"public",
"bureauCode": ["184:15"],
"contactPoint": {
"fn":"Jill Moss",
"hasEmail":"mailto:[email protected]"
},
"modified": "2013-10-15",
"description":"In fiscal year 2012, USAID's Office of Food for Peace (FFP) awarded funding to private voluntary organizations (PVOs) to design and implement a multi-year Title II development food assistance program in Guatemala. The main purpose of the Title II program is to improve long-term food security of chronically food insecure population in the target regions. FFP contracted a firm, ICF International to conduct a baseline study in targeted areas of the country prior to the start of the new program. The purpose of the study was to assess the current status of key indicators, have a better understanding of prevailing conditions and perceptions of the population in the implementation areas, and serve as a point of comparison for future final evaluations. Results would also be used to further refine program targeting and, where possible, to understand the relationship between variables to inform program design. The study was conducted in 2013, while FFP expects to conduct final evaluations as close as possible to the end of the program five years later.",
"title":"Baseline Study of Food for Peace Title II Development Food Assistance Program in Guatemala",
"keyword": [
"Guatemala","Baseline Survey","Food for Peace","FFP","Title II Development Program","Food Security","Segamil","Paisano"],
"publisher":{
"name":"USAID"},
"identifier":"beafc8ed-c5cf-41a0-84a4-19303c309516",
"programCode":["184:016","184:018","184:019","184:029","184:037"],
"license":"http://www.usaid.gov/data/license-data-created-usaid-partners",
"landingPage": "http://www.usaid.gov/developer/FFPBaselineStudies",
"spatial": "Guatemala",
"distribution": [
{
"description":"Data on agricultural practices in Segamil and Paisano in Guatemala",
"downloadURL":"https://www.usaid.gov/opengov/developer/datasets/Guatemala_AgricPractices_Data.csv",
"format":"csv",
"mediaType":"text/csv",
"title": "Guatemala Agricultural Practices Data",
"describedBy":"https://www.usaid.gov/opengov/developer/datasets/Guat_Agric_Practices_Codebook_wValues.csv",
"describedByType":"text/csv"
},
{
"description":"Data on child health in Segamil and Paisano in Guatemala",
"downloadURL":"https://www.usaid.gov/opengov/developer/datasets/Guatemala_ChildHealth_Data.csv",
"format":"csv",
"mediaType":"text/csv",
"title": "Guatemala Agricultural Practices Data",
"describedBy":"https://www.usaid.gov/opengov/developer/datasets/Guat_Child_Health_Codebook_wValues.csv",
"describedByType":"text/csv"
},
{
"description":"Data on food consumption in Segamil and Paisano in Guatemala",
"downloadURL":"https://www.usaid.gov/opengov/developer/datasets/Guatemala_Food%20Consumption_Data.csv",
"format":"csv",
"mediaType":"text/csv",
"title": "Guatemala Agricultural Practices Data",
"describedBy":"https://www.usaid.gov/opengov/developer/datasets/Guat_Food_Consumption_Codebook_wValues.csv",
"describedByType":"text/csv"
},
{
"description":"Data describing the households in Segamil and Paisano in Guatemala",
"downloadURL":"https://www.usaid.gov/opengov/developer/datasets/Guatemala_HH%20Description_Data.csv",
"format":"csv",
"mediaType":"text/csv",
"title": "Guatemala Agricultural Practices Data",
"describedBy":"https://www.usaid.gov/opengov/developer/datasets/Guat_HH_Description_Codebook_wValues.csv",
"describedByType":"text/csv"
},
{
"description":"Data on maternal health and household sanitation in Segamil and Paisano in Guatemala",
"downloadURL":"https://www.usaid.gov/opengov/developer/datasets/Guatemala_Maternal%20Health%20and%20HH%20Sanitation_Data.csv",
"format":"csv",
"mediaType":"text/csv",
"title": "Guatemala Agricultural Practices Data",
"describedBy":"https://www.usaid.gov/opengov/developer/datasets/Guat_HH_Sanitation_Codebook_wValues.csv",
"describedByType":"text/csv"
},
{
"description":"Data describing the anthropometry in Segamil and Paisano in Guatemala",
"downloadURL":"https://www.usaid.gov/opengov/developer/datasets/GUATEMALA_weights_annotated.csv",
"format":"csv",
"mediaType":"text/csv",
"title": "Guatemala Anthropometry Data",
"describedBy":"https://www.usaid.gov/opengov/developer/datasets/GUATEMALA_weights_description.csv",
"describedByType":"text/csv"
}
],
"language": ["en-US"],
"references":["http://pdf.usaid.gov/pdf_docs/pnaed236.pdf"]
},
{"accessLevel":"public",
"bureauCode": ["184:15"],
"contactPoint": {
"fn":"Jill Moss",
"hasEmail":"mailto:[email protected]"
},
"modified": "2013-10-15",
"description":"In fiscal year 2012, USAID's Office of Food for Peace (FFP) awarded funding to private voluntary organizations (PVOs) to design and implement a multi-year Title II development food assistance program in Niger. The main purpose of the Title II program is to improve long-term food security of chronically food insecure population in the target regions. FFP contracted a firm, ICF International to conduct a baseline study in targeted areas of the country prior to the start of the new program. The purpose of the study was to assess the current status of key indicators, have a better understanding of prevailing conditions and perceptions of the population in the implementation areas, and serve as a point of comparison for future final evaluations. Results would also be used to further refine program targeting and, where possible, to understand the relationship between variables to inform program design. The study was conducted in 2013, while FFP expects to conduct final evaluations as close as possible to the end of the program five years later.",
"title":"Baseline Study of Food for Peace Title II Development Food Assistance Program in Niger",
"keyword": [
"Niger","Baseline Survey","Food for Peace","FFP","Title II Development Program","Food Security","Maradi","Zinder"],
"publisher":{
"name":"USAID"},
"identifier":"08ee315f-c339-4c2f-8ae8-8988c9ef05ff",
"programCode":["184:016","184:018","184:019","184:029","184:037"],
"license":"http://www.usaid.gov/data/license-data-created-usaid-partners",
"landingPage": "http://www.usaid.gov/developer/FFPBaselineStudies",
"spatial": "Niger",
"distribution": [
{
"description":"Data on access to health services in Zinder and Maradi in Niger",
"downloadURL":"https://www.usaid.gov/opengov/developer/datasets/Niger_Access%20Health%20Services_Data.csv",
"format":"csv",
"mediaType":"text/csv",
"title": "Niger Access to Health Services Data",
"describedBy":"https://www.usaid.gov/opengov/developer/datasets/Niger_Access%20Health%20Services_Codebook_Values.csv",
"describedByType":"text/csv"
},
{
"description":"Data on agricultural practices in Zinder and Maradi in Niger",
"downloadURL":"https://www.usaid.gov/opengov/developer/datasets/Niger_Agric%20Practices_Data.csv",
"format":"csv",
"mediaType":"text/csv",
"title": "Niger Agricultural Practices Data",
"describedBy":"https://www.usaid.gov/opengov/developer/datasets/Niger_Agric_Practices_Codebook_wValues.csv",
"describedByType":"text/csv"
},{
"description":"Data on child health in Zinder and Maradi in Niger",
"downloadURL":"https://www.usaid.gov/opengov/developer/datasets/Niger_Child%20Health_Data.csv",
"format":"csv",
"mediaType":"text/csv",
"title": "Niger Agricultural Practices Data",
"describedBy":"https://www.usaid.gov/opengov/developer/datasets/Niger_Child_Health_Codebook_wValues.csv",
"describedByType":"text/csv"
},
{
"description":"Data on food consumption in Zinder and Maradi in Niger",
"downloadURL":"https://www.usaid.gov/opengov/developer/datasets/Niger_Food%20Consumption_Data.csv",
"format":"csv",
"mediaType":"text/csv",
"title": "Niger Agricultural Practices Data",
"describedBy":"https://www.usaid.gov/opengov/developer/datasets/Niger_Food_Consumption_Codebook_wValues.csv",
"describedByType":"text/csv"
},
{
"description":"Data describing the households in Zinder and Maradi in Niger",
"downloadURL":"https://www.usaid.gov/opengov/developer/datasets/Niger_HH%20Description_Data.csv",
"format":"csv",
"mediaType":"text/csv",
"title": "Niger Agricultural Practices Data",
"describedBy":"https://www.usaid.gov/opengov/developer/datasets/Niger_HH_Description_Codebook_wValues.csv",
"describedByType":"text/csv"
},
{
"description":"Data on mothers pregnancy in Zinder and Maradi in Niger",
"downloadURL":"https://www.usaid.gov/opengov/developer/datasets/Niger_Mothers%20Pregnancy_Data.csv",
"format":"csv",
"mediaType":"text/csv",
"title": "Niger Mothers Pregnancy Data",
"describedBy":"https://www.usaid.gov/opengov/developer/datasets/Niger_Mother_Pregnancy_Codebook_wValues.csv",
"describedByType":"text/csv"
},
{
"description":"Data describing sanitation and maternal health in Zinder and Maradi in Niger",
"downloadURL":"https://www.usaid.gov/opengov/developer/datasets/Niger_Sanitation%20and%20Maternal%20Health_Data.csv",
"format":"csv",
"mediaType":"text/csv",
"title": "Niger Sanitation and Maternal Health Data",
"describedBy":"https://www.usaid.gov/opengov/developer/datasets/Niger_Sanitation_and_Maternal_Health_Codebook_wValues.csv",
"describedByType":"text/csv"
}
],
"language": ["en-US"],
"references":["http://pdf.usaid.gov/pdf_docs/pnaed237.pdf"]
},
{ "accessLevel":"public",
"bureauCode": ["184:15"],
"contactPoint": {
"fn":"Kate Bunting",
"hasEmail":"mailto:[email protected]"
},
"modified": "2013-11-21",
"description":"The DHS Program STATcompiler allows users to make custom tables based on hundreds of demographic and health indicators across more than 70 countries.",
"title":"DHS STATCompiler",
"keyword": [
"demographics","health","survey","international"],
"publisher":{
"name":"USAID"},
"identifier":"62a927d0-74e7-4802-96c2-90e78c85608c",
"programCode":["184:011","184:012","184:013","184:014","184:015","184:016","184:017","184:018","184:019"],
"license":"http://www.usaid.gov/data/license-data-created-usaid-partners",
"landingPage": "http://statcompiler.com",
"distribution": [
{
"description":"Key health and family planning indicators derived from national Demographic and Health Surveys",
"accessURL":"http://api.dhsprogram.com",
"format":"API",
"title": "DHS STATCompiler"
}
],
"language": ["en-US"]
},
{ "accessLevel":"public",
"bureauCode": ["184:15"],
"contactPoint": {
"fn":"Brandon Pustejovsky",
"hasEmail":"mailto:[email protected]"
},
"modified": "2013-11-26",
"description":"The DEC is a publicly available document repository for over 160,000 technical and programmatic documents related to USAID programming that is managed by USAID's Knowledge Services Center in the CIO. Users can search and view the majority of documents that are submitted by both implementing partners and USAID staff.",
"title":"Development Experience Clearinghouse (DEC)",
"keyword": [
"USAID","document repository","library"],
"publisher":{
"name":"USAID"},
"identifier":"dd4fe488-3c50-4d57-92f7-48a4e6578069",
"programCode":["184:001","184:002","184:003","184:004","184:005","184:006","184:007","184:008","184:009","184:010",
"184:011","184:012","184:013","184:014","184:015","184:016","184:017","184:018","184:019","184:020",
"184:021","184:022","184:023","184:024","184:025","184:026","184:027","184:028","184:029","184:030",
"184:031","184:032","184:033","184:034","184:035","184:036","184:037"],
"license":"http://www.usaid.gov/data/license-data-created-agency",
"landingPage": "http://dec.usaid.gov",
"distribution": [
{
"description":"The DEC is a repository of USAID documents and publications stored primarily in pdf format. This API allows users to search that repsoitory for those documents.",
"accessURL":"http://www.usaid.gov/developer/development-experience-clearinghouse-dec-api",
"format":"API",
"title": "Development Experience Clearinghouse (DEC)"
},
{
"description":"This dataset is a machine readable extraction of documents in the DEC at a single point in time.",
"downloadURL":"http://www.usaid.gov/cdn/opendata/DEC_Readable.v01.json.gz",
"format":"gzip",
"mediaType":"application/gzip",
"title": "Development Experience Clearinghouse (DEC) - Machine Readable"
}
],
"references":["http://www.usaid.gov/opengov/developer/datasets/WorkingwithDECJSONfiles.pdf"],
"language": ["en-US"]
},
{
"accessLevel":"public",
"bureauCode": ["184:15"],
"contactPoint": {
"fn":"Chris Murphy",
"hasEmail":"mailto:[email protected]"
},
"modified": "2012-06-25",
"description":"USAID's Development Credit Authority (DCA) works with investors, local financial institutions, and development organizations to design and deliver investment alternatives that unlock financing for U.S. Government priorities. USAID guarantees encourage private lenders to extend financing to underserved borrowers in new sectors and regions. This dataset is the complete list of all private loans made under USAID's DCA since it was established in 1999. To protect the personal information of borrowers and bank partners, all strategic and personal identifiable information was removed.",
"title":"Development Credit Authority (DCA) Data Set: Loan Transactions",
"keyword": [
"dca","credit","financial","investments","lending","bank","geospatial","WWHGD","guarantees","development","loans","entrepreneurs"],
"publisher":{
"name":"USAID"},
"identifier":"854d1b81-a517-4966-957c-5428fb4c1821",
"programCode":["184:027","184:031"],
"license":"http://www.usaid.gov/data/license-data-created-agency",
"landingPage": "http://www.usaid.gov/results-and-data/progress-data/data/dca",
"distribution": [
{
"description":"This dataset is the complete list of all private loans made under USAID's DCA since it was established in 1999.",
"downloadURL":"https://inventory.data.gov/dataset/6680fbb1-8227-4754-946d-193cb0fb7a04/resource/edc94528-abe5-4330-b13a-1501c2ea26ce/download/userssharedsdfusaiddevelopmentcagloantransactions.csv",
"format":"csv",
"mediaType":"text/csv",
"accessURL":"http://explore.data.gov/resource/7swc-ittd.json",
"format":"API",
"title": "Development Credit Authority (DCA): Loan Transactions"
}
],
"language": ["en-US"]
},
{
"accessLevel":"public",
"bureauCode": ["184:15"],
"contactPoint": {
"fn":"Chris Murphy",
"hasEmail":"mailto:[email protected]"
},
"modified": "2012-06-25",
"description":"USAID's Development Credit Authority (DCA) works with investors, local financial institutions, and development organizations to design and deliver investment alternatives that unlock financing for U.S. Government priorities. Whether it's getting working capital to promising entrepreneurs or input financing to small farmers, DCA seeks to prove the commercial viability of underserved markets so that lending and investment continues long after we exit. The Development Credit Authority (DCA) uses partial credit guarantees to mobilize local financing in developing countries. Guarantee agreements encourage private lenders to extend financing to underserved borrowers in new sectors and regions. By opening up local channels of financing, USAID is empowering entrepreneurs in developing countries at a minimal cost to the U.S. taxpayer. This USAID dataset shows the partial credit guarantees that USAID has issued since the development credit authority program was founded in 1999. The spreadsheet reflects the full facility size of each guarantee, how much was lent under the guarantee, the status of the guarantee (i.e., active or expired), how much in claims the bank submitted due to losses it incurred for loans placed under the guarantee, and how many loans were placed under coverage of the guarantee. The data also shows the sector and country for each guarantee.",
"title":"Development Credit Authority (DCA) Data Set: Guarantee Utilization and Claims",
"keyword": [
"dca","credit","financial","investments","lending","bank","geospatial","WWHGD","guarantees","development","loans","entrepreneurs"],
"publisher":{
"name":"USAID"},
"identifier":"31fbe412-d87a-41b1-bf62-259895057f79",
"programCode":["184:027","184:031"],
"license":"http://www.usaid.gov/data/license-data-created-agency",
"landingPage": "http://www.usaid.gov/results-and-data/progress-data/data/dca",
"distribution": [
{
"description":"This USAID dataset shows the partial credit guarantees that USAID has issued since the development credit authority program was founded in 1999.",
"downloadURL":"https://inventory.data.gov/dataset/bb24c71b-fa3d-4f30-bf8f-16d2b561b6df/resource/1705fe89-ffc3-420d-a385-f365f75fa7eb/download/userssharedsdfusaiddevelopmentcagdutilizationandclaims.csv",
"format":"csv",
"mediaType":"text/csv",
"accessURL":"http://labs.data.gov/databeam/stephaniefaith/utilization-and-claims",
"format":"API",
"title": "Development Credit Authority (DCA): Guarantee Utilization and Claims"
}
],
"language": ["en-US"]
},
{ "accessLevel":"public",
"bureauCode": ["184:15"],
"contactPoint": {
"fn":"Brandon Pustejovsky",
"hasEmail":"mailto:[email protected]"
},
"modified": "2015-02-15",
"description":"Dollars to Results shows spending in a fiscal year alongside results reported for that same year. Data are illustrative and do not reflect the entirety of impact achieved from the overall funds disbursed. This file contains three years of data for 43 USAID Operating Units.",
"title":"Dollars to Results: Linking Spending to Outputs and Outcomes",
"keyword": [
"disbursements","outputs","outcomes"],
"publisher":{
"name":"USAID"},
"identifier":"a1ca9979-901c-4771-abe5-8ffb68223467",
"programCode":["184:001","184:002","184:003","184:004","184:005","184:006","184:007","184:008","184:009","184:010",
"184:011","184:012","184:013","184:014","184:015","184:016","184:017","184:018","184:019","184:020",
"184:021","184:022","184:023","184:024","184:025","184:026","184:027","184:028","184:029","184:030",
"184:031","184:032","184:033","184:034","184:035","184:036","184:037"],
"license":"http://www.usaid.gov/data/license-data-created-agency",
"landingPage": "http://results.usaid.gov",
"distribution": [
{
"description":"Dollars to Results shows spending in a fiscal year alongside results reported for that same year. Data are illustrative and do not reflect the entirety of impact achieved from the overall funds disbursed. This file contains three years of data for 43 USAID Operating Units.",
"downloadURL":"http://www.usaid.gov/data/USAID-DTR-fulldataset.zip",
"format":"zipped CSV",
"mediaType":"application/zip",
"title": "Dollars to Results: Linking Spending to Outputs and Outcomes"
}
],
"language": ["en-US"]
},
{ "accessLevel":"public",
"bureauCode": ["184:15"],
"contactPoint": {
"fn":"Jill Moss",
"hasEmail":"mailto:[email protected]"
},
"modified": "2013-04-29",
"description":"This dataset from the Famine Early Warning System Network (FEWS NET) documents ten years, from 2002 to 2012, of cereal price fluctuations across twenty-five African countries. These numbers provide a month-by-month record of the degree and scope of price crises as well as undisturbed cereal markets in Africa.",
"title":"FEWS NET Price Volatility Data 2002-2012",
"keyword": [
"disbursements","outputs","outcomes"],
"publisher":{
"name":"USAID"},
"identifier":"8357a7f6-2514-42ea-8069-ae260c9a4d98",
"programCode":["184:027","184:029"],