-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdatapackage.json
5542 lines (5542 loc) · 321 KB
/
datapackage.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
{
"name": "data-quality-uk-25k",
"description": "Analysis of the quality of UK public spend over £25000 files.",
"homepage": "https://github.com/okfn/data-quality-uk-25k-spend",
"author": "Open Knowledge (https://okfn.org/)",
"keywords": [
"pubic",
"expediture",
"UK",
"spend",
"25k",
"25000"
],
"resources": [
{
"path": "data/publisher_lookup.csv",
"format": "csv",
"name": "publisher_lookup",
"description": "File containing the desired insitutions",
"schema": {
"fields": [
{
"name": "normalized_name",
"title": "Normalized name of the institution",
"type": "string"
}
],
"primaryKey": [
"normalized_name"
]
}
},
{
"path": "data/publishers.csv",
"name": "publishers",
"description": "File containing information for the desired insitutions that have been found.",
"schema": {
"fields": [
{
"name": "id",
"title": "Source ID",
"type": "string"
},
{
"name": "title",
"title": "Official title",
"type": "string"
},
{
"name": "type",
"title": "Type",
"type": "string"
},
{
"name": "homepage",
"title": "Homepage",
"type": "string"
},
{
"name": "contact",
"title": "Contact",
"type": "string"
},
{
"name": "email",
"title": "Email",
"type": "string"
},
{
"name": "parent_id",
"title": "Parent short name",
"type": "string"
}
],
"primaryKey": [
"id"
]
}
},
{
"path": "data/sources.csv",
"name": "sources",
"description": "Files published by the insitutions that have been found.",
"schema": {
"fields": [
{
"name": "id",
"title": "ID",
"type": "string",
"constraints": {
"required": true,
"unique": true
}
},
{
"name": "publisher_id",
"title": "Publisher ID",
"type": "string"
},
{
"name": "title",
"title": "Title",
"type": "string"
},
{
"name": "data",
"title": "Data file path",
"type": "string",
"format": "uri",
"constraints": {
"required": true,
"unique": true
}
},
{
"name": "format",
"title": "Data file format",
"type": "string"
},
{
"name": "last_modified",
"title": "Last modified",
"type": "string"
},
{
"name": "schema",
"title": "Schema file path",
"type": "string"
},
{
"name": "created_at",
"title": "Time of source creation",
"type": "string",
"constraints": {
"required": true
}
}
],
"primaryKey": [
"id",
"data"
],
"foreignKeys": [
{
"fields": "publisher_id",
"reference": {
"resource": "publishers",
"fields": "id"
}
}
]
}
},
{
"path": "data/runs.csv",
"name": "runs",
"description": "File containing details of each run.",
"schema": {
"fields": [
{
"name": "id",
"title": "Publisher ID",
"type": "string"
},
{
"constraints": {
"required": true
},
"format": "datetime",
"name": "timestamp",
"title": "Timestamp of the run execution",
"type": "date"
},
{
"name": "total_score",
"title": "Average score of all results in this run",
"type": "integer"
}
],
"primaryKey": [
"id"
]
}
},
{
"name": "result_file",
"path": "data/results.csv",
"schema": {
"fields": [
{
"constraints": {
"required": true,
"unique": true
},
"name": "id",
"title": "ID of the result",
"type": "string"
},
{
"constraints": {
"required": true,
"unique": true
},
"name": "source_id",
"title": "ID of the correspoding source",
"type": "string"
},
{
"constraints": {
"required": true
},
"name": "publisher_id",
"title": "ID of the source's publisher",
"type": "string"
},
{
"constraints": {
"required": true
},
"name": "created_at",
"title": "Time of the source's creation.",
"type": "date",
"format": "date"
},
{
"constraints": {
"required": true
},
"name": "data",
"title": "Path/url to source",
"type": "string"
},
{
"name": "schema",
"title": "Path/url to the source's schema",
"type": "string"
},
{
"contrains": {
"required": true
},
"name": "score",
"title": "Score of correctness given by GoodTables",
"type": "integer"
},
{
"name": "summary",
"title": "Summary",
"type": "string"
},
{
"constraints": {
"required": true,
"unique": true
},
"name": "run_id",
"title": "ID of the run in which the result was calculated",
"type": "string"
},
{
"constraints": {
"required": true
},
"format": "datetime",
"name": "timestamp",
"title": "Timestamp of the run execution",
"type": "date"
},
{
"name": "report",
"title": "Path/url to the full GoodTabels report",
"type": "string"
}
],
"foreignKeys": [
{
"fields": "source_id",
"reference": {
"fields": "id",
"resource": "source_file"
}
},
{
"fields": "publisher_id",
"reference": {
"fields": "id",
"resource": "publisher_file"
}
},
{
"fields": "run_id",
"reference": {
"fields": "id",
"resource": "run_file"
}
}
],
"primaryKey": "id"
}
},
{
"path": "data/performance.csv",
"name": "performance",
"description": "File containing the results of the analysis for each publisher per period.",
"schema": {
"fields": [
{
"name": "publisher_id",
"title": "Publisher ID",
"type": "string"
},
{
"name": "month_of_creation",
"title": "Month of the file creation",
"type": "date",
"format": "date"
},
{
"name": "files_count",
"title": "Files for this period",
"type": "integer"
},
{
"name": "score",
"title": "Score for this period",
"type": "integer"
},
{
"name": "valid",
"title": "Valid files for this period",
"type": "integer"
},
{
"name": "files_count_to_date",
"title": "Files to date",
"type": "integer"
},
{
"name": "score_to_date",
"title": "Score to date",
"type": "integer"
},
{
"name": "valid_to_date",
"title": "Valid files to date",
"type": "integer"
}
]
}
}
],
"sources": [
{
"name": "Spend over £25,000 in the Home Office/November 2010",
"web": "https://www.gov.uk/government/uploads/system/uploads/attachment_data/file/98213/25K-spend-november-2010.csv"
},
{
"name": "Spend over £25,000 in the Veterinary Medicines Directorate/December 2010 return",
"web": "http://data.defra.gov.uk/ops/procurement/vmd-over-25k-1012.csv"
},
{
"name": "Spend over £25,000 in the Department for Environment, Food and Rural Affairs/February 2012 return",
"web": "http://data.defra.gov.uk/ops/procurement/1202/defra-over-25K-1202.csv"
},
{
"name": "Spend over £25,000 in the Home Office/May 2012",
"web": "https://www.gov.uk/government/uploads/system/uploads/attachment_data/file/98178/may-2012.csv"
},
{
"name": "Spend over £25,000 in the Centre for Environment, Fisheries & Aquaculture Science/July 2010 return",
"web": "http://data.defra.gov.uk/ops/procurement/cefas-over-25k-1007.csv"
},
{
"name": "Spend over £25,000 in the Department of Health/May 2010 return",
"web": "http://webarchive.nationalarchives.gov.uk/+/https://www.wp.dh.gov.uk/transparency/files/2012/08/DH-May-2010-amnd4.csv"
},
{
"name": "Spend over £25,000 in the Cabinet Office/July 2011 return with descriptions ",
"web": "https://www.gov.uk/government/uploads/system/uploads/attachment_data/file/85808/Annex-B-CO-July-Transparency-data.csv"
},
{
"name": "Spend over £25,000 for Sir John Soane's Museum/July 2011",
"web": "http://www.soane.org/u/transparency/Sir-John-Soanes-Museum-Spend-Transparency-2011-07.csv"
},
{
"name": "Spend over £25,000 in the Environment Agency/April 2012 return",
"web": "http://data.defra.gov.uk/ops/procurement/1204/EA-OVER-25K-1204.csv"
},
{
"name": "MOD spending over £500 on a GPC and spending over £25,000, April 2010 to December 2013/February 2011 MOD Transparency data",
"web": "https://www.gov.uk/government/uploads/system/uploads/attachment_data/file/28859/MODTransparencyFeb11V2.csv"
},
{
"name": "Spend over £25,000 by Partnerships for Schools/PfS December 2011",
"web": "http://media.education.gov.uk/assets/files/xls/p/pfs%20spend%20december%202011.csv"
},
{
"name": "MOD spending over £500 on a GPC and spending over £25,000, April 2010 to December 2013/July 2012 GPC Spend: travel and Stationery",
"web": "https://www.gov.uk/government/uploads/system/uploads/attachment_data/file/28898/july2012_gpc_spend_travel_stationery.csv"
},
{
"name": "MOD spending over £500 on a GPC and spending over £25,000, April 2010 to December 2013/September 2013 MOD GPC spend",
"web": "https://www.gov.uk/government/uploads/system/uploads/attachment_data/file/268501/20131213_Transparency_Sep2013.csv"
},
{
"name": "Spend over £25,000 in the Foreign and Commonwealth Office/March 2015",
"web": "https://www.gov.uk/government/uploads/system/uploads/attachment_data/file/426389/March_2015_Spend_Report_-_for_publishing.csv"
},
{
"name": "Spend over £25,000 in the Department for Environment, Food and Rural Affairs/February 2011 return",
"web": "http://data.defra.gov.uk/ops/procurement/defra-over-25k-1102.csv"
},
{
"name": "Spend over £25,000 in HM Treasury/April 2011 return with descriptions",
"web": "https://www.gov.uk/government/uploads/system/uploads/attachment_data/file/184357/transparency_apr11.csv"
},
{
"name": "Spend over £25,000 in the Food and Environment Research Agency/October 2011 return",
"web": "http://data.defra.gov.uk/ops/procurement/fera-over-25k-1110.csv"
},
{
"name": "Spend over £25,000 by School Food Trust/SFT spend over £25,000 for April 2010",
"web": "http://media.education.gov.uk/assets/files/xls/s/sft%20spend%20%20april%202010.csv"
},
{
"name": "Spend over £25,000 in the Department for Education/Transparency Spend over £25,000: January 2015",
"web": "https://www.gov.uk/government/uploads/system/uploads/attachment_data/file/469751/DfE_Spend_January_2015_with_EFA.csv"
},
{
"name": "MOD spending over £500 on a GPC and spending over £25,000, April 2010 to December 2013/September 2012 GPC Spend",
"web": "https://www.gov.uk/government/uploads/system/uploads/attachment_data/file/43357/20121204_gpc_expenditure_Sept_2012.csv"
},
{
"name": "Spend over £25,000 in the Ministry of Justice/November 2012 return",
"web": "https://www.gov.uk/government/uploads/system/uploads/attachment_data/file/287044/moj-aramis-nov-12.csv"
},
{
"name": "Spend over £25,000 in the Department of Health/August 2010 return ",
"web": "https://www.gov.uk/government/uploads/system/uploads/attachment_data/file/320766/dh-august-2010-amnd3.csv"
},
{
"name": "Spend over £25,000 in the Home Office/June 2011",
"web": "https://www.gov.uk/government/uploads/system/uploads/attachment_data/file/98199/june-2011.csv"
},
{
"name": "Spend over £25,000 in the Rural Payments Agency/August 2011 return",
"web": "http://data.defra.gov.uk/ops/procurement/1108/rpa-over%2025K-1108.csv"
},
{
"name": "Spend over £25,000 in the Environment Agency/Mary 2012 return",
"web": "http://data.defra.gov.uk/ops/procurement/1205/EA-Over-25k-1205.csv"
},
{
"name": "Spend over £25,000 in the Centre for Environment, Fisheries & Aquaculture Science/December 2010 return",
"web": "http://data.defra.gov.uk/ops/procurement/cefas-over-25k-1012.csv"
},
{
"name": "Spend over £25,000 in the Department for Business, Innovation and Skills/March 2014 return",
"web": "https://www.gov.uk/government/uploads/system/uploads/attachment_data/file/318342/bis-monthly-spend-march-2014.csv"
},
{
"name": "Spend over £25,000 by Partnerships for Schools/PfS Spend over £25,000 for February 2011",
"web": "http://media.education.gov.uk/assets/files/csv/pfs%20spend%20-%20february%202011.csv"
},
{
"name": "Spend over £25,000 in the Joint Nature Conservation Committee/June 2012 return",
"web": "http://data.defra.gov.uk/ops/procurement/1206/JNCC-Over-25k-1206.csv"
},
{
"name": "Spend over £25,000 in the Department for Education/Transparency Spend over £25,000: June 2012",
"web": "https://www.gov.uk/government/uploads/system/uploads/attachment_data/file/193876/DfE_spend_03jun_2012.csv"
},
{
"name": "Spend over £25,000 in the Ministry of Justice/December 2011 return",
"web": "https://www.gov.uk/government/uploads/system/uploads/attachment_data/file/172556/moj-aramis-dec-11.csv.csv"
},
{
"name": "Spend over £25,000 by Qualifications and Curriculum Development Agency/QCDA January 2011",
"web": "http://media.education.gov.uk/assets/files/csv/qcda%20spend%20-%20january%202011.csv"
},
{
"name": "Spend over £25,000 by School Food Trust/SFT May 2011",
"web": "http://media.education.gov.uk/assets/files/csv/sft%20spend%20-%20may%202011.csv"
},
{
"name": "MOD spending over £500 on a GPC and spending over £25,000, April 2010 to December 2013/December 2013 MOD GPC spend",
"web": "https://www.gov.uk/government/uploads/system/uploads/attachment_data/file/286284/GPC_transparencydata_December2013.csv"
},
{
"name": "Spend over £25,000 in the Environment Agency/June 2010 return",
"web": "http://data.defra.gov.uk/ops/procurement/ea-over-25k-1006.csv"
},
{
"name": "Spend over £25,000 in the Food and Environment Research Agency/September 2011 return",
"web": "http://data.defra.gov.uk/ops/procurement/fera-over-25k-1109.csv"
},
{
"name": "Spend over £25,000 in Natural England/March 2011 return",
"web": "http://data.defra.gov.uk/ops/procurement/NE-over-25k-1103.csv"
},
{
"name": "Spend over £25,000 in the Veterinary Medicines Directorate/April 2010 return",
"web": "http://data.defra.gov.uk/ops/procurement/vmd-over-25k-1004.csv"
},
{
"name": "Spend over £25,000 in the Consumer Council for Water/May 2012 return",
"web": "http://data.defra.gov.uk/ops/procurement/1205/CCW+Over+25-1205.csv"
},
{
"name": "Spend over £25,000 in the Veterinary Medicines Directorate/August 2010 return",
"web": "http://data.defra.gov.uk/ops/procurement/vmd-over-25k-1008.csv"
},
{
"name": "Spend over £25,000 in the Department for Work and Pensions/May 2011 return",
"web": "https://www.gov.uk/government/uploads/system/uploads/attachment_data/file/186385/dwp-payments-may11.csv"
},
{
"name": "Spend over £25,000 in the Cabinet Office/September 2012 return with descriptions",
"web": "https://www.gov.uk/government/uploads/system/uploads/attachment_data/file/85827/CO-Transparency-data-September-2012.csv"
},
{
"name": "Spend over £25,000 in the Department for Work and Pensions/April 2013",
"web": "https://www.gov.uk/government/uploads/system/uploads/attachment_data/file/243962/dwp-payments-april2013.csv"
},
{
"name": "Spend over £25,000 in Agriculture and Horticulture Development Board (AHDB)/May 2012 return",
"web": "http://data.defra.gov.uk/ops/procurement/1205/AHDB-Over-25K-1205.csv"
},
{
"name": "Spend over £25,000 in the Ministry of Justice/March 2014 return",
"web": "https://www.gov.uk/government/uploads/system/uploads/attachment_data/file/326222/mojhq-spend-mar-14.csv"
},
{
"name": "Spend over £25,000 in Natural England/September 2011 return",
"web": "http://data.defra.gov.uk/ops/procurement/NE-over-25k-1109.csv"
},
{
"name": "Spend over £25,000 by Qualifications and Curriculum Development Agency/QCDA October 2010",
"web": "http://media.education.gov.uk/assets/files/xls/q/qcda%20spend%20%20october%202010.csv"
},
{
"name": "Spend over £25,000 in the Home Office/July 2012",
"web": "https://www.gov.uk/government/uploads/system/uploads/attachment_data/file/184648/july-2012.csv"
},
{
"name": "Spend over £25,000 in the Department for Work and Pensions/September 2011 return",
"web": "https://www.gov.uk/government/uploads/system/uploads/attachment_data/file/186381/dwp-payments-september11.csv"
},
{
"name": "Spend over £25,000 in the Rural Payments Agency/January 2011 return",
"web": "http://data.defra.gov.uk/ops/procurement/rpa-over-25k-1101.csv"
},
{
"name": "Spend over £25,000 in Export Credits Guarantee Department/October 2010",
"web": "http://webarchive.nationalarchives.gov.uk/+/http://www.ecgd.gov.uk/assets/bispartners/ecgd/files/publications/operational-data/spend-data/spend-data-october-2010.csv"
},
{
"name": "Spend over £25,000 in the Department of Health/July 2015",
"web": "https://www.gov.uk/government/uploads/system/uploads/attachment_data/file/457367/_25k_July_2015.csv"
},
{
"name": "Spend over £25,000 in HM Treasury/February 2012 return with descriptions",
"web": "https://www.gov.uk/government/uploads/system/uploads/attachment_data/file/184337/transparency_feb12.csv"
},
{
"name": "Spend over £25,000 in the Rural Payments Agency/April 2012 return",
"web": "http://data.defra.gov.uk/ops/procurement/1204/RPA-Over-25k-1204.csv"
},
{
"name": "Spend over £25,000 for Sir John Soane's Museum/February 2011",
"web": "http://www.soane.org/u/transparency/Sir-John-Soanes-Museum-Spend-Transparency-2011-02.csv"
},
{
"name": "Spend over £25,000 in the Department for Environment, Food and Rural Affairs/June 2014 return",
"web": "http://data.defra.gov.uk/ops/procurement/Jan-Dec+2014/over_%C2%A325K_jun_2014.csv"
},
{
"name": "Spend over £25,000 by Qualifications and Curriculum Development Agency/QCDA and QCDAe May 2011",
"web": "http://media.education.gov.uk/assets/files/csv/qcda%20and%20qcdae%20spend%20-%20may%202011.csv"
},
{
"name": "Spend over £25,000 in the Veterinary Medicines Directorate/November 2011 return",
"web": "http://data.defra.gov.uk/ops/procurement/vmd-over-25k-1111.csv"
},
{
"name": "Spend over £25,000 in the Department for Business, Innovation and Skills/October 2015 return",
"web": "https://www.gov.uk/government/uploads/system/uploads/attachment_data/file/497020/BIS-spending-october-2015.csv"
},
{
"name": "Spend over £25,000 by Partnerships for Schools/PfS March 2012",
"web": "http://media.education.gov.uk/assets/files/csv/p/pfs%20spend%20march%202012.csv"
},
{
"name": "Spend over £25,000 in the Veterinary Medicines Directorate/March 2011 return",
"web": "http://data.defra.gov.uk/ops/procurement/vmd-over-25k-1103.csv"
},
{
"name": "Spend over £25,000 in the Ministry of Justice/September 2012 return",
"web": "https://www.gov.uk/government/uploads/system/uploads/attachment_data/file/172790/moj-aramis-sept-2012.csv.csv"
},
{
"name": "Spend over £25,000 in the Department for Education/Transparency Spend over £25,000: April 2015",
"web": "https://www.gov.uk/government/uploads/system/uploads/attachment_data/file/436365/DfE_Spend_April_2015.csv"
},
{
"name": "Spend over £25,000 in the Department of Health/April 2012 return",
"web": "http://webarchive.nationalarchives.gov.uk/+/https://www.wp.dh.gov.uk/transparency/files/2012/04/April-2012.csv"
},
{
"name": "Spend over £25,000 in the Marine Management Organisation/July 2012 return",
"web": "http://data.defra.gov.uk/ops/procurement/1207/MMO-Over-25k-1207.csv"
},
{
"name": "Spend over £25,000 in the Centre for Environment, Fisheries & Aquaculture Science/July 2012 return",
"web": "http://data.defra.gov.uk/ops/procurement/1207/CEFAS-Over-25k-1207.csv"
},
{
"name": "Spend over £25,000 in the Ministry of Justice/September 2013 return",
"web": "https://www.gov.uk/government/uploads/system/uploads/attachment_data/file/307460/moj-spend-data-sep-13.csv"
},
{
"name": "Spend over £25,000 in the National Forest Company/October 2011 return",
"web": "http://data.defra.gov.uk/ops/procurement/nfc-over-25k-1110.csv"
},
{
"name": "Spend over £25,000 in the Department for Education/Transparency Spend over £25,000: February 2014",
"web": "https://www.gov.uk/government/uploads/system/uploads/attachment_data/file/377692/DfE_Spend_February_2014_v9_with_amended_EFA_data_v2.csv"
},
{
"name": "Spend over £25,000 in the Department of Health/March 2015",
"web": "https://www.gov.uk/government/uploads/system/uploads/attachment_data/file/430699/CSV_March_over_25_000_exp.csv"
},
{
"name": "MOD spending over £500 on a GPC and spending over £25,000, April 2010 to December 2013/May 2012 MOD Transparency data",
"web": "https://www.gov.uk/government/uploads/system/uploads/attachment_data/file/28890/20120629TransparencyReportMay20122.csv"
},
{
"name": "Spend over £25,000 in Export Credits Guarantee Department/April 2010",
"web": "http://webarchive.nationalarchives.gov.uk/+/http://www.ecgd.gov.uk/assets/bispartners/ecgd/files/publications/operational-data/spend-data/spend-data-april-2010.csv"
},
{
"name": "Spend over £25,000 in the Cabinet Office/January 2011 return with descriptions ",
"web": "https://www.gov.uk/government/uploads/system/uploads/attachment_data/file/85802/spend-transactions-with-descriptions-co-jan-2011.csv"
},
{
"name": "Spend over £25,000 in the Joint Nature Conservation Committee/February 2011 return",
"web": "http://data.defra.gov.uk/ops/procurement/jncc-over-25k-1102.csv"
},
{
"name": "Spend over £25,000 in the Centre for Environment, Fisheries & Aquaculture Science/August 2010 return",
"web": "http://data.defra.gov.uk/ops/procurement/cefas-over-25k-1008.csv"
},
{
"name": "Spend over £25,000 in Animal Health and Veterinary Laboratories Agency/September 2012 return",
"web": "http://data.defra.gov.uk/ops/procurement/1209/AHVLA-Over-25k-1209.csv"
},
{
"name": "Spend over £25,000 by Qualifications and Curriculum Development Agency/QCDA and QCDAe March 2012",
"web": "http://media.education.gov.uk/assets/files/csv/q/qcda%20and%20qcdae%20spend%20march%202012.csv"
},
{
"name": "Spend over £25,000 in the Environment Agency/September 2010 return",
"web": "http://data.defra.gov.uk/ops/procurement/ea-over-25k-1009.csv"
},
{
"name": "Spend over £25,000 by Qualifications and Curriculum Development Agency/QCDAe May 2010",
"web": "http://media.education.gov.uk/assets/files/xls/qcdae%20spend%20%20may%202010.csv"
},
{
"name": "Spend over £25,000 in the Department for Work and Pensions/February 2016",
"web": "https://www.gov.uk/government/uploads/system/uploads/attachment_data/file/510745/dwp-payments-over-25000-for-february-2016.csv"
},
{
"name": "Spend over £25,000 by School Food Trust/SFT spend over £25,000 for September 2010",
"web": "http://media.education.gov.uk/assets/files/xls/s/sft%20spend%20%20september%202010.csv"
},
{
"name": "Spend over £25,000 in the Cabinet Office/February 2012 return with descriptions ",
"web": "https://www.gov.uk/government/uploads/system/uploads/attachment_data/file/85816/CO-February-2012-expenditure-over-25k.csv"
},
{
"name": "Spend over £25,000 by Partnerships for Schools/PfS June 2011",
"web": "http://media.education.gov.uk/assets/files/csv/updated%2020110725%20142617/pfs%20spend%20%20%20june%202011.csv"
},
{
"name": "MOD spending over £500 on a GPC and spending over £25,000, April 2010 to December 2013/October 2011 GPC spend",
"web": "https://www.gov.uk/government/uploads/system/uploads/attachment_data/file/28871/20111222GPCSPEND_1OCT_TO_31OCT_2011.csv"
},
{
"name": "MOD spending over £500 on a GPC and spending over £25,000, April 2010 to December 2013/August 2012 MOD Transparency Data",
"web": "https://www.gov.uk/government/uploads/system/uploads/attachment_data/file/268493/20131212_Transparency_Aug2012.csv"
},
{
"name": "Spend over £25,000 in the Commission for Rural Communities/May 2010 return",
"web": "http://data.defra.gov.uk/ops/procurement/crc-over-25k-1005.csv"
},
{
"name": "Spend over £25,000 in the Department for Education/Transparency Spend over £25,000: December 2012",
"web": "https://www.gov.uk/government/uploads/system/uploads/attachment_data/file/320602/DfE_Spend_December_2012_-_updated_for_data.gov.uk.csv"
},
{
"name": "Spend over £25,000 in the Ministry of Justice/May 2010 return (after 12th) ",
"web": "https://www.gov.uk/government/uploads/system/uploads/attachment_data/file/219998/moj-aramis-data-may-10.csv"
},
{
"name": "MOD spending over £500 on a GPC and spending over £25,000, April 2010 to December 2013/October 2012 GPC Spend",
"web": "https://www.gov.uk/government/uploads/system/uploads/attachment_data/file/43360/20121221_gpc_october_2012.csv"
},
{
"name": "Spend over £25,000 in the Ministry of Justice/October 2012 return",
"web": "https://www.gov.uk/government/uploads/system/uploads/attachment_data/file/172789/moj-aramis-oct-2012.csv.csv"
},
{
"name": "Spend over £25,000 in the Department for Work and Pensions/July 2011 return",
"web": "https://www.gov.uk/government/uploads/system/uploads/attachment_data/file/186383/dwp-payments-july11.csv"
},
{
"name": "MOD: spending over £25,000, January to December 2014/MOD's spending over £25,000 for May 2014",
"web": "https://www.gov.uk/government/uploads/system/uploads/attachment_data/file/380659/Transparency_May_14_Final_File.csv"
},
{
"name": "Spend over £25,000 in the Consumer Council for Water/March 2012 return",
"web": "http://data.defra.gov.uk/ops/procurement/1203/ccw-over-25k-1203.csv"
},
{
"name": "MOD spending over £500 on a GPC and spending over £25,000, April 2010 to December 2013/May 2011 MOD Transparency data",
"web": "https://www.gov.uk/government/uploads/system/uploads/attachment_data/file/28862/MoDTransparencyMay11.csv"
},
{
"name": "Spend over £25,000 in the Food and Environment Research Agency/June 2010 return",
"web": "http://data.defra.gov.uk/ops/procurement/fera-over-25k-1006.csv"
},
{
"name": "Spend over £25,000 in the Cabinet Office/November 2012 return with descriptions",
"web": "https://www.gov.uk/government/uploads/system/uploads/attachment_data/file/136101/November_2012__25k_Transparency_Data.csv"
},
{
"name": "Spend over £25,000 in the Department for Work and Pensions/May 2010 return",
"web": "https://www.gov.uk/government/uploads/system/uploads/attachment_data/file/186397/dwp-payments-may10.csv"
},
{
"name": "Spend over £25,000 in the Rural Payments Agency/September 2011 return",
"web": "http://data.defra.gov.uk/ops/procurement/rpa-over 25K-1109.csv"
},
{
"name": "Spend over £25,000 in HM Treasury/June 2012 return with descriptions",
"web": "https://www.gov.uk/government/uploads/system/uploads/attachment_data/file/184333/transparency_june12.csv"
},
{
"name": "Spend over £25,000 in the Consumer Council for Water/July 2011 return",
"web": "http://data.defra.gov.uk/ops/procurement/CCW/CCW+Over+25K+-+JULY+2011.csv"
},
{
"name": "Spend over £25,000 in the Veterinary Medicines Directorate/May 2012 return",
"web": "http://data.defra.gov.uk/ops/procurement/1205/VMD-Over-25k-1205.csv"
},
{
"name": "Spend over £25,000 in the Department for International Development/June 2010 return",
"web": "https://www.gov.uk/government/uploads/system/uploads/attachment_data/file/204681/June-2010.csv"
},
{
"name": "Spend over £25,000 in the Marine Management Organisation/November 2011 return",
"web": "http://data.defra.gov.uk/ops/procurement/mmo-over-25k-1111.csv"
},
{
"name": "Spend over £25,000 in HM Treasury/March 2011 return with descriptions",
"web": "https://www.gov.uk/government/uploads/system/uploads/attachment_data/file/184358/transparency_mar11.csv"
},
{
"name": "Spend over £25,000 by School Food Trust/SFT spend over £25,000 for March 2011",
"web": "http://media.education.gov.uk/assets/files/csv/sft%20spend%20%20%20march%202011.csv"
},
{
"name": "Spend over £25,000 in Animal Health and Veterinary Laboratories Agency/July 2012 return",
"web": "http://data.defra.gov.uk/ops/procurement/1207/AHVLA-Over-25k-1207.csv"
},
{
"name": "MOD: spending over £25,000, January to December 2015/MOD's spending over £25,000 for August 2015",
"web": "https://www.gov.uk/government/uploads/system/uploads/attachment_data/file/465238/Transparency_Final_File_Aug_15_New.csv"
},
{
"name": "MOD spending over £500 on a GPC and spending over £25,000, April 2010 to December 2013/January 2013 MOD GPC spend: travel and stationery",
"web": "https://www.gov.uk/government/uploads/system/uploads/attachment_data/file/182649/20130402_travel_stationery_jan13.csv"
},
{
"name": "Spend over £25,000 in HM Treasury/May 2012 return with descriptions",
"web": "https://www.gov.uk/government/uploads/system/uploads/attachment_data/file/184334/transparency_may12.csv"
},
{
"name": "Spend over £25,000 in the Rural Payments Agency/July 2012 return",
"web": "http://data.defra.gov.uk/ops/procurement/1207/RPA-Over-25k-1207.csv"
},
{
"name": "Spend over £25,000 in the National Forest Company/May 2011 return",
"web": "http://data.defra.gov.uk/ops/procurement/nfc-over-25k-1105.csv"
},
{
"name": "Spend over £25,000 in the Rural Payments Agency/August 2012 return",
"web": "http://data.defra.gov.uk/ops/procurement/1208/RPA-Over-25k-1208.csv"
},
{
"name": "Spend over £25,000 in the Department for Work and Pensions/August 2013",
"web": "https://www.gov.uk/government/uploads/system/uploads/attachment_data/file/245372/dwp-payments-aug2013.csv"
},
{
"name": "Spend over £25,000 in the Centre for Environment, Fisheries & Aquaculture Science/September 2010 return",
"web": "http://data.defra.gov.uk/ops/procurement/cefas-over-25k-1009.csv"
},
{
"name": "Spend over £25,000 in the Department for International Development/October 2010 return",
"web": "https://www.gov.uk/government/uploads/system/uploads/attachment_data/file/204689/October-2010.csv"
},
{
"name": "Spend over £25,000 in the Ministry of Justice/July 2013 return",
"web": "https://www.gov.uk/government/uploads/system/uploads/attachment_data/file/287071/moj-spend-data-jul-13.csv"
},
{
"name": "MOD spending over £500 on a GPC and spending over £25,000, April 2010 to December 2013/July 2013 MOD transparency data",
"web": "https://www.gov.uk/government/uploads/system/uploads/attachment_data/file/263156/20131112_Updated_TransparencyReport_Jul13.csv"
},
{
"name": "Spend over £25,000 in the Cabinet Office/August 2012 return with descriptions",
"web": "https://www.gov.uk/government/uploads/system/uploads/attachment_data/file/85826/CO-Transparency-data-August-2012.csv"
},
{
"name": "Spend over £25,000 in the Home Office/January 2014",
"web": "https://www.gov.uk/government/uploads/system/uploads/attachment_data/file/299023/HO_FY1314_AP10_25K_Spend_CSV.csv"
},
{
"name": "Spend over £25,000 in the Department for Work and Pensions/December 2013",
"web": "https://www.gov.uk/government/uploads/system/uploads/attachment_data/file/283314/dwp-payments-dec2013.csv"
},
{
"name": "Spend over £25,000 in the Cabinet Office/May 2013 return with descriptions",
"web": "https://www.gov.uk/government/uploads/system/uploads/attachment_data/file/210984/May-2013-25k-Transparency-Data.csv"
},
{
"name": "Spend over £25,000 in the Joint Nature Conservation Committee/November 2011 return",
"web": "http://data.defra.gov.uk/ops/procurement/jncc-over-25k-1111.csv"
},
{
"name": "Spend over £25,000 in Natural England/September 2010 return",
"web": "http://data.defra.gov.uk/ops/procurement/ne-over-25k-1009.csv"
},
{
"name": "Spend over £25,000 in the Food and Environment Research Agency/May 2012 return",
"web": "http://data.defra.gov.uk/ops/procurement/1205/FERA-Over-25k-1205.csv"
},
{
"name": "Spend over £25,000 in the Northern Ireland Office/August 2010 return ",
"web": "http://webarchive.nationalarchives.gov.uk/+/http://www.nio.gov.uk/transaction_spend_data_august_10_northern_ireland_office.xls"
},
{
"name": "Spend over £25,000 in the Department of Health/February 2016",
"web": "https://www.gov.uk/government/uploads/system/uploads/attachment_data/file/511137/February_2016__25k_data.csv"
},
{
"name": "Spend over £25,000 in the Centre for Environment, Fisheries & Aquaculture Science/July 2011 return",
"web": "http://data.defra.gov.uk/ops/procurement/1107/cefas-over-25k-1107.csv"
},
{
"name": "Spend over £25,000 in the Department for Education/Transparency Spend over £25,000: December 2010",
"web": "https://www.gov.uk/government/uploads/system/uploads/attachment_data/file/188096/dfe_20spend_20_20december_202010.csv"
},
{
"name": "Spend over £25,000 in the Department for Environment, Food and Rural Affairs/September 2012 return",
"web": "http://data.defra.gov.uk/ops/procurement/1209/Defra-Over-25k-1209.csv"
},
{
"name": "Spend over £25,000 in HM Treasury/November 2011 return with descriptions",
"web": "https://www.gov.uk/government/uploads/system/uploads/attachment_data/file/184340/transparency_nov11.csv"
},
{
"name": "MOD: spending over £25,000, January to December 2014/MOD's spending over £25,000 for July 2014",
"web": "https://www.gov.uk/government/uploads/system/uploads/attachment_data/file/380661/20140826_Transparency_July2014.csv"
},
{
"name": "Spend over £25,000 by Partnerships for Schools/PfS January 2012",
"web": "http://media.education.gov.uk/assets/files/xls/pfs%20spend%20january%202012.csv"
},
{
"name": "Spend over £25,000 in the Environment Agency/October 2010 return",
"web": "http://data.defra.gov.uk/ops/procurement/ea-over-25k-1010.csv"
},
{
"name": "Spend over £25,000 in the Department for Education/Transparency Spend over £25,000: July 2012",
"web": "https://www.gov.uk/government/uploads/system/uploads/attachment_data/file/193877/DfE_spend_04jul_2012.csv"
},
{
"name": "Spend over £25,000 in the Veterinary Medicines Directorate/January 2011 return",
"web": "http://data.defra.gov.uk/ops/procurement/vmd-over-25k-1101.csv"
},
{
"name": "Spend over £25,000 in the Ministry of Justice/July 2010 return ",
"web": "https://www.gov.uk/government/uploads/system/uploads/attachment_data/file/219996/moj-aramis-data-july-10.csv"
},
{
"name": "Spend over £25,000 by Qualifications and Curriculum Development Agency/QCDAe November 2010",
"web": "http://media.education.gov.uk/assets/files/xls/q/qcdae%20spend%20%20november%202010.csv"
},
{
"name": "Spend over £25,000 in the Centre for Environment, Fisheries & Aquaculture Science/May 2010 return",
"web": "http://data.defra.gov.uk/ops/procurement/cefas-over-25k-1005.csv"
},
{
"name": "MOD spending over £500 on a GPC and spending over £25,000, April 2010 to December 2013/December 2013 MOD GPC spend: travel and stationery",
"web": "https://www.gov.uk/government/uploads/system/uploads/attachment_data/file/286286/GPC_transparencydata_Dec2013_travel_stationery_cotnracts.csv"
},
{
"name": "Spend over £25,000 in the Environment Agency/September 2011 return",
"web": "http://data.defra.gov.uk/ops/procurement/ea-over-25k-1109.csv"
},
{
"name": "Spend over £25,000 in the Department for Work and Pensions/Aug 2014",
"web": "https://www.gov.uk/government/uploads/system/uploads/attachment_data/file/357848/dwp-payments-aug-2014.csv"
},
{
"name": "Spend over £25,000 in the Home Office/July 2011",
"web": "https://www.gov.uk/government/uploads/system/uploads/attachment_data/file/98197/july-2011.csv"
},
{
"name": "Spend over £25,000 in the Department for Business, Innovation and Skills/December 2011 return",
"web": "https://www.gov.uk/government/uploads/system/uploads/attachment_data/file/15061/spending-data-dec-2011.csv"
},
{
"name": "Spend over £25,000 in the Foreign and Commonwealth Office/January 2013 return",
"web": "https://www.gov.uk/government/uploads/system/uploads/attachment_data/file/128788/Publishable_Spend_over__25k_-_January_2013_-_CSV.csv"
},
{
"name": "Spend over £25,000 in the Environment Agency/January 2011 return",
"web": "http://data.defra.gov.uk/ops/procurement/ea-over-25k-1101.csv"
},
{
"name": "Spend over £25,000 in the Department of Health/November 2013",
"web": "https://www.gov.uk/government/uploads/system/uploads/attachment_data/file/268701/CSV__25K_Dec_Returns_Nov_Data.csv"
},
{
"name": "Spend over £25,000 in the Cabinet Office/May 2011 return with descriptions ",
"web": "https://www.gov.uk/government/uploads/system/uploads/attachment_data/file/85806/spend-transactions-with-descriptions-co-may-2011.csv"
},
{
"name": "Spend over £25,000 in the Department for Work and Pensions/July 2012 return",
"web": "https://www.gov.uk/government/uploads/system/uploads/attachment_data/file/186370/dwp-payments-july2012.csv"
},
{
"name": "Spend over £25,000 in the Royal Botanic Gardens, Kew/September 2010 return",
"web": "http://data.defra.gov.uk/ops/procurement/kew-over-25k-1009.csv"
},
{
"name": "Spend over £25,000 in Export Credits Guarantee Department/August 2011",
"web": "http://webarchive.nationalarchives.gov.uk/+/http://www.ecgd.gov.uk/assets/bispartners/ecgd/files/publications/operational-data/spend-data/spend-data-august-2011.csv"
},
{
"name": "Spend over £25,000 in the Ministry of Justice/December 2013 return",
"web": "https://www.gov.uk/government/uploads/system/uploads/attachment_data/file/307467/moj-spend-data-dec-13.csv"
},
{
"name": "MOD spending over £500 on a GPC and spending over £25,000, April 2010 to December 2013/April 2013 MOD transparency data",
"web": "https://www.gov.uk/government/uploads/system/uploads/attachment_data/file/256881/20131112-updated-mod-finance-transparency-april13.csv"
},
{
"name": "Spend over £25,000 in the Department for Environment, Food and Rural Affairs/July 2013 return",
"web": "http://data.defra.gov.uk/ops/procurement/Jul-Dec+2013/Over+25K+-+July+2013.csv"
},
{
"name": "Spend over £25,000 in the Home Office/February 2015",
"web": "https://www.gov.uk/government/uploads/system/uploads/attachment_data/file/432863/HO_FY1415_AP11_ProcSpend25K_CSV.csv"
},
{
"name": "Spend over £25k: DCMS/DCMS transactions over £25,000: March 2014",
"web": "https://www.gov.uk/government/uploads/system/uploads/attachment_data/file/315756/DCMS_spend_over_GBP25k_Mar_2014.csv"
},
{
"name": "Spend over £25,000 in the Home Office/October 2011",
"web": "https://www.gov.uk/government/uploads/system/uploads/attachment_data/file/98191/october-2011.csv"
},
{
"name": "Spend over £25,000 for Sir John Soane's Museum/July 2010",
"web": "http://www.soane.org/u/transparency/Sir-John-Soanes-Museum-Spend-Transparency-2010-07.csv"
},
{
"name": "MOD spending over £500 on a GPC and spending over £25,000, April 2010 to December 2013/July 2010 MOD Transparency data",
"web": "https://www.gov.uk/government/uploads/system/uploads/attachment_data/file/28852/Jul2010MODTransparencydatav3.csv"
},
{
"name": "Spend over £25,000 in the Department for Education/Transparency Spend over £25,000: September 2011",
"web": "https://www.gov.uk/government/uploads/system/uploads/attachment_data/file/193923/DfE_spend_06sep_2011.csv"
},
{
"name": "Spend over £25,000 in the National Forest Company/August 2011 return",
"web": "http://data.defra.gov.uk/ops/procurement/1108/nfc-over-25k-1108.csv"
},
{
"name": "Spend over £25,000 in HM Treasury/August 2013 return with description",
"web": "https://www.gov.uk/government/uploads/system/uploads/attachment_data/file/252395/hmt_spend_over_25k_august_2013.csv"
},
{
"name": "Spend over £25,000 in the Foreign and Commonwealth Office/May 2012 return",
"web": "https://www.gov.uk/government/uploads/system/uploads/attachment_data/file/245683/spend-may-12.csv"
},