-
Notifications
You must be signed in to change notification settings - Fork 0
/
gov.uk_government_organisations.html
6587 lines (5653 loc) · 486 KB
/
gov.uk_government_organisations.html
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
<!DOCTYPE html>
<!--[if lt IE 9]><html class="lte-ie8 govuk-template" lang="en"><![endif]--><!--[if gt IE 8]><!--><html class="govuk-template" lang="en">
<!--<![endif]-->
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="govuk:public-updated-at" content="2024-12-23T16:25:23+00:00">
<meta name="govuk:updated-at" content="2024-12-23T16:25:34+00:00">
<meta name="govuk:first-published-at" content="2017-03-17T15:09:33+00:00">
<meta name="govuk:ga4-strip-postcodes" content="true">
<meta name="govuk:content-id" content="fde62e52-dfb6-42ae-b336-2c4faf068101">
<meta name="govuk:schema-name" content="organisations_homepage">
<meta name="govuk:rendering-app" content="collections">
<meta name="govuk:publishing-app" content="whitehall">
<meta name="govuk:format" content="finder">
<meta charset="utf-8">
<title>Departments, agencies and public bodies - GOV.UK</title>
<script src="/assets/static/govuk_publishing_components/vendor/lux/lux-measurer-db6c8505a6690974922b8578eb1f2208d3073807f98d9a048efe9991f8dfc92d.js" async="async"></script>
<script src="/assets/static/govuk_publishing_components/rum-loader-a65b10e18ceeba3bd8a2eac507c7f2c513cdc82f35097df903fdea87f1dc2e33.js" async="async" data-lux-reporter-script="/assets/static/govuk_publishing_components/vendor/lux/lux-reporter-48c5bd366fe0d4d9ee3ab6df90274b509ac670dd5a2870e1c181546a94955937.js"></script>
<meta name="govuk:components_gem_version" content="46.4.0">
<script src="/assets/static/govuk_publishing_components/load-analytics-60684994efb1b6d77b6b1ef031e7c246738d292e7a70a187d96416b79fb46d4c.js" type="module"></script>
<link rel="stylesheet" href="/assets/static/application-0f1cc1166be2f85c6c4f98f00c9c3808c8316e034362de0784222a8bda9c414e.css" media="all">
<link rel="icon" sizes="48x48" href="/assets/static/favicon-f54816fc15997bd42cd90e4c50b896a1fc098c0c32957d4e5effbfa9f9b35e53.ico">
<link rel="icon" sizes="any" href="/assets/static/favicon-50144c9d83e59584c45b249ad9e9abfdd23689876c33f28457df13bbdd9c8688.svg" type="image/svg+xml">
<link rel="mask-icon" href="/assets/static/govuk-icon-mask-cdf4265165f8d7f9eec54aa2c1dfbb3d8b6d297c5d7919f0313e0836a5804bb6.svg" color="#0b0c0c">
<link rel="apple-touch-icon" href="/assets/static/govuk-icon-180-d2d7399ff2ba05372b6b2018cc67053e458a748cceea1a550d804dbec401e3ed.png">
<meta name="theme-color" content="#0b0c0c">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:image" content="https://www.gov.uk/assets/static/govuk-opengraph-image-03837e1cec82f217cf32514635a13c879b8c400ae3b1c207c5744411658c7635.png">
<link rel="alternate" type="application/json" title="Departments, agencies and public bodies" href="https://www.gov.uk/api/organisations">
<link rel="stylesheet" href="/assets/collections/views/_organisations-d9e21914d46cea5aead590d8a782ce67130ebb18f5309b5132c9c68f7c30f8c0.css">
<link rel="stylesheet" href="/assets/collections/govuk_publishing_components/components/_organisation-logo-c2f413b4bf950d52afbe95387453eba98cfa644e9f9a1a18389b5976111d02b6.css">
<link rel="stylesheet" href="/assets/collections/govuk_publishing_components/components/_big-number-13784bdea5ff60239f2514ff2391618c1a6501dd910d7be455ebcf3fd514e858.css">
<link rel="stylesheet" href="/assets/collections/govuk_publishing_components/components/_details-87b7b95f39d24b9029931319d72284902cc468a63a2b91b56a1dd64315c5177b.css">
<meta name="govuk:rendering-application" content="collections">
</head>
<body class="gem-c-layout-for-public govuk-template__body">
<script nonce="t1fwysY7ZCowt5eNHKonSA==">
//<![CDATA[
document.body.className += ' js-enabled' + ('noModule' in HTMLScriptElement.prototype ? ' govuk-frontend-supported' : '');
//]]>
</script>
<div id="global-cookie-message" data-module="cookie-banner" data-nosnippet="" aria-label="Cookies on GOV.UK" class="gem-c-cookie-banner govuk-clearfix govuk-cookie-banner js-banner-wrapper" role="region" hidden="hidden">
<div class="govuk-cookie-banner__message govuk-width-container">
<div class="govuk-grid-row">
<div class="govuk-grid-column-two-thirds">
<h2 class="govuk-cookie-banner__heading govuk-heading-m">Cookies on GOV.UK</h2>
<div tabindex="-1" class="govuk-cookie-banner__content gem-c-cookie-banner__confirmation">
<span class="gem-c-cookie-banner__content"><p class="govuk-body">We use some essential cookies to make this website work.</p>
<p class="govuk-body">We’d like to set additional cookies to understand how you use GOV.UK, remember your settings and improve government services.</p>
<p class="govuk-body">We also use cookies set by other sites to help us deliver content from their services.</p></span>
<p class="gem-c-cookie-banner__confirmation-message--accepted govuk-body" hidden data-ga4-cookie-banner data-module="ga4-link-tracker" data-ga4-track-links-only data-ga4-set-indexes data-ga4-link='{"event_name":"navigation","type":"cookie banner","section":"You have accepted additional cookies"}'>You have accepted additional cookies. <span class="gem-c-cookie-banner__confirmation-message">You can <a class="govuk-link" href="/help/cookies">change your cookie settings</a> at any time.</span></p>
<p class="gem-c-cookie-banner__confirmation-message--rejected govuk-body" hidden>You have rejected additional cookies. <span class="gem-c-cookie-banner__confirmation-message">You can <a class="govuk-link" href="/help/cookies">change your cookie settings</a> at any time.</span></p>
</div>
</div>
</div>
<div class="js-confirmation-buttons govuk-button-group">
<button class="gem-c-button govuk-button" type="submit" data-accept-cookies="true" data-cookie-types="all">Accept additional cookies</button>
<button class="gem-c-button govuk-button" type="submit" data-reject-cookies="true">Reject additional cookies</button>
<a class="govuk-link" href="/help/cookies">View cookies</a>
</div>
<div hidden class="js-hide-button govuk-button-group">
<button class="gem-c-cookie-banner__hide-button govuk-button" data-hide-cookie-banner="true" data-module="ga4-event-tracker" data-ga4-event='{"event_name":"select_content","type":"cookie banner","action":"closed","section":"You have accepted additional cookies"}'>
Hide this message
</button>
</div>
</div>
</div>
<a class="gem-c-skip-link govuk-skip-link govuk-!-display-none-print" data-module="govuk-skip-link" href="#content">Skip to main content</a>
<header role="banner" class="gem-c-layout-super-navigation-header" data-module="ga4-event-tracker ga4-link-tracker" data-ga4-expandable="">
<div class="gem-c-layout-super-navigation-header__container govuk-clearfix">
<div class="govuk-width-container">
<div class="gem-c-layout-super-navigation-header__header-logo">
<a class="govuk-header__link govuk-header__link--homepage" data-ga4-link='{"event_name":"navigation","type":"header menu bar","external":"false","text":"GOV.UK","section":"Logo","index_link":1,"index_section":0,"index_section_count":2,"index_total":1}' id="logo" aria-label="Go to the GOV.UK homepage" href="https://www.gov.uk">
<svg focusable="false" role="img" class="govuk-header__logotype" xmlns="http://www.w3.org/2000/svg" viewbox="0 0 148 30" height="30" width="148" aria-label="GOV.UK">
<title>GOV.UK</title>
<path d="M22.6 10.4c-1 .4-2-.1-2.4-1-.4-.9.1-2 1-2.4.9-.4 2 .1 2.4 1s-.1 2-1 2.4m-5.9 6.7c-.9.4-2-.1-2.4-1-.4-.9.1-2 1-2.4.9-.4 2 .1 2.4 1s-.1 2-1 2.4m10.8-3.7c-1 .4-2-.1-2.4-1-.4-.9.1-2 1-2.4.9-.4 2 .1 2.4 1s0 2-1 2.4m3.3 4.8c-1 .4-2-.1-2.4-1-.4-.9.1-2 1-2.4.9-.4 2 .1 2.4 1s-.1 2-1 2.4M17 4.7l2.3 1.2V2.5l-2.3.7-.2-.2.9-3h-3.4l.9 3-.2.2c-.1.1-2.3-.7-2.3-.7v3.4L15 4.7c.1.1.1.2.2.2l-1.3 4c-.1.2-.1.4-.1.6 0 1.1.8 2 1.9 2.2h.7c1-.2 1.9-1.1 1.9-2.1 0-.2 0-.4-.1-.6l-1.3-4c-.1-.2 0-.2.1-.3m-7.6 5.7c.9.4 2-.1 2.4-1 .4-.9-.1-2-1-2.4-.9-.4-2 .1-2.4 1s0 2 1 2.4m-5 3c.9.4 2-.1 2.4-1 .4-.9-.1-2-1-2.4-.9-.4-2 .1-2.4 1s.1 2 1 2.4m-3.2 4.8c.9.4 2-.1 2.4-1 .4-.9-.1-2-1-2.4-.9-.4-2 .1-2.4 1s0 2 1 2.4m14.8 11c4.4 0 8.6.3 12.3.8 1.1-4.5 2.4-7 3.7-8.8l-2.5-.9c.2 1.3.3 1.9 0 2.7-.4-.4-.8-1.1-1.1-2.3l-1.2 4c.7-.5 1.3-.8 2-.9-1.1 2.5-2.6 3.1-3.5 3-1.1-.2-1.7-1.2-1.5-2.1.3-1.2 1.5-1.5 2.1-.1 1.1-2.3-.8-3-2-2.3 1.9-1.9 2.1-3.5.6-5.6-2.1 1.6-2.1 3.2-1.2 5.5-1.2-1.4-3.2-.6-2.5 1.6.9-1.4 2.1-.5 1.9.8-.2 1.1-1.7 2.1-3.5 1.9-2.7-.2-2.9-2.1-2.9-3.6.7-.1 1.9.5 2.9 1.9l.4-4.3c-1.1 1.1-2.1 1.4-3.2 1.4.4-1.2 2.1-3 2.1-3h-5.4s1.7 1.9 2.1 3c-1.1 0-2.1-.2-3.2-1.4l.4 4.3c1-1.4 2.2-2 2.9-1.9-.1 1.5-.2 3.4-2.9 3.6-1.9.2-3.4-.8-3.5-1.9-.2-1.3 1-2.2 1.9-.8.7-2.3-1.2-3-2.5-1.6.9-2.2.9-3.9-1.2-5.5-1.5 2-1.3 3.7.6 5.6-1.2-.7-3.1 0-2 2.3.6-1.4 1.8-1.1 2.1.1.2.9-.3 1.9-1.5 2.1-.9.2-2.4-.5-3.5-3 .6 0 1.2.3 2 .9l-1.2-4c-.3 1.1-.7 1.9-1.1 2.3-.3-.8-.2-1.4 0-2.7l-2.9.9C1.3 23 2.6 25.5 3.7 30c3.7-.5 7.9-.8 12.3-.8m28.3-11.6c0 .9.1 1.7.3 2.5.2.8.6 1.5 1 2.2.5.6 1 1.1 1.7 1.5.7.4 1.5.6 2.5.6.9 0 1.7-.1 2.3-.4s1.1-.7 1.5-1.1c.4-.4.6-.9.8-1.5.1-.5.2-1 .2-1.5v-.2h-5.3v-3.2h9.4V28H55v-2.5c-.3.4-.6.8-1 1.1-.4.3-.8.6-1.3.9-.5.2-1 .4-1.6.6s-1.2.2-1.8.2c-1.5 0-2.9-.3-4-.8-1.2-.6-2.2-1.3-3-2.3-.8-1-1.4-2.1-1.8-3.4-.3-1.4-.5-2.8-.5-4.3s.2-2.9.7-4.2c.5-1.3 1.1-2.4 2-3.4.9-1 1.9-1.7 3.1-2.3 1.2-.6 2.6-.8 4.1-.8 1 0 1.9.1 2.8.3.9.2 1.7.6 2.4 1s1.4.9 1.9 1.5c.6.6 1 1.3 1.4 2l-3.7 2.1c-.2-.4-.5-.9-.8-1.2-.3-.4-.6-.7-1-1-.4-.3-.8-.5-1.3-.7-.5-.2-1.1-.2-1.7-.2-1 0-1.8.2-2.5.6-.7.4-1.3.9-1.7 1.5-.5.6-.8 1.4-1 2.2-.3.8-.4 1.9-.4 2.7zM71.5 6.8c1.5 0 2.9.3 4.2.8 1.2.6 2.3 1.3 3.1 2.3.9 1 1.5 2.1 2 3.4s.7 2.7.7 4.2-.2 2.9-.7 4.2c-.4 1.3-1.1 2.4-2 3.4-.9 1-1.9 1.7-3.1 2.3-1.2.6-2.6.8-4.2.8s-2.9-.3-4.2-.8c-1.2-.6-2.3-1.3-3.1-2.3-.9-1-1.5-2.1-2-3.4-.4-1.3-.7-2.7-.7-4.2s.2-2.9.7-4.2c.4-1.3 1.1-2.4 2-3.4.9-1 1.9-1.7 3.1-2.3 1.2-.5 2.6-.8 4.2-.8zm0 17.6c.9 0 1.7-.2 2.4-.5s1.3-.8 1.7-1.4c.5-.6.8-1.3 1.1-2.2.2-.8.4-1.7.4-2.7v-.1c0-1-.1-1.9-.4-2.7-.2-.8-.6-1.6-1.1-2.2-.5-.6-1.1-1.1-1.7-1.4-.7-.3-1.5-.5-2.4-.5s-1.7.2-2.4.5-1.3.8-1.7 1.4c-.5.6-.8 1.3-1.1 2.2-.2.8-.4 1.7-.4 2.7v.1c0 1 .1 1.9.4 2.7.2.8.6 1.6 1.1 2.2.5.6 1.1 1.1 1.7 1.4.6.3 1.4.5 2.4.5zM88.9 28 83 7h4.7l4 15.7h.1l4-15.7h4.7l-5.9 21h-5.7zm28.8-3.6c.6 0 1.2-.1 1.7-.3.5-.2 1-.4 1.4-.8.4-.4.7-.8.9-1.4.2-.6.3-1.2.3-2v-13h4.1v13.6c0 1.2-.2 2.2-.6 3.1s-1 1.7-1.8 2.4c-.7.7-1.6 1.2-2.7 1.5-1 .4-2.2.5-3.4.5-1.2 0-2.4-.2-3.4-.5-1-.4-1.9-.9-2.7-1.5-.8-.7-1.3-1.5-1.8-2.4-.4-.9-.6-2-.6-3.1V6.9h4.2v13c0 .8.1 1.4.3 2 .2.6.5 1 .9 1.4.4.4.8.6 1.4.8.6.2 1.1.3 1.8.3zm13-17.4h4.2v9.1l7.4-9.1h5.2l-7.2 8.4L148 28h-4.9l-5.5-9.4-2.7 3V28h-4.2V7zm-27.6 16.1c-1.5 0-2.7 1.2-2.7 2.7s1.2 2.7 2.7 2.7 2.7-1.2 2.7-2.7-1.2-2.7-2.7-2.7z"></path>
</svg>
</a>
</div> </div>
<nav aria-labelledby="super-navigation-menu-heading" class="gem-c-layout-super-navigation-header__content govuk-!-display-none-print" data-module="super-navigation-mega-menu">
<h2 id="super-navigation-menu-heading" class="govuk-visually-hidden">
Navigation menu
</h2>
<div class="govuk-width-container gem-c-layout-super-navigation-header__button-width-container">
<div class="gem-c-layout-super-navigation-header__button-container">
<div class="gem-c-layout-super-navigation-header__navigation-item">
<a class="gem-c-layout-super-navigation-header__navigation-item-link" href="/browse"><span class="gem-c-layout-super-navigation-header__navigation-item-link-inner"> Menu
</span></a>
<button aria-controls="super-navigation-menu" aria-expanded="false" aria-label="Show navigation menu" class="gem-c-layout-super-navigation-header__navigation-top-toggle-button" data-text-for-hide="Hide navigation menu" data-text-for-show="Show navigation menu" data-toggle-desktop-group="top" data-toggle-mobile-group="top" data-tracking-key="menu" data-ga4-event='{"event_name":"select_content","type":"header menu bar","text":"Menu","index_section":1,"index_section_count":2,"section":"Menu"}' hidden="hidden" id="super-navigation-menu-toggle" type="button">
<span class="gem-c-layout-super-navigation-header__navigation-top-toggle-button-inner">Menu</span>
</button> </div>
<div class="gem-c-layout-super-navigation-header__search-item">
<button id="super-search-menu-toggle" class="gem-c-layout-super-navigation-header__search-toggle-button" aria-controls="super-search-menu" aria-expanded="true" aria-label="Hide search menu" data-text-for-hide="Hide search menu" data-text-for-show="Show search menu" data-toggle-mobile-group="top" data-toggle-desktop-group="top" data-tracking-key="search" data-ga4-event='{"event_name":"select_content","type":"header menu bar","text":"Search","index_section":2,"index_section_count":2,"section":"Search"}' hidden="hidden" type="button">
<span class="govuk-visually-hidden">
Search GOV.UK
</span>
<svg class="gem-c-layout-super-navigation-header__search-toggle-button-link-icon" width="27" height="27" viewbox="0 0 27 27" fill="none" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false">
<circle cx="12.0161" cy="11.0161" r="8.51613" stroke="currentColor" stroke-width="3"></circle>
<line x1="17.8668" y1="17.3587" x2="26.4475" y2="25.9393" stroke="currentColor" stroke-width="3"></line>
</svg>
<span aria-hidden="true" class="gem-c-layout-super-navigation-header__navigation-top-toggle-close-icon" focusable="false">
×
</span>
</button>
<a class="gem-c-layout-super-navigation-header__search-item-link" href="/search">
<span class="govuk-visually-hidden">
Search GOV.UK
</span>
<svg class="gem-c-layout-super-navigation-header__search-item-link-icon" width="27" height="27" viewbox="0 0 27 27" fill="none" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false">
<circle cx="12.0161" cy="11.0161" r="8.51613" stroke="currentColor" stroke-width="3"></circle>
<line x1="17.8668" y1="17.3587" x2="26.4475" y2="25.9393" stroke="currentColor" stroke-width="3"></line>
</svg>
</a> </div>
</div> </div>
<div id="super-navigation-menu" hidden="hidden" class="gem-c-layout-super-navigation-header__navigation-dropdown-menu">
<div class="govuk-width-container">
<div class="govuk-grid-row gem-c-layout-super-navigation-header__navigation-items">
<div class="govuk-grid-column-two-thirds-from-desktop gem-c-layout-super-navigation-header__column--services-and-information">
<h3 class="govuk-heading-m gem-c-layout-super-navigation-header__column-header">
Services and information
</h3>
<ul class="gem-c-layout-super-navigation-header__navigation-second-items gem-c-layout-super-navigation-header__navigation-second-items--services-and-information">
<li class="gem-c-layout-super-navigation-header__dropdown-list-item">
<a class="govuk-link gem-c-layout-super-navigation-header__navigation-second-item-link" data-ga4-link='{"event_name":"navigation","type":"header menu bar","index_section":1,"index_link":1,"index_section_count":3,"index_total":16,"section":"Services and information"}' href="https://www.gov.uk/browse/benefits">Benefits</a>
</li>
<li class="gem-c-layout-super-navigation-header__dropdown-list-item">
<a class="govuk-link gem-c-layout-super-navigation-header__navigation-second-item-link" data-ga4-link='{"event_name":"navigation","type":"header menu bar","index_section":1,"index_link":2,"index_section_count":3,"index_total":16,"section":"Services and information"}' href="https://www.gov.uk/browse/births-deaths-marriages">Births, death, marriages and care</a>
</li>
<li class="gem-c-layout-super-navigation-header__dropdown-list-item">
<a class="govuk-link gem-c-layout-super-navigation-header__navigation-second-item-link" data-ga4-link='{"event_name":"navigation","type":"header menu bar","index_section":1,"index_link":3,"index_section_count":3,"index_total":16,"section":"Services and information"}' href="https://www.gov.uk/browse/business">Business and self-employed</a>
</li>
<li class="gem-c-layout-super-navigation-header__dropdown-list-item">
<a class="govuk-link gem-c-layout-super-navigation-header__navigation-second-item-link" data-ga4-link='{"event_name":"navigation","type":"header menu bar","index_section":1,"index_link":4,"index_section_count":3,"index_total":16,"section":"Services and information"}' href="https://www.gov.uk/browse/childcare-parenting">Childcare and parenting</a>
</li>
<li class="gem-c-layout-super-navigation-header__dropdown-list-item">
<a class="govuk-link gem-c-layout-super-navigation-header__navigation-second-item-link" data-ga4-link='{"event_name":"navigation","type":"header menu bar","index_section":1,"index_link":5,"index_section_count":3,"index_total":16,"section":"Services and information"}' href="https://www.gov.uk/browse/citizenship">Citizenship and living in the UK</a>
</li>
<li class="gem-c-layout-super-navigation-header__dropdown-list-item">
<a class="govuk-link gem-c-layout-super-navigation-header__navigation-second-item-link" data-ga4-link='{"event_name":"navigation","type":"header menu bar","index_section":1,"index_link":6,"index_section_count":3,"index_total":16,"section":"Services and information"}' href="https://www.gov.uk/browse/justice">Crime, justice and the law</a>
</li>
<li class="gem-c-layout-super-navigation-header__dropdown-list-item">
<a class="govuk-link gem-c-layout-super-navigation-header__navigation-second-item-link" data-ga4-link='{"event_name":"navigation","type":"header menu bar","index_section":1,"index_link":7,"index_section_count":3,"index_total":16,"section":"Services and information"}' href="https://www.gov.uk/browse/disabilities">Disabled people</a>
</li>
<li class="gem-c-layout-super-navigation-header__dropdown-list-item">
<a class="govuk-link gem-c-layout-super-navigation-header__navigation-second-item-link" data-ga4-link='{"event_name":"navigation","type":"header menu bar","index_section":1,"index_link":8,"index_section_count":3,"index_total":16,"section":"Services and information"}' href="https://www.gov.uk/browse/driving">Driving and transport</a>
</li>
<li class="gem-c-layout-super-navigation-header__dropdown-list-item">
<a class="govuk-link gem-c-layout-super-navigation-header__navigation-second-item-link" data-ga4-link='{"event_name":"navigation","type":"header menu bar","index_section":1,"index_link":9,"index_section_count":3,"index_total":16,"section":"Services and information"}' href="https://www.gov.uk/browse/education">Education and learning</a>
</li>
<li class="gem-c-layout-super-navigation-header__dropdown-list-item">
<a class="govuk-link gem-c-layout-super-navigation-header__navigation-second-item-link" data-ga4-link='{"event_name":"navigation","type":"header menu bar","index_section":1,"index_link":10,"index_section_count":3,"index_total":16,"section":"Services and information"}' href="https://www.gov.uk/browse/employing-people">Employing people</a>
</li>
<li class="gem-c-layout-super-navigation-header__dropdown-list-item">
<a class="govuk-link gem-c-layout-super-navigation-header__navigation-second-item-link" data-ga4-link='{"event_name":"navigation","type":"header menu bar","index_section":1,"index_link":11,"index_section_count":3,"index_total":16,"section":"Services and information"}' href="https://www.gov.uk/browse/environment-countryside">Environment and countryside</a>
</li>
<li class="gem-c-layout-super-navigation-header__dropdown-list-item">
<a class="govuk-link gem-c-layout-super-navigation-header__navigation-second-item-link" data-ga4-link='{"event_name":"navigation","type":"header menu bar","index_section":1,"index_link":12,"index_section_count":3,"index_total":16,"section":"Services and information"}' href="https://www.gov.uk/browse/housing-local-services">Housing and local services</a>
</li>
<li class="gem-c-layout-super-navigation-header__dropdown-list-item">
<a class="govuk-link gem-c-layout-super-navigation-header__navigation-second-item-link" data-ga4-link='{"event_name":"navigation","type":"header menu bar","index_section":1,"index_link":13,"index_section_count":3,"index_total":16,"section":"Services and information"}' href="https://www.gov.uk/browse/tax">Money and tax</a>
</li>
<li class="gem-c-layout-super-navigation-header__dropdown-list-item">
<a class="govuk-link gem-c-layout-super-navigation-header__navigation-second-item-link" data-ga4-link='{"event_name":"navigation","type":"header menu bar","index_section":1,"index_link":14,"index_section_count":3,"index_total":16,"section":"Services and information"}' href="https://www.gov.uk/browse/abroad">Passports, travel and living abroad</a>
</li>
<li class="gem-c-layout-super-navigation-header__dropdown-list-item">
<a class="govuk-link gem-c-layout-super-navigation-header__navigation-second-item-link" data-ga4-link='{"event_name":"navigation","type":"header menu bar","index_section":1,"index_link":15,"index_section_count":3,"index_total":16,"section":"Services and information"}' href="https://www.gov.uk/browse/visas-immigration">Visas and immigration</a>
</li>
<li class="gem-c-layout-super-navigation-header__dropdown-list-item">
<a class="govuk-link gem-c-layout-super-navigation-header__navigation-second-item-link" data-ga4-link='{"event_name":"navigation","type":"header menu bar","index_section":1,"index_link":16,"index_section_count":3,"index_total":16,"section":"Services and information"}' href="https://www.gov.uk/browse/working">Working, jobs and pensions</a>
</li>
</ul>
</div>
<div class="govuk-grid-column-one-third-from-desktop gem-c-layout-super-navigation-header__column--government-activity">
<h3 class="govuk-heading-m gem-c-layout-super-navigation-header__column-header">
Government activity
</h3>
<ul class="gem-c-layout-super-navigation-header__navigation-second-items gem-c-layout-super-navigation-header__navigation-second-items--government-activity">
<li class="gem-c-layout-super-navigation-header__dropdown-list-item">
<a class="govuk-link gem-c-layout-super-navigation-header__navigation-second-item-link gem-c-layout-super-navigation-header__navigation-second-item-link--with-description" data-ga4-link='{"event_name":"navigation","type":"header menu bar","index_section":2,"index_link":1,"index_section_count":3,"index_total":6,"section":"Government activity"}' href="https://www.gov.uk/government/organisations">Departments</a>
<p class="gem-c-layout-super-navigation-header__navigation-second-item-description">Departments, agencies and public bodies</p>
</li>
<li class="gem-c-layout-super-navigation-header__dropdown-list-item">
<a class="govuk-link gem-c-layout-super-navigation-header__navigation-second-item-link gem-c-layout-super-navigation-header__navigation-second-item-link--with-description" data-ga4-link='{"event_name":"navigation","type":"header menu bar","index_section":2,"index_link":2,"index_section_count":3,"index_total":6,"section":"Government activity"}' href="https://www.gov.uk/search/news-and-communications">News</a>
<p class="gem-c-layout-super-navigation-header__navigation-second-item-description">News stories, speeches, letters and notices</p>
</li>
<li class="gem-c-layout-super-navigation-header__dropdown-list-item">
<a class="govuk-link gem-c-layout-super-navigation-header__navigation-second-item-link gem-c-layout-super-navigation-header__navigation-second-item-link--with-description" data-ga4-link='{"event_name":"navigation","type":"header menu bar","index_section":2,"index_link":3,"index_section_count":3,"index_total":6,"section":"Government activity"}' href="https://www.gov.uk/search/guidance-and-regulation">Guidance and regulation</a>
<p class="gem-c-layout-super-navigation-header__navigation-second-item-description">Detailed guidance, regulations and rules</p>
</li>
<li class="gem-c-layout-super-navigation-header__dropdown-list-item">
<a class="govuk-link gem-c-layout-super-navigation-header__navigation-second-item-link gem-c-layout-super-navigation-header__navigation-second-item-link--with-description" data-ga4-link='{"event_name":"navigation","type":"header menu bar","index_section":2,"index_link":4,"index_section_count":3,"index_total":6,"section":"Government activity"}' href="https://www.gov.uk/search/research-and-statistics">Research and statistics</a>
<p class="gem-c-layout-super-navigation-header__navigation-second-item-description">Reports, analysis and official statistics</p>
</li>
<li class="gem-c-layout-super-navigation-header__dropdown-list-item">
<a class="govuk-link gem-c-layout-super-navigation-header__navigation-second-item-link gem-c-layout-super-navigation-header__navigation-second-item-link--with-description" data-ga4-link='{"event_name":"navigation","type":"header menu bar","index_section":2,"index_link":5,"index_section_count":3,"index_total":6,"section":"Government activity"}' href="https://www.gov.uk/search/policy-papers-and-consultations">Policy papers and consultations</a>
<p class="gem-c-layout-super-navigation-header__navigation-second-item-description">Consultations and strategy</p>
</li>
<li class="gem-c-layout-super-navigation-header__dropdown-list-item">
<a class="govuk-link gem-c-layout-super-navigation-header__navigation-second-item-link gem-c-layout-super-navigation-header__navigation-second-item-link--with-description" data-ga4-link='{"event_name":"navigation","type":"header menu bar","index_section":2,"index_link":6,"index_section_count":3,"index_total":6,"section":"Government activity"}' href="https://www.gov.uk/search/transparency-and-freedom-of-information-releases">Transparency</a>
<p class="gem-c-layout-super-navigation-header__navigation-second-item-description">Data, Freedom of Information releases and corporate reports</p>
</li>
</ul>
</div>
</div>
</div>
</div>
<div id="super-search-menu" hidden="hidden" class="gem-c-layout-super-navigation-header__navigation-dropdown-menu">
<div class="govuk-width-container gem-c-layout-super-navigation-header__search-container gem-c-layout-super-navigation-header__search-items">
<h3 class="govuk-visually-hidden">
Search
</h3>
<div class="govuk-grid-row">
<div class="govuk-grid-column-full">
<form class="gem-c-layout-super-navigation-header__search-form" id="search" data-module="ga4-search-tracker" data-ga4-search-type="header menu bar" data-ga4-search-url="/search/all" data-ga4-search-section="Search GOV.UK" data-ga4-search-index-section="3" data-ga4-search-index-section-count="3" action="https://www.gov.uk/search/all" method="get" role="search" aria-label="Site-wide">
<div class="gem-c-search-with-autocomplete gem-c-search-with-autocomplete--large" data-module="gem-search-with-autocomplete" data-source-url="https://www.gov.uk/api/search/autocomplete.json" data-source-key="suggestions">
<div class="gem-c-search govuk-!-display-none-print govuk-!-margin-bottom-0 gem-c-search--large gem-c-search--on-white gem-c-search--separate-label" data-module="gem-toggle-input-class-on-focus">
<label for="search-main-405a9b28" class="govuk-label govuk-label--m gem-c-layout-super-navigation-header__search-label--large-navbar">Search GOV.UK</label>
<div class="gem-c-search__item-wrapper">
<div class="js-search-input-wrapper">
<input enterkeyhint="search" class="gem-c-search__item gem-c-search__input js-class-toggle" id="search-main-405a9b28" name="keywords" title="Search" type="search" value="" autocorrect="off" autocapitalize="off">
</div>
<div class="gem-c-search__item gem-c-search__submit-wrapper">
<button class="gem-c-search__submit" type="submit" enterkeyhint="search">
Search
<svg class="gem-c-search__icon" width="27" height="27" viewbox="0 0 27 27" fill="none" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false">
<circle cx="12.0161" cy="11.0161" r="8.51613" stroke="currentColor" stroke-width="3"></circle>
<line x1="17.8668" y1="17.3587" x2="26.4475" y2="25.9393" stroke="currentColor" stroke-width="3"></line>
</svg>
</button> </div>
</div>
</div>
</div>
</form> </div>
</div>
</div>
</div> </nav>
</div>
</header>
<div class="">
<div class="gem-c-layout-for-public__blue-bar govuk-width-container"></div>
</div>
<div class="wrapper govuk-width-container" id="wrapper">
<nav data-module="ga4-link-tracker" aria-label="Breadcrumb" class="gem-c-breadcrumbs govuk-breadcrumbs govuk-breadcrumbs--collapse-on-mobile">
<ol class="govuk-breadcrumbs__list">
<li class="govuk-breadcrumbs__list-item">
<a data-ga4-link='{"event_name":"navigation","type":"breadcrumb","index_link":"1","index_total":"1"}' class="govuk-breadcrumbs__link" href="/">Home</a>
</li>
</ol>
</nav>
<main id="content" role="main" class="content" lang="en">
<div data-module="list-filter">
<div class="govuk-grid-row">
<div class="govuk-grid-column-two-thirds">
<div class="gem-c-title govuk-!-margin-top-8 govuk-!-margin-bottom-8">
<h1 class="gem-c-title__text govuk-heading-xl">
Departments, agencies and public bodies
</h1>
</div>
<form class="filter-list__form" data-filter="form" role="search" aria-label="Departments, agencies and public bodies">
<div class="govuk-form-group">
<label for="filter-organisations-list" class="gem-c-label govuk-label">Search for a department, agency or public body</label>
<input aria-controls="search_results" class="gem-c-input govuk-input" data-module="ga4-focus-loss-tracker" data-ga4-focus-loss='{"event_name":"filter","type":"filter","action":"filter","section":"Departments, agencies and public bodies"}' id="filter-organisations-list" name="search-box" spellcheck="false" type="text">
</div>
</form>
</div>
</div>
<div class="organisations" id="search_results" role="region" aria-label="List of departments, agencies and public bodies">
<div class="govuk-grid-row organisations-list__section" data-filter="block">
<div class="govuk-grid-column-one-third" data-filter="count">
</div>
<div class="govuk-grid-column-two-thirds organisations-list__without-number">
<ol data-module="ga4-link-tracker" data-ga4-track-links-only data-ga4-link='{"event_name":"navigation","type":"filter"}'>
<li class="organisations-list__item" id="prime-ministers-office-10-downing-street" data-filter="item" data-filter-terms="Prime Minister's Office 10 Downing Street Number 10">
<div class="govuk-!-margin-bottom-3">
<h3 class="gem-c-organisation-logo brand--prime-ministers-office-10-downing-street">
<a class="gem-c-organisation-logo__container gem-c-organisation-logo__link gem-c-organisation-logo__crest gem-c-organisation-logo__crest--eo brand__border-color" href="/government/organisations/prime-ministers-office-10-downing-street">
<span class="gem-c-organisation-logo__name">Prime Minister's Office
10 Downing Street</span>
</a>
</h3>
</div>
</li> </ol>
</div>
</div>
<div class="govuk-grid-row organisations-list__section" data-filter="block">
<div class="govuk-grid-column-one-third" data-filter="count">
<h2 id="ministerial_departments" class="gem-c-heading gem-c-heading--font-size-27">
Ministerial departments
</h2>
<p class="govuk-visually-hidden">There are <span class="js-accessible-item-count">24</span> Ministerial departments</p>
<div class="gem-c-big-number govuk-!-margin-bottom-3" aria-hidden="true">
<span class="gem-c-big-number__value" data-item-count="true">
24
</span>
</div>
</div>
<div class="govuk-grid-column-two-thirds ">
<ol data-module="ga4-link-tracker" data-ga4-track-links-only data-ga4-link='{"event_name":"navigation","type":"filter"}'>
<li class="organisations-list__item" id="attorney-generals-office" data-filter="item" data-filter-terms="Attorney General's Office AGO">
<div class="govuk-!-margin-bottom-3">
<h3 class="gem-c-organisation-logo brand--attorney-generals-office">
<a class="gem-c-organisation-logo__container gem-c-organisation-logo__link gem-c-organisation-logo__crest gem-c-organisation-logo__crest--single-identity brand__border-color" href="/government/organisations/attorney-generals-office">
<span class="gem-c-organisation-logo__name">Attorney
General's
Office</span>
</a>
</h3>
</div>
<div class="govuk-!-margin-bottom-3">
<details data-module="ga4-event-tracker" data-ga4-event="{"event_name":"select_content","type":"detail","text":"Works with 4 agencies and public bodies","section":"Attorney General's Office","index_section":1,"index_section_count":46}" class="gem-c-details govuk-details govuk-!-margin-bottom-3">
<summary class="govuk-details__summary" aria-label="Attorney General's Office Works with 4 agencies and public bodies">
<span class="govuk-details__summary-text" data-ga4-expandable>
Works with 4 agencies and public bodies
</span>
</summary> <div class="govuk-details__text">
<div id="toggle_attorney-general-s-office">
<h4 class="gem-c-heading govuk-heading-s">
Non-ministerial department
</h4>
<ul class="govuk-list govuk-list--bullet govuk-!-margin-bottom-3">
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/crown-prosecution-service">Crown Prosecution Service</a>
</li>
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/government-legal-department">Government Legal Department</a>
</li>
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/serious-fraud-office">Serious Fraud Office</a>
</li>
</ul>
<h4 class="gem-c-heading govuk-heading-s">
Other
</h4>
<ul class="govuk-list govuk-list--bullet govuk-!-margin-bottom-3">
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/hm-crown-prosecution-service-inspectorate">HM Crown Prosecution Service Inspectorate</a>
</li>
</ul>
</div>
</div>
</details> </div>
</li> <li class="organisations-list__item" id="cabinet-office" data-filter="item" data-filter-terms="Cabinet Office ">
<div class="govuk-!-margin-bottom-3">
<h3 class="gem-c-organisation-logo brand--cabinet-office">
<a class="gem-c-organisation-logo__container gem-c-organisation-logo__link gem-c-organisation-logo__crest gem-c-organisation-logo__crest--single-identity brand__border-color" href="/government/organisations/cabinet-office">
<span class="gem-c-organisation-logo__name">Cabinet Office</span>
</a>
</h3>
</div>
<div class="govuk-!-margin-bottom-3">
<details data-module="ga4-event-tracker" data-ga4-event='{"event_name":"select_content","type":"detail","text":"Works with 28 agencies and public bodies","section":"Cabinet Office","index_section":2,"index_section_count":46}' class="gem-c-details govuk-details govuk-!-margin-bottom-3">
<summary class="govuk-details__summary" aria-label="Cabinet Office Works with 28 agencies and public bodies">
<span class="govuk-details__summary-text" data-ga4-expandable>
Works with 28 agencies and public bodies
</span>
</summary> <div class="govuk-details__text">
<div id="toggle_cabinet-office">
<h4 class="gem-c-heading govuk-heading-s">
Executive office
</h4>
<ul class="govuk-list govuk-list--bullet govuk-!-margin-bottom-3">
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/prime-ministers-office-10-downing-street">Prime Minister's Office, 10 Downing Street</a>
</li>
</ul>
<h4 class="gem-c-heading govuk-heading-s">
Ministerial department
</h4>
<ul class="govuk-list govuk-list--bullet govuk-!-margin-bottom-3">
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/the-office-of-the-leader-of-the-house-of-commons">Office of the Leader of the House of Commons</a>
</li>
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/office-of-the-leader-of-the-house-of-lords">Office of the Leader of the House of Lords</a>
</li>
</ul>
<h4 class="gem-c-heading govuk-heading-s">
Non-ministerial department
</h4>
<ul class="govuk-list govuk-list--bullet govuk-!-margin-bottom-3">
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/uk-statistics-authority">UK Statistics Authority</a>
</li>
</ul>
<h4 class="gem-c-heading govuk-heading-s">
Executive agency
</h4>
<ul class="govuk-list govuk-list--bullet govuk-!-margin-bottom-3">
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/crown-commercial-service">Crown Commercial Service</a>
</li>
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/government-property-agency">Government Property Agency</a>
</li>
</ul>
<h4 class="gem-c-heading govuk-heading-s">
Executive non-departmental public body
</h4>
<ul class="govuk-list govuk-list--bullet govuk-!-margin-bottom-3">
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/civil-service-commission">Civil Service Commission</a>
</li>
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/corporate-officers-of-the-house-of-commons">Corporate Officers of the House of Commons</a>
</li>
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/corporate-officers-of-the-house-of-lords">Corporate Officers of the House of Lords</a>
</li>
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/equality-and-human-rights-commission">Equality and Human Rights Commission</a>
</li>
</ul>
<h4 class="gem-c-heading govuk-heading-s">
Advisory non-departmental public body
</h4>
<ul class="govuk-list govuk-list--bullet govuk-!-margin-bottom-3">
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/advisory-committee-on-business-appointments">Advisory Committee on Business Appointments</a>
</li>
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/the-committee-on-standards-in-public-life">Committee on Standards in Public Life</a>
</li>
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/house-of-lords-appointments-commission">House of Lords Appointments Commission</a>
</li>
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/security-vetting-appeals-panel">Security Vetting Appeals Panel</a>
</li>
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/review-body-on-senior-salaries">Senior Salaries Review Body </a>
</li>
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/social-mobility-commission">Social Mobility Commission</a>
</li>
</ul>
<h4 class="gem-c-heading govuk-heading-s">
Ad-hoc advisory group
</h4>
<ul class="govuk-list govuk-list--bullet govuk-!-margin-bottom-3">
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/the-queen-elizabeth-memorial-committee">The Queen Elizabeth Memorial Committee</a>
</li>
</ul>
<h4 class="gem-c-heading govuk-heading-s">
Other
</h4>
<ul class="govuk-list govuk-list--bullet govuk-!-margin-bottom-3">
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/commissioner-for-public-appointments">Commissioner for Public Appointments</a>
</li>
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/evaluation-task-force">Evaluation Task Force</a>
</li>
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/government-estates-management">Government Estates Management</a>
</li>
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/independent-adviser-on-ministers-interests">Independent Adviser on Ministerial Standards</a>
</li>
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/infrastructure-and-projects-authority">Infrastructure and Projects Authority</a>
</li>
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/office-for-equality-and-opportunity">Office for Equality and Opportunity</a>
</li>
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/office-of-the-registrar-of-consultant-lobbyists">Office of the Registrar of Consultant Lobbyists</a>
</li>
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/privy-council-office">Privy Council Office</a>
</li>
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/uk-commission-on-covid-commemoration">UK Commission on Covid Commemoration</a>
</li>
</ul>
<h4 class="gem-c-heading govuk-heading-s">
Civil service
</h4>
<ul class="govuk-list govuk-list--bullet govuk-!-margin-bottom-3">
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/civil-service">Civil Service</a>
</li>
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/uk-resilience-academy">UK Resilience Academy</a>
</li>
</ul>
</div>
</div>
</details> </div>
</li> <li class="organisations-list__item" id="department-for-business-and-trade" data-filter="item" data-filter-terms="Department for Business & Trade DBT">
<div class="govuk-!-margin-bottom-3">
<h3 class="gem-c-organisation-logo brand--department-for-business-trade">
<a class="gem-c-organisation-logo__container gem-c-organisation-logo__link gem-c-organisation-logo__crest gem-c-organisation-logo__crest--dbt brand__border-color" href="/government/organisations/department-for-business-and-trade">
<span class="gem-c-organisation-logo__name">Department for
Business & Trade</span>
</a>
</h3>
</div>
<div class="govuk-!-margin-bottom-3">
<details data-module="ga4-event-tracker" data-ga4-event='{"event_name":"select_content","type":"detail","text":"Works with 20 agencies and public bodies","section":"Department for Business and Trade","index_section":3,"index_section_count":46}' class="gem-c-details govuk-details govuk-!-margin-bottom-3">
<summary class="govuk-details__summary" aria-label="Department for Business and Trade Works with 20 agencies and public bodies">
<span class="govuk-details__summary-text" data-ga4-expandable>
Works with 20 agencies and public bodies
</span>
</summary> <div class="govuk-details__text">
<div id="toggle_department-for-business-and-trade">
<h4 class="gem-c-heading govuk-heading-s">
Non-ministerial department
</h4>
<ul class="govuk-list govuk-list--bullet govuk-!-margin-bottom-3">
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/competition-and-markets-authority">Competition and Markets Authority</a>
</li>
</ul>
<h4 class="gem-c-heading govuk-heading-s">
Executive agency
</h4>
<ul class="govuk-list govuk-list--bullet govuk-!-margin-bottom-3">
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/companies-house">Companies House</a>
</li>
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/insolvency-service">The Insolvency Service</a>
</li>
</ul>
<h4 class="gem-c-heading govuk-heading-s">
Executive non-departmental public body
</h4>
<ul class="govuk-list govuk-list--bullet govuk-!-margin-bottom-3">
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/acas">Advisory, Conciliation and Arbitration Service</a>
</li>
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/british-hallmarking-council">British Hallmarking Council</a>
</li>
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/competition-service">Competition Service</a>
</li>
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/financial-reporting-council">Financial Reporting Council</a>
</li>
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/small-business-commissioner">Small Business Commissioner</a>
</li>
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/trade-remedies-authority">Trade Remedies Authority</a>
</li>
</ul>
<h4 class="gem-c-heading govuk-heading-s">
Advisory non-departmental public body
</h4>
<ul class="govuk-list govuk-list--bullet govuk-!-margin-bottom-3">
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/low-pay-commission">Low Pay Commission</a>
</li>
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/regulatory-policy-committee">Regulatory Policy Committee</a>
</li>
</ul>
<h4 class="gem-c-heading govuk-heading-s">
Tribunal
</h4>
<ul class="govuk-list govuk-list--bullet govuk-!-margin-bottom-3">
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/central-arbitration-committee">Central Arbitration Committee</a>
</li>
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/competition-appeal-tribunal">Competition Appeal Tribunal</a>
</li>
</ul>
<h4 class="gem-c-heading govuk-heading-s">
Public corporation
</h4>
<ul class="govuk-list govuk-list--bullet govuk-!-margin-bottom-3">
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/post-office">Post Office</a>
</li>
</ul>
<h4 class="gem-c-heading govuk-heading-s">
Other
</h4>
<ul class="govuk-list govuk-list--bullet govuk-!-margin-bottom-3">
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/british-business-bank">British Business Bank</a>
</li>
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/certification-officer">Certification Officer</a>
</li>
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/groceries-code-adjudicator">Groceries Code Adjudicator</a>
</li>
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/industrial-strategy-advisory-council">Industrial Strategy Advisory Council</a>
</li>
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/office-of-the-regulator-of-community-interest-companies">Office of the Regulator of Community Interest Companies</a>
</li>
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/pubs-code-adjudicator">Pubs Code Adjudicator</a>
</li>
</ul>
</div>
</div>
</details> </div>
</li> <li class="organisations-list__item" id="department-for-culture-media-and-sport" data-filter="item" data-filter-terms="Department for Culture, Media & Sport DCMS">
<div class="govuk-!-margin-bottom-3">
<h3 class="gem-c-organisation-logo brand--department-for-culture-media-sport">
<a class="gem-c-organisation-logo__container gem-c-organisation-logo__link gem-c-organisation-logo__crest gem-c-organisation-logo__crest--single-identity brand__border-color" href="/government/organisations/department-for-culture-media-and-sport">
<span class="gem-c-organisation-logo__name">Department
for Culture,
Media & Sport</span>
</a>
</h3>
</div>
<div class="govuk-!-margin-bottom-3">
<details data-module="ga4-event-tracker" data-ga4-event='{"event_name":"select_content","type":"detail","text":"Works with 42 agencies and public bodies","section":"Department for Culture, Media and Sport","index_section":4,"index_section_count":46}' class="gem-c-details govuk-details govuk-!-margin-bottom-3">
<summary class="govuk-details__summary" aria-label="Department for Culture, Media and Sport Works with 42 agencies and public bodies">
<span class="govuk-details__summary-text" data-ga4-expandable>
Works with 42 agencies and public bodies
</span>
</summary> <div class="govuk-details__text">
<div id="toggle_department-for-culture-media-and-sport">
<h4 class="gem-c-heading govuk-heading-s">
Non-ministerial department
</h4>
<ul class="govuk-list govuk-list--bullet govuk-!-margin-bottom-3">
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/charity-commission">The Charity Commission</a>
</li>
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/the-national-archives">The National Archives</a>
</li>
</ul>
<h4 class="gem-c-heading govuk-heading-s">
Executive non-departmental public body
</h4>
<ul class="govuk-list govuk-list--bullet govuk-!-margin-bottom-3">
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/arts-council-england">Arts Council England</a>
</li>
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/british-film-institute">British Film Institute</a>
</li>
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/british-library">British Library</a>
</li>
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/british-museum">British Museum</a>
</li>
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/gambling-commission">Gambling Commission</a>
</li>
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/historic-england">Historic England</a>
</li>
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/horniman-museum">Horniman Public Museum and Public Park Trust</a>
</li>
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/horserace-betting-levy-board">Horserace Betting Levy Board</a>
</li>
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/imperial-war-museum">Imperial War Museum</a>
</li>
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/geffrye-museum">Museum of the Home</a>
</li>
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/national-gallery">National Gallery</a>
</li>
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/national-heritage-memorial-fund">National Heritage Memorial Fund</a>
</li>
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/the-national-lottery-community-fund">The National Lottery Community Fund</a>
</li>
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/national-museums-liverpool">National Museums Liverpool</a>
</li>
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/national-portrait-gallery">National Portrait Gallery</a>
</li>
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/natural-history-museum">Natural History Museum</a>
</li>
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/royal-armouries-museum">Royal Armouries Museum</a>
</li>
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/royal-museums-greenwich">Royal Museums Greenwich</a>
</li>
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/science-museum-group">Science Museum Group</a>
</li>
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/sir-john-soane-s-museum">Sir John Soane's Museum</a>
</li>
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/sport-england">Sport England</a>
</li>
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/sports-grounds-safety-authority">Sports Grounds Safety Authority</a>
</li>
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/tate">Tate</a>
</li>
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/uk-anti-doping">UK Anti-Doping</a>
</li>
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/uk-sport">UK Sport</a>
</li>
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/victoria-and-albert-museum">Victoria and Albert Museum</a>
</li>
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/visitbritain">VisitBritain</a>
</li>
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/visitengland">VisitEngland</a>
</li>
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/wallace-collection">Wallace Collection</a>
</li>
</ul>
<h4 class="gem-c-heading govuk-heading-s">
Advisory non-departmental public body
</h4>
<ul class="govuk-list govuk-list--bullet govuk-!-margin-bottom-3">
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/the-advisory-council-on-national-records-and-archives">The Advisory Council on National Records and Archives</a>
</li>
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/the-reviewing-committee-on-the-export-of-works-of-art-and-objects-of-cultural-interest">The Reviewing Committee on the Export of Works of Art and Objects of Cultural Interest</a>
</li>
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/the-theatres-trust">The Theatres Trust</a>
</li>
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/treasure-valuation-committee">Treasure Valuation Committee</a>
</li>
</ul>
<h4 class="gem-c-heading govuk-heading-s">
Public corporation
</h4>
<ul class="govuk-list govuk-list--bullet govuk-!-margin-bottom-3">
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/bbc">BBC</a>
</li>
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/channel-4">Channel 4</a>
</li>
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/historic-royal-palaces">Historic Royal Palaces</a>
</li>
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/royal-parks">Royal Parks</a>
</li>
</ul>
<h4 class="gem-c-heading govuk-heading-s">
Other
</h4>
<ul class="govuk-list govuk-list--bullet govuk-!-margin-bottom-3">
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/churches-conservation-trust">Churches Conservation Trust</a>
</li>
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/national-citizen-service">National Citizen Service</a>
</li>
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/s4c">S4C</a>
</li>
</ul>
</div>
</div>
</details> </div>
</li> <li class="organisations-list__item" id="department-for-education" data-filter="item" data-filter-terms="Department for Education DfE">
<div class="govuk-!-margin-bottom-3">
<h3 class="gem-c-organisation-logo brand--department-for-education">
<a class="gem-c-organisation-logo__container gem-c-organisation-logo__link gem-c-organisation-logo__crest gem-c-organisation-logo__crest--single-identity brand__border-color" href="/government/organisations/department-for-education">
<span class="gem-c-organisation-logo__name">Department
for Education</span>
</a>
</h3>
</div>
<div class="govuk-!-margin-bottom-3">
<details data-module="ga4-event-tracker" data-ga4-event='{"event_name":"select_content","type":"detail","text":"Works with 18 agencies and public bodies","section":"Department for Education","index_section":5,"index_section_count":46}' class="gem-c-details govuk-details govuk-!-margin-bottom-3">
<summary class="govuk-details__summary" aria-label="Department for Education Works with 18 agencies and public bodies">
<span class="govuk-details__summary-text" data-ga4-expandable>
Works with 18 agencies and public bodies
</span>
</summary> <div class="govuk-details__text">
<div id="toggle_department-for-education">
<h4 class="gem-c-heading govuk-heading-s">
Non-ministerial department
</h4>
<ul class="govuk-list govuk-list--bullet govuk-!-margin-bottom-3">
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/ofqual">Ofqual</a>
</li>
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/ofsted">Ofsted</a>
</li>
</ul>
<h4 class="gem-c-heading govuk-heading-s">
Executive agency
</h4>
<ul class="govuk-list govuk-list--bullet govuk-!-margin-bottom-3">
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/education-and-skills-funding-agency">Education and Skills Funding Agency</a>
</li>
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/standards-and-testing-agency">Standards and Testing Agency</a>
</li>
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/teaching-regulation-agency">Teaching Regulation Agency</a>
</li>
</ul>
<h4 class="gem-c-heading govuk-heading-s">
Executive non-departmental public body
</h4>
<ul class="govuk-list govuk-list--bullet govuk-!-margin-bottom-3">
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/construction-industry-training-board">Construction Industry Training Board</a>
</li>
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/engineering-construction-industry-training-board">Engineering Construction Industry Training Board</a>
</li>
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/institute-for-apprenticeships-and-technical-education">Institute for Apprenticeships and Technical Education</a>
</li>
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/located">LocatED</a>
</li>
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/oak-national-academy">Oak National Academy</a>
</li>
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/office-for-students">Office for Students</a>
</li>
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/office-of-the-children-s-commissioner">Office of the Children's Commissioner</a>
</li>
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/social-work-england">Social Work England</a>
</li>
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/student-loans-company">Student Loans Company</a>
</li>
</ul>
<h4 class="gem-c-heading govuk-heading-s">
Advisory non-departmental public body
</h4>
<ul class="govuk-list govuk-list--bullet govuk-!-margin-bottom-3">
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/school-teachers-review-body">School Teachers' Review Body</a>
</li>
</ul>
<h4 class="gem-c-heading govuk-heading-s">
Other
</h4>
<ul class="govuk-list govuk-list--bullet govuk-!-margin-bottom-3">
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/child-safeguarding-practice-review-panel">Child Safeguarding Practice Review Panel</a>
</li>
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/independent-review-mechanism">Independent Review Mechanism</a>
</li>
<li class="govuk-!-margin-bottom-1">
<a class="govuk-link" href="/government/organisations/office-of-the-schools-adjudicator">Office of the Schools Adjudicator</a>
</li>
</ul>
</div>
</div>
</details> </div>
</li> <li class="organisations-list__item" id="department-for-energy-security-and-net-zero" data-filter="item" data-filter-terms="Department for Energy Security & Net Zero DESNZ">
<div class="govuk-!-margin-bottom-3">
<h3 class="gem-c-organisation-logo brand--department-for-business-innovation-skills">
<a class="gem-c-organisation-logo__container gem-c-organisation-logo__link gem-c-organisation-logo__crest gem-c-organisation-logo__crest--single-identity brand__border-color" href="/government/organisations/department-for-energy-security-and-net-zero">
<span class="gem-c-organisation-logo__name">Department for
Energy Security
& Net Zero</span>
</a>
</h3>
</div>