-
Notifications
You must be signed in to change notification settings - Fork 0
/
Ofcom confirms our plan of work for 2022_23 - Ofcom.html
1251 lines (1149 loc) · 86.1 KB
/
Ofcom confirms our plan of work for 2022_23 - Ofcom.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>
<html lang="en">
<head>
<title>Ofcom confirms our plan of work for 2022/23 - Ofcom</title>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<meta name="MetaTitle" content="Ofcom confirms our plan of work for 2022/23" />
<meta name="MetaDescription"
content="Ofcom has today published our plan of work for 2022/23, detailing our priorities for the next financial year." />
<meta name="MetaKeywords" content="plan of work,priorities,networks,online safety,fairness for customers" />
<meta name="MetaAuthor" />
<meta name="MetaCopyright" />
<meta name="MetaRobots" content="index,follow" />
<meta property="article:published_time" content="3/25/2022 9:56:11 AM" />
<meta property="og:url"
content="https://www-pp.ofcom.org.uk/topic-and-subtopics/about-ofcom/annual-reports-and-plans/news-and-updates/confirming-our-2022-23-plan-of-work/" />
<meta property="og:type" content="website">
<meta property="og:title" content="Ofcom confirms our plan of work for 2022/23" />
<meta property="og:description"
content="Ofcom has today published our plan of work for 2022/23, detailing our priorities for the next financial year." />
<meta property="og:image" content="https://www-pp.ofcom.org.uk/globalassets/ofcom-mobile-street.jpg" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="675" />
<meta property="og:image:alt" content="Close-up of hands on a smartphone" />
<meta property="og:locale" content="en" />
<meta property="og:site_name" content="www-pp.ofcom.org.uk" />
<link
href="https://www-pp.ofcom.org.uk/topic-and-subtopics/about-ofcom/annual-reports-and-plans/news-and-updates/confirming-our-2022-23-plan-of-work/"
rel="canonical" />
<link
href="https://www-pp.ofcom.org.uk/topic-and-subtopics/about-ofcom/annual-reports-and-plans/news-and-updates/confirming-our-2022-23-plan-of-work/"
hreflang="en" rel="alternate" />
<link
href="https://www-pp.ofcom.org.uk/cy/topic-and-subtopics/about-ofcom/annual-reports-and-plans/news-and-updates/confirming-our-2022-23-plan-of-work/"
hreflang="cy" rel="alternate" />
<link rel="icon" href="/assets/img/favicon.gif" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/css/all.min.css"
integrity="sha512-xh6O/CkQoPOWDdYTDqeRdPCVd1SpvCA9XXcUnZS2FmJNp1coAFzvtCN9BmamE+4aHK8yyUHUSCcJHgXloTyT2A=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper@9/swiper-bundle.min.css" />
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous">
<link href="css/main-1.css" rel="stylesheet">
<script src="js/jquery-3.7.1.min.js"></script>
<script type="text/javascript" src="js/main.js"></script>
<script nonce="Iz06SsFn7S+ri7q+p7RgW7MRndGOvCpBTT4S5bMQ+qw=">
!function (T, l, y) { var S = T.location, k = "script", D = "instrumentationKey", C = "ingestionendpoint", I = "disableExceptionTracking", E = "ai.device.", b = "toLowerCase", w = "crossOrigin", N = "POST", e = "appInsightsSDK", t = y.name || "appInsights"; (y.name || T[e]) && (T[e] = t); var n = T[t] || function (d) { var g = !1, f = !1, m = { initialize: !0, queue: [], sv: "5", version: 2, config: d }; function v(e, t) { var n = {}, a = "Browser"; return n[E + "id"] = a[b](), n[E + "type"] = a, n["ai.operation.name"] = S && S.pathname || "_unknown_", n["ai.internal.sdkVersion"] = "javascript:snippet_" + (m.sv || m.version), { time: function () { var e = new Date; function t(e) { var t = "" + e; return 1 === t.length && (t = "0" + t), t } return e.getUTCFullYear() + "-" + t(1 + e.getUTCMonth()) + "-" + t(e.getUTCDate()) + "T" + t(e.getUTCHours()) + ":" + t(e.getUTCMinutes()) + ":" + t(e.getUTCSeconds()) + "." + ((e.getUTCMilliseconds() / 1e3).toFixed(3) + "").slice(2, 5) + "Z" }(), iKey: e, name: "Microsoft.ApplicationInsights." + e.replace(/-/g, "") + "." + t, sampleRate: 100, tags: n, data: { baseData: { ver: 2 } } } } var h = d.url || y.src; if (h) { function a(e) { var t, n, a, i, r, o, s, c, u, p, l; g = !0, m.queue = [], f || (f = !0, t = h, s = function () { var e = {}, t = d.connectionString; if (t) for (var n = t.split(";"), a = 0; a < n.length; a++) { var i = n[a].split("="); 2 === i.length && (e[i[0][b]()] = i[1]) } if (!e[C]) { var r = e.endpointsuffix, o = r ? e.location : null; e[C] = "https://" + (o ? o + "." : "") + "dc." + (r || "services.visualstudio.com") } return e }(), c = s[D] || d[D] || "", u = s[C], p = u ? u + "/v2/track" : d.endpointUrl, (l = []).push((n = "SDK LOAD Failure: Failed to load Application Insights SDK script (See stack for details)", a = t, i = p, (o = (r = v(c, "Exception")).data).baseType = "ExceptionData", o.baseData.exceptions = [{ typeName: "SDKLoadFailed", message: n.replace(/\./g, "-"), hasFullStack: !1, stack: n + "\nSnippet failed to load [" + a + "] -- Telemetry is disabled\nHelp Link: https://go.microsoft.com/fwlink/?linkid=2128109\nHost: " + (S && S.pathname || "_unknown_") + "\nEndpoint: " + i, parsedStack: [] }], r)), l.push(function (e, t, n, a) { var i = v(c, "Message"), r = i.data; r.baseType = "MessageData"; var o = r.baseData; return o.message = 'AI (Internal): 99 message:"' + ("SDK LOAD Failure: Failed to load Application Insights SDK script (See stack for details) (" + n + ")").replace(/\"/g, "") + '"', o.properties = { endpoint: a }, i }(0, 0, t, p)), function (e, t) { if (JSON) { var n = T.fetch; if (n && !y.useXhr) n(t, { method: N, body: JSON.stringify(e), mode: "cors" }); else if (XMLHttpRequest) { var a = new XMLHttpRequest; a.open(N, t), a.setRequestHeader("Content-type", "application/json"), a.send(JSON.stringify(e)) } } }(l, p)) } function i(e, t) { f || setTimeout(function () { !t && m.core || a() }, 500) } var e = function () { var n = l.createElement(k); n.src = h; var e = y[w]; return !e && "" !== e || "undefined" == n[w] || (n[w] = e), n.onload = i, n.onerror = a, n.onreadystatechange = function (e, t) { "loaded" !== n.readyState && "complete" !== n.readyState || i(0, t) }, n }(); y.ld < 0 ? l.getElementsByTagName("head")[0].appendChild(e) : setTimeout(function () { l.getElementsByTagName(k)[0].parentNode.appendChild(e) }, y.ld || 0) } try { m.cookie = l.cookie } catch (p) { } function t(e) { for (; e.length;)!function (t) { m[t] = function () { var e = arguments; g || m.queue.push(function () { m[t].apply(m, e) }) } }(e.pop()) } var n = "track", r = "TrackPage", o = "TrackEvent"; t([n + "Event", n + "PageView", n + "Exception", n + "Trace", n + "DependencyData", n + "Metric", n + "PageViewPerformance", "start" + r, "stop" + r, "start" + o, "stop" + o, "addTelemetryInitializer", "setAuthenticatedUserContext", "clearAuthenticatedUserContext", "flush"]), m.SeverityLevel = { Verbose: 0, Information: 1, Warning: 2, Error: 3, Critical: 4 }; var s = (d.extensionConfig || {}).ApplicationInsightsAnalytics || {}; if (!0 !== d[I] && !0 !== s[I]) { var c = "onerror"; t(["_" + c]); var u = T[c]; T[c] = function (e, t, n, a, i) { var r = u && u(e, t, n, a, i); return !0 !== r && m["_" + c]({ message: e, url: t, lineNumber: n, columnNumber: a, error: i }), r }, d.autoExceptionInstrumented = !0 } return m }(y.cfg); function a() { y.onInit && y.onInit(n) } (T[t] = n).queue && 0 === n.queue.length ? (n.queue.push(a), n.trackPageView({})) : a() }(window, document, { src: "https://js.monitor.azure.com/scripts/b/ai.2.gbl.min.js", crossOrigin: "anonymous", cfg: { instrumentationKey: '179fcd80-2a67-4290-af6f-e0b0cf66abff' } });
</script>
<script nonce="Iz06SsFn7S+ri7q+p7RgW7MRndGOvCpBTT4S5bMQ+qw=">
_iaq = [['client', 'fc8569325652409a8bb29fefc796cbdf'], ['track', 'consume']]; !function (d, s) { var ia = d.createElement(s); ia.async = 1, s = d.getElementsByTagName(s)[0], ia.src = '//s.emea01.idio.episerver.net/ia.js', s.parentNode.insertBefore(ia, s) }(document, 'script');
</script>
</head>
<body>
<a class="skip-to-content-link" href="#skipToContent" aria-label="Skip to content" role="button" tabindex="0">Skip
to content</a>
<header class="header fixed-top d-flex align-items-center">
<div class="container-fluid d-flex align-items-center justify-content-between">
<div class="logo me-auto me-lg-0">
<a href="index.html"> <img class="brand-logo" src="assets/img/logo2023_2.svg" alt="OfCom Logo" /></a>
</div>
<div class="header-item ms-auto">
<div class="menu-overlay">
</div>
<nav class="menu">
<div class="mobile-menu-head">
<div class="go-back"><i class="fa fa-angle-left"></i></div>
<div class="current-menu-title"></div>
<div class="mobile-menu-close">×</div>
</div>
<ul class="menu-main">
<li class="block menu-item-has-children topicmenublock ">
<a href="#">Topics <i class="fa fa-angle-down"></i></a>
<div class="sub-menu mega-menu mega-menu-column-4">
<div class="list-item">
<div class="title d-flex justify-content-between align-items-center">
<a href="/topic-and-subtopics/about-ofcom/" class="sub-menu-link">
<div
class="sub-topic-text d-flex justify-content-between align-items-start align-items-center">
<span> About Ofcom </span>
<svg class="svg-arrow" width="25" height="25" viewBox="0 0 40 40"
xmlns="http://www.w3.org/2000/svg">
<circle cx="20.2449" cy="19.7964" r="19"></circle>
<path d="M22.6774 12.2964L30.8422 20.2964L22.6774 28.2964"
stroke-width="2" stroke-linejoin="bevel"></path>
<path d="M30.6472 20.2964L9.64722 20.2964" stroke-width="2"
stroke-linejoin="bevel"></path>
</svg>
</div>
</a>
</div>
<ul>
<li>
<span class="detail-text">
Ofcom is the regulator for the communications services that we use and
rely on each day.
</span>
</li>
</ul>
</div>
<div class="list-item">
<div class="title d-flex justify-content-between align-items-center">
<a href="/topic-and-subtopics/internet-based-services/" class="sub-menu-link">
<div
class="sub-topic-text d-flex justify-content-between align-items-start align-items-center">
<span> Internet-based services </span>
<svg class="svg-arrow" width="25" height="25" viewBox="0 0 40 40"
xmlns="http://www.w3.org/2000/svg">
<circle cx="20.2449" cy="19.7964" r="19"></circle>
<path d="M22.6774 12.2964L30.8422 20.2964L22.6774 28.2964"
stroke-width="2" stroke-linejoin="bevel"></path>
<path d="M30.6472 20.2964L9.64722 20.2964" stroke-width="2"
stroke-linejoin="bevel"></path>
</svg>
</div>
</a>
</div>
<ul>
<li>
<span class="detail-text">
As people communicate seamlessly online and offline, we now need to
invest our efforts into making digital communications work for everyone.
</span>
</li>
</ul>
</div>
<div class="list-item">
<div class="title d-flex justify-content-between align-items-center">
<a href="/topic-and-subtopics/media-use-and-attitudes/" class="sub-menu-link">
<div
class="sub-topic-text d-flex justify-content-between align-items-start align-items-center">
<span> Media use and attitudes </span>
<svg class="svg-arrow" width="25" height="25" viewBox="0 0 40 40"
xmlns="http://www.w3.org/2000/svg">
<circle cx="20.2449" cy="19.7964" r="19"></circle>
<path d="M22.6774 12.2964L30.8422 20.2964L22.6774 28.2964"
stroke-width="2" stroke-linejoin="bevel"></path>
<path d="M30.6472 20.2964L9.64722 20.2964" stroke-width="2"
stroke-linejoin="bevel"></path>
</svg>
</div>
</a>
</div>
<ul>
<li>
<span class="detail-text">
Ofcom wants to understand how adults and children in the UK use media.
</span>
</li>
</ul>
</div>
<div class="list-item">
<div class="title d-flex justify-content-between align-items-center">
<a href="/topic-and-subtopics/online-safety/" class="sub-menu-link">
<div
class="sub-topic-text d-flex justify-content-between align-items-start align-items-center">
<span> Online safety </span>
<svg class="svg-arrow" width="25" height="25" viewBox="0 0 40 40"
xmlns="http://www.w3.org/2000/svg">
<circle cx="20.2449" cy="19.7964" r="19"></circle>
<path d="M22.6774 12.2964L30.8422 20.2964L22.6774 28.2964"
stroke-width="2" stroke-linejoin="bevel"></path>
<path d="M30.6472 20.2964L9.64722 20.2964" stroke-width="2"
stroke-linejoin="bevel"></path>
</svg>
</div>
</a>
</div>
<ul>
<li>
<span class="detail-text">
Under the Online Safety Act, Ofcom's job is to make online services
safer for the people who use them. We make sure companies have effective
systems in place to protect users from harm.
</span>
</li>
</ul>
</div>
<div class="list-item">
<div class="title d-flex justify-content-between align-items-center">
<a href="/topic-and-subtopics/phones-and-broadband/" class="sub-menu-link">
<div
class="sub-topic-text d-flex justify-content-between align-items-start align-items-center">
<span> Phones and broadband </span>
<svg class="svg-arrow" width="25" height="25" viewBox="0 0 40 40"
xmlns="http://www.w3.org/2000/svg">
<circle cx="20.2449" cy="19.7964" r="19"></circle>
<path d="M22.6774 12.2964L30.8422 20.2964L22.6774 28.2964"
stroke-width="2" stroke-linejoin="bevel"></path>
<path d="M30.6472 20.2964L9.64722 20.2964" stroke-width="2"
stroke-linejoin="bevel"></path>
</svg>
</div>
</a>
</div>
<ul>
<li>
<span class="detail-text">
Ofcom is committed to a thriving telecoms sector, where companies can
compete fairly and customers benefit from a broad range of services.
</span>
</li>
</ul>
</div>
<div class="list-item">
<div class="title d-flex justify-content-between align-items-center">
<a href="/topic-and-subtopics/post/" class="sub-menu-link">
<div
class="sub-topic-text d-flex justify-content-between align-items-start align-items-center">
<span> Post </span>
<svg class="svg-arrow" width="25" height="25" viewBox="0 0 40 40"
xmlns="http://www.w3.org/2000/svg">
<circle cx="20.2449" cy="19.7964" r="19"></circle>
<path d="M22.6774 12.2964L30.8422 20.2964L22.6774 28.2964"
stroke-width="2" stroke-linejoin="bevel"></path>
<path d="M30.6472 20.2964L9.64722 20.2964" stroke-width="2"
stroke-linejoin="bevel"></path>
</svg>
</div>
</a>
</div>
<ul>
<li>
<span class="detail-text">
Ofcom's job is to make sure there is a universal postal service.
</span>
</li>
</ul>
</div>
<div class="list-item">
<div class="title d-flex justify-content-between align-items-center">
<a href="/topic-and-subtopics/spectrum/" class="sub-menu-link">
<div
class="sub-topic-text d-flex justify-content-between align-items-start align-items-center">
<span> Spectrum </span>
<svg class="svg-arrow" width="25" height="25" viewBox="0 0 40 40"
xmlns="http://www.w3.org/2000/svg">
<circle cx="20.2449" cy="19.7964" r="19"></circle>
<path d="M22.6774 12.2964L30.8422 20.2964L22.6774 28.2964"
stroke-width="2" stroke-linejoin="bevel"></path>
<path d="M30.6472 20.2964L9.64722 20.2964" stroke-width="2"
stroke-linejoin="bevel"></path>
</svg>
</div>
</a>
</div>
<ul>
<li>
<span class="detail-text">
You can't see or feel radio spectrum, but we use it every day. Our
job is to authorise and manage the use of spectrum in the UK.
</span>
</li>
</ul>
</div>
<div class="list-item">
<div class="title d-flex justify-content-between align-items-center">
<a href="/topic-and-subtopics/tv-radio-and-on-demand/" class="sub-menu-link">
<div
class="sub-topic-text d-flex justify-content-between align-items-start align-items-center">
<span> TV, radio and on-demand </span>
<svg class="svg-arrow" width="25" height="25" viewBox="0 0 40 40"
xmlns="http://www.w3.org/2000/svg">
<circle cx="20.2449" cy="19.7964" r="19"></circle>
<path d="M22.6774 12.2964L30.8422 20.2964L22.6774 28.2964"
stroke-width="2" stroke-linejoin="bevel"></path>
<path d="M30.6472 20.2964L9.64722 20.2964" stroke-width="2"
stroke-linejoin="bevel"></path>
</svg>
</div>
</a>
</div>
<ul>
<li>
<span class="detail-text">
We make sure that broadcasters provide quality TV, radio and on-demand
programmes that appeal to diverse audiences. We also have rules in place
to protect viewers and listeners from harm.
</span>
</li>
</ul>
</div>
<div class="w-100 menu-social-icons">
<a href="https://twitter.com/ofcom" title="twitter">
<i class="fa-brands fa-twitter"></i>
</a>
<a href="https://www.facebook.com/ofcom" title="facebook">
<i class="fa-brands fa-facebook"></i>
</a>
<a href="https://www.linkedin.com/company/ofcom" title="linkedin">
<i class="fa-brands fa-linkedin"></i>
</a>
<a href="https://www.youtube.com/ofcom" title="youtube">
<i class="fa-brands fa-youtube"></i>
</a>
<a href="https://www.instagram.com/ofcom.org.uk/" title="instagram">
<i class="fa-brands fa-instagram"></i>
</a>
<a href="https://www.tiktok.com/@ofcom.org.uk" title="tiktok">
<i class="fa-brands fa-tiktok"></i>
</a>
</div>
<div class="multicolor-banner">
<div class="row row-cols-auto g-0 multicolor-strip menu-strip-height">
<div class="bg-blue"></div>
<div class="bg-megenta"></div>
<div class="bg-pink"></div>
<div class="bg-yellow"></div>
<div class="bg-green"></div>
</div>
</div>
</div>
</li>
<li class="block menu-item-has-children contenttypemenublock ">
<a href="#">Ofcom's work <i class="fa fa-angle-down"></i></a>
<div class="sub-menu mega-menu mega-menu-column-4">
<div class="list-item">
<div class="title d-flex justify-content-between align-items-center">
<a href="/content/advice-for-businesses/" class="sub-menu-link">
<div
class="sub-topic-text d-flex justify-content-between align-items-start align-items-center">
<span>Advice for businesses </span>
<svg class="svg-arrow" width="25" height="25" viewBox="0 0 40 40"
xmlns="http://www.w3.org/2000/svg">
<circle cx="20.2449" cy="19.7964" r="19"></circle>
<path d="M22.6774 12.2964L30.8422 20.2964L22.6774 28.2964"
stroke-width="2" stroke-linejoin="bevel"></path>
<path d="M30.6472 20.2964L9.64722 20.2964" stroke-width="2"
stroke-linejoin="bevel"></path>
</svg>
</div>
</a>
</div>
<ul>
<li>
<span class="detail-text">
How to make the most of communications services as a small business.
</span>
</li>
</ul>
</div>
<div class="list-item">
<div class="title d-flex justify-content-between align-items-center">
<a href="/content/advice-for-consumers/" class="sub-menu-link">
<div
class="sub-topic-text d-flex justify-content-between align-items-start align-items-center">
<span>Advice for consumers </span>
<svg class="svg-arrow" width="25" height="25" viewBox="0 0 40 40"
xmlns="http://www.w3.org/2000/svg">
<circle cx="20.2449" cy="19.7964" r="19"></circle>
<path d="M22.6774 12.2964L30.8422 20.2964L22.6774 28.2964"
stroke-width="2" stroke-linejoin="bevel"></path>
<path d="M30.6472 20.2964L9.64722 20.2964" stroke-width="2"
stroke-linejoin="bevel"></path>
</svg>
</div>
</a>
</div>
<ul>
<li>
<span class="detail-text">
How to make the most of the services you use, and deal with problems.
</span>
</li>
</ul>
</div>
<div class="list-item">
<div class="title d-flex justify-content-between align-items-center">
<a href="/content/consultations-and-statements/" class="sub-menu-link">
<div
class="sub-topic-text d-flex justify-content-between align-items-start align-items-center">
<span>Consultations and statements </span>
<svg class="svg-arrow" width="25" height="25" viewBox="0 0 40 40"
xmlns="http://www.w3.org/2000/svg">
<circle cx="20.2449" cy="19.7964" r="19"></circle>
<path d="M22.6774 12.2964L30.8422 20.2964L22.6774 28.2964"
stroke-width="2" stroke-linejoin="bevel"></path>
<path d="M30.6472 20.2964L9.64722 20.2964" stroke-width="2"
stroke-linejoin="bevel"></path>
</svg>
</div>
</a>
</div>
<ul>
<li>
<span class="detail-text">
Proposals we are consulting on and decisions we've made.
</span>
</li>
</ul>
</div>
<div class="list-item">
<div class="title d-flex justify-content-between align-items-center">
<a href="/content/enforcement/" class="sub-menu-link">
<div
class="sub-topic-text d-flex justify-content-between align-items-start align-items-center">
<span>Enforcement </span>
<svg class="svg-arrow" width="25" height="25" viewBox="0 0 40 40"
xmlns="http://www.w3.org/2000/svg">
<circle cx="20.2449" cy="19.7964" r="19"></circle>
<path d="M22.6774 12.2964L30.8422 20.2964L22.6774 28.2964"
stroke-width="2" stroke-linejoin="bevel"></path>
<path d="M30.6472 20.2964L9.64722 20.2964" stroke-width="2"
stroke-linejoin="bevel"></path>
</svg>
</div>
</a>
</div>
<ul>
<li>
<span class="detail-text">
How we make sure companies follow our rules, to protect customers and
promote competition.
</span>
</li>
</ul>
</div>
<div class="list-item">
<div class="title d-flex justify-content-between align-items-center">
<a href="/content/information-for-industry/" class="sub-menu-link">
<div
class="sub-topic-text d-flex justify-content-between align-items-start align-items-center">
<span>Information for industry </span>
<svg class="svg-arrow" width="25" height="25" viewBox="0 0 40 40"
xmlns="http://www.w3.org/2000/svg">
<circle cx="20.2449" cy="19.7964" r="19"></circle>
<path d="M22.6774 12.2964L30.8422 20.2964L22.6774 28.2964"
stroke-width="2" stroke-linejoin="bevel"></path>
<path d="M30.6472 20.2964L9.64722 20.2964" stroke-width="2"
stroke-linejoin="bevel"></path>
</svg>
</div>
</a>
</div>
<ul>
<li>
<span class="detail-text">
Rules, guidance and other information for the industries we regulate.
</span>
</li>
</ul>
</div>
<div class="list-item">
<div class="title d-flex justify-content-between align-items-center">
<a href="/content/licence-information/" class="sub-menu-link">
<div
class="sub-topic-text d-flex justify-content-between align-items-start align-items-center">
<span>Licence information </span>
<svg class="svg-arrow" width="25" height="25" viewBox="0 0 40 40"
xmlns="http://www.w3.org/2000/svg">
<circle cx="20.2449" cy="19.7964" r="19"></circle>
<path d="M22.6774 12.2964L30.8422 20.2964L22.6774 28.2964"
stroke-width="2" stroke-linejoin="bevel"></path>
<path d="M30.6472 20.2964L9.64722 20.2964" stroke-width="2"
stroke-linejoin="bevel"></path>
</svg>
</div>
</a>
</div>
<ul>
<li>
<span class="detail-text">
If you're looking to use certain radio equipment, or broadcast on
TV or radio, you'll need a licence from Ofcom.
</span>
</li>
</ul>
</div>
<div class="list-item">
<div class="title d-flex justify-content-between align-items-center">
<a href="/content/news-and-updates/" class="sub-menu-link">
<div
class="sub-topic-text d-flex justify-content-between align-items-start align-items-center">
<span>News and updates </span>
<svg class="svg-arrow" width="25" height="25" viewBox="0 0 40 40"
xmlns="http://www.w3.org/2000/svg">
<circle cx="20.2449" cy="19.7964" r="19"></circle>
<path d="M22.6774 12.2964L30.8422 20.2964L22.6774 28.2964"
stroke-width="2" stroke-linejoin="bevel"></path>
<path d="M30.6472 20.2964L9.64722 20.2964" stroke-width="2"
stroke-linejoin="bevel"></path>
</svg>
</div>
</a>
</div>
<ul>
<li>
<span class="detail-text">
Our latest news, features, views and information about our work.
</span>
</li>
</ul>
</div>
<div class="list-item">
<div class="title d-flex justify-content-between align-items-center">
<a href="/content/research-statistics-and-data/" class="sub-menu-link">
<div
class="sub-topic-text d-flex justify-content-between align-items-start align-items-center">
<span>Research, statistics and data </span>
<svg class="svg-arrow" width="25" height="25" viewBox="0 0 40 40"
xmlns="http://www.w3.org/2000/svg">
<circle cx="20.2449" cy="19.7964" r="19"></circle>
<path d="M22.6774 12.2964L30.8422 20.2964L22.6774 28.2964"
stroke-width="2" stroke-linejoin="bevel"></path>
<path d="M30.6472 20.2964L9.64722 20.2964" stroke-width="2"
stroke-linejoin="bevel"></path>
</svg>
</div>
</a>
</div>
<ul>
<li>
<span class="detail-text">
Evidence we gather to inform our work as a regulator.
</span>
</li>
</ul>
</div>
<div class="w-100 menu-social-icons">
<a href="https://twitter.com/ofcom" title="twitter">
<i class="fa-brands fa-twitter"></i>
</a>
<a href="https://www.facebook.com/ofcom" title="facebook">
<i class="fa-brands fa-facebook"></i>
</a>
<a href="https://www.linkedin.com/company/ofcom" title="linkedin">
<i class="fa-brands fa-linkedin"></i>
</a>
<a href="https://www.youtube.com/ofcom" title="youtube">
<i class="fa-brands fa-youtube"></i>
</a>
<a href="https://www.instagram.com/ofcom.org.uk/" title="instagram">
<i class="fa-brands fa-instagram"></i>
</a>
<a href="https://www.tiktok.com/@ofcom.org.uk" title="tiktok">
<i class="fa-brands fa-tiktok"></i>
</a>
</div>
<div class="multicolor-banner">
<div class="row row-cols-auto g-0 multicolor-strip menu-strip-height">
<div class="bg-blue"></div>
<div class="bg-megenta"></div>
<div class="bg-pink"></div>
<div class="bg-yellow"></div>
<div class="bg-green"></div>
</div>
</div>
</div>
</li>
<li class="block menu-item-has-children menublock ">
<a href="#"> Complaints <i class="fa fa-angle-down"></i></a>
<div class="sub-menu mega-menu mega-menu-column-4">
<div class="list-item ">
<div class="title d-flex justify-content-between align-items-center">
<a href="/make-a-complaint/" class="sub-menu-link">
<div
class="sub-topic-text d-flex justify-content-between align-items-start align-items-center">
<span>Complaints </span>
<svg class="svg-arrow" width="25" height="25" viewBox="0 0 40 40"
xmlns="http://www.w3.org/2000/svg">
<circle cx="20.2449" cy="19.7964" r="19"></circle>
<path d="M22.6774 12.2964L30.8422 20.2964L22.6774 28.2964"
stroke-width="2" stroke-linejoin="bevel"></path>
<path d="M30.6472 20.2964L9.64722 20.2964" stroke-width="2"
stroke-linejoin="bevel"></path>
</svg>
</div>
</a>
</div>
<ul>
<li class="mb-3">Make a complaint</li>
<li><a
href="/make-a-complaint/complain-about-mobile-phone-or-internet-services/">Complain
about mobile, phone or internet services</a></li>
<li><a href="/make-a-complaint/complain-about-tv-radio-or-on-demand-services/">Complain
about TV, radio or on demand services</a></li>
<li><a href="/make-a-complaint/complain-about-a-video-sharing-platform-vsp/">Complain
about a video-sharing platform (VSP)</a></li>
</ul>
</div>
<div class="list-item">
<ul>
<li class="mb-3">
<span class="detail-text">
Ofcom may be able to help you complain about or report issues relating
to phone, broadband and postal services, TV, radio and on-demand
programmes, interference to wireless devices, or something you have seen
on a video-sharing platform.
</span>
</li>
</ul>
</div>
<div class="w-100 menu-social-icons">
<a href="https://twitter.com/ofcom" title="twitter">
<i class="fa-brands fa-twitter"></i>
</a>
<a href="https://www.facebook.com/ofcom" title="facebook">
<i class="fa-brands fa-facebook"></i>
</a>
<a href="https://www.linkedin.com/company/ofcom" title="linkedin">
<i class="fa-brands fa-linkedin"></i>
</a>
<a href="https://www.youtube.com/ofcom" title="youtube">
<i class="fa-brands fa-youtube"></i>
</a>
<a href="https://www.instagram.com/ofcom.org.uk/" title="instagram">
<i class="fa-brands fa-instagram"></i>
</a>
<a href="https://www.tiktok.com/@ofcom.org.uk" title="tiktok">
<i class="fa-brands fa-tiktok"></i>
</a>
</div>
<div class="multicolor-banner">
<div class="row row-cols-auto g-0 multicolor-strip menu-strip-height">
<div class="bg-blue"></div>
<div class="bg-megenta"></div>
<div class="bg-pink"></div>
<div class="bg-yellow"></div>
<div class="bg-green"></div>
</div>
</div>
</div>
</li>
</ul>
</nav>
</div>
<div id="search-icon" class="search-icons d-flex align-items-center order-2 order-lg-1" tabindex="0">
<i class="fas fa-search"></i>
<span class="visually-hidden-focusable">Global Search</span>
</div>
<form action="/search-results/" class="search-form" id="globalSearch">
<div class="search-box mx-auto mb-3 position-relative">
<input type="search" class="search-box-input" name="query" aria-label="Global Search"
placeholder="Search" id="globalquery" autocomplete="off">
<label for="globalquery" class="fas fa-search d-none"><span class="d-none">Search</span></label>
<a href="javascript:void(0)" class="fas fa-search gl-search" onClick="globalSearch()"><span
class="d-none">Search</span></a>
</div>
<h4 class="text-center mt-4">Quick links:</h4>
<hr>
<div class="search-quick-link mx-auto mt-4">
<div class="row">
<div class="col-6 col-md-3">
<a href="~/link/b3e363e044e14cf29c7c402ef2243a65.aspx"
class="w-100 d-flex align-items-start align-items-start">
<span>Advice for consumers</span>
<i class="fa-solid fa-circle-arrow-right"></i>
</a>
</div>
<div class="col-6 col-md-3">
<a href="~/link/37c4a652ff9a47008fd17da1832a622f.aspx"
class="w-100 d-flex align-items-start align-items-start">
<span>News and updates</span>
<i class="fa-solid fa-circle-arrow-right"></i>
</a>
</div>
</div>
</div>
<hr>
<div class="w-75 mx-auto mt-4">
<h4 class="text-center mt-4 mb-5">Suggested searches:</h4>
<div class="row my-3">
<div class="col-12 col-sm-6 col-md-3 mb-2">
<a href="/search-results/?query=ofcom"
class="btn btn-primary-white-border w-100 mb-2 px-4 text-truncate" title="ofcom">
ofcom
</a>
</div>
<div class="col-12 col-sm-6 col-md-3 mb-2">
<a href="/search-results/?query=ofcom commissioned community research to conduct research"
class="btn btn-primary-white-border w-100 mb-2 px-4 text-truncate"
title="ofcom commissioned community research to conduct research">
ofcom commissioned community research to conduct research
</a>
</div>
<div class="col-12 col-sm-6 col-md-3 mb-2">
<a href="/search-results/?query=ofc"
class="btn btn-primary-white-border w-100 mb-2 px-4 text-truncate" title="ofc">
ofc
</a>
</div>
<div class="col-12 col-sm-6 col-md-3 mb-2">
<a href="/search-results/?query=cheaper broadband packages"
class="btn btn-primary-white-border w-100 mb-2 px-4 text-truncate"
title="cheaper broadband packages">
cheaper broadband packages
</a>
</div>
</div>
</div>
<hr>
</form>
<input type="hidden" id="searchLink" value="https://www-pp.ofcom.org.uk/search-results/" />
<a class="langauge-change order-1 order-lg-3"
href="/cy/topic-and-subtopics/about-ofcom/annual-reports-and-plans/news-and-updates/confirming-our-2022-23-plan-of-work/?language=cy"
title="Switch Welsh">Cymraeg</a>
<div class="mobile-menu-trigger order-3 order-lg-2">
<i class="mobile-nav-toggle mobile-nav-show fa-solid fa-bars"></i>
<i class="mobile-nav-toggle mobile-nav-hide d-none fa-solid fa-xmark"></i>
</div>
</div>
</header>
<main role="main">
<section class="breadcrumb-position">
<div class="row">
<div class="col-12">
<nav aria-label="breadcrumb">
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="/">Home</a></li>
<li class="breadcrumb-item"><a href="/topic-and-subtopics/about-ofcom/">About Ofcom</a></li>
<li class="breadcrumb-item"><a
href="/topic-and-subtopics/about-ofcom/annual-reports-and-plans/">Annual reports and
plans</a></li>
<li class="breadcrumb-item"><a
href="/topic-and-subtopics/about-ofcom/annual-reports-and-plans/">Annual reports path one</a></li>
<li class="breadcrumb-item"><a
href="/topic-and-subtopics/about-ofcom/annual-reports-and-plans/">Annual reports and
plans path two</a></li>
<li class="breadcrumb-item"><a
href="/topic-and-subtopics/about-ofcom/annual-reports-and-plans/">Annual reports and
plans path three</a></li>
<li class="breadcrumb-item"><a
href="/topic-and-subtopics/about-ofcom/annual-reports-and-plans/">Annual reports and
plans path four</a></li>
<li class="breadcrumb-item"><a
href="/topic-and-subtopics/about-ofcom/annual-reports-and-plans/">Annual reports and
plans path five</a></li>
<li class="breadcrumb-item active" aria-current="page"><span>Ofcom confirms our plan of work
for 2022/23</span></li>
</ol>
</nav>
</div>
</div>
</section>
<section>
<img class="responsive-image" src="assets/img/plan-of-work.webp" alt="" />
</div>
<!-- <picture>
<source
srcset="/siteassets/resources/images/-news-centre/thumbnail-images/misc/abstract/plan-of-work.jpg?format=webp&width=640&height=192&quality=80 640w, /siteassets/resources/images/-news-centre/thumbnail-images/misc/abstract/plan-of-work.jpg?format=webp&width=720&height=216&quality=80 720w, /siteassets/resources/images/-news-centre/thumbnail-images/misc/abstract/plan-of-work.jpg?format=webp&width=1024&height=308&quality=80 1024w, /siteassets/resources/images/-news-centre/thumbnail-images/misc/abstract/plan-of-work.jpg?format=webp&width=1280&height=384&quality=80 1280w, /siteassets/resources/images/-news-centre/thumbnail-images/misc/abstract/plan-of-work.jpg?format=webp&width=1536&height=461&quality=80 1536w, /siteassets/resources/images/-news-centre/thumbnail-images/misc/abstract/plan-of-work.jpg?format=webp&width=1920&height=577&quality=80 1920w"
sizes="100vw" type="image/webp" />
<source
srcset="/siteassets/resources/images/-news-centre/thumbnail-images/misc/abstract/plan-of-work.jpg?width=640&height=192&quality=80 640w, /siteassets/resources/images/-news-centre/thumbnail-images/misc/abstract/plan-of-work.jpg?width=720&height=216&quality=80 720w, /siteassets/resources/images/-news-centre/thumbnail-images/misc/abstract/plan-of-work.jpg?width=1024&height=308&quality=80 1024w, /siteassets/resources/images/-news-centre/thumbnail-images/misc/abstract/plan-of-work.jpg?width=1280&height=384&quality=80 1280w, /siteassets/resources/images/-news-centre/thumbnail-images/misc/abstract/plan-of-work.jpg?width=1536&height=461&quality=80 1536w, /siteassets/resources/images/-news-centre/thumbnail-images/misc/abstract/plan-of-work.jpg?width=1920&height=577&quality=80 1920w"
sizes="100vw" /><img alt="Discussing plans around a meeting table"
src="assets/img/plan-of-work.webp"
loading="lazy" decoding="async" class="responsive-image" />
</picture> -->
</section>
<section>
<div class="hero-banner-narrow blue-bg">
<div class="container-fluid">
<div class="row">
<div class="col-lg-8 offset-lg-2">
<h1 class="font-size-h2" data-epi-type="title"><strong>Ofcom confirms our plan of work for
2022/23</strong></h1>
</div>
</div>
</div>
</div>
</section>
<section>
<div class="container-fluid standared-page container-p-0">
<div class="row">
<div class="col-lg-2"></div>
<div class="col-lg-8">
<div class="row row-cols-auto g-0 mt-5">
Last updated:
25 March 2022
</div>
</div>
</div>
<div class="row">
<div class="col-lg-2">
<div class="mt-3 mt-standared-page mb-lg-0">
<a class="btn btn-tag blue-bg"
href="https://www-pp.ofcom.org.uk/topic-and-subtopics/about-ofcom/" target="_self">
About Ofcom
</a>
<a class="btn btn-tag light-blue-bg"
href="https://www-pp.ofcom.org.uk/topic-and-subtopics/about-ofcom/annual-reports-and-plans/"
target="_self">
Annual reports and plans
</a>
<a class="btn btn-tag maroon-bg"
href="https://www-pp.ofcom.org.uk/content/news-and-updates/" target="_self">
News and updates
</a>
</div>
</div>
<div class="col-lg-8">
<div class="mt-3">
<div>
<div class="block richtextblock ">
<section class="container-xl mt-5">
<div class="rich-text-block">
<p class="lead">Ofcom has today published our <a
href="/topic-and-subtopics/about-ofcom/annual-reports-and-plans/consultations-and-statements/plan-of-work-2022-23/">plan
of work for 2022/23</a>, detailing our priorities for the next
financial year.</p>
<p>Communications underpin how people live, learn and work in the UK today.
From TV to radio, telecoms to post, over the airwaves and online –
Ofcom’s mission is to make communications work for everyone around
the UK, at a time of unprecedented change.</p>
<p>Following consultation, including a virtual event to gain feedback on our
proposed plan, we have today set out our areas of work for the coming
year.</p>
<h2>Ofcom’s themes for 2022/23</h2>
<ul>
<li><strong>Investment in strong, secure networks.</strong> We will
support continued investment in high-quality and reliable broadband
and mobile networks.</li>
<li><strong>Getting everyone connected.</strong> We want to make sure
people and businesses can access communications services, and that
nobody is left behind as services evolve. We will work to make sure
that the universal postal service is sustainable for the future.
</li>
<li><strong>Fairness for customers.</strong> We will support customers
and ensure they are treated fairly, continuing our fairness for
customers programme and tackling scams. Having set clear standards,
we will shift our focus to monitoring and understanding the effect
of the implementation and delivery of those interventions.</li>
<li><strong>Enabling wireless services in the broader economy.</strong>
We manage the UK’s spectrum for the benefit of everyone in the
UK. Our goal is to drive efficiency and support innovation, ensuring
this invisible, essential and finite resource is used efficiently.
</li>
<li><strong>Supporting and developing UK media.</strong> We will support
the UK’s vibrant media sector, including public service media,
helping it to evolve to meet the changing needs of viewers and
listeners.</li>
<li><strong>Serving and protecting audiences.</strong> We will protect
people from potentially harmful and offensive content, while taking
full account of freedom of expression. We will continue to issue,
manage and maintain licences for all national and local commercial
TV, and radio services.</li>
<li><strong>Establishing regulation of online safety.</strong> We will
establish our regulation of UK-established video-sharing platforms
as we continue our preparations for the broader online safety
regime. We will deepen our organisational preparations for our new
regulatory responsibilities as the Online Safety Bill proceeds
through parliament.</li>
</ul>
<p>The plan of work also includes our work programme for the next year,
which explains the key activities we will be undertaking over the next
12 months across all of our work.</p>
</div>
</section>
</div>
<div class="block twocolumnblock ">
<div class="">
<section class="container-xl">
<div class="row mt-5">
<div class="col-md-12 col-lg-12">
<div class="row">
<div
class="block standardpage col-12 col-sm-6 col-md-4 onethird">
<a
href="/topic-and-subtopics/about-ofcom/what-we-do/news-and-updates/looking-back-at-ofcoms-work-in-2021/">
<div class="info-card">
<div
class="d-flex justify-content-between align-items-start">
<span class="info-card-header">Looking back at
Ofcom’s work in 2021</span>
<svg class="svg-arrow" width="40" height="40"
viewBox="0 0 40 40"
xmlns="http://www.w3.org/2000/svg">
<circle cx="20.2449" cy="19.7964" r="19" />
<path
d="M22.6774 12.2964L30.8422 20.2964L22.6774 28.2964"
stroke-width="2"
stroke-linejoin="bevel" />
<path d="M30.6472 20.2964L9.64722 20.2964"
stroke-width="2"
stroke-linejoin="bevel" />
</svg>
</div>
<p>
2021 has been another landmark year across the
globe, and it’s been no different at
Ofcom. We’ve been working hard this year
to protect people, help them get better deals,
and making sure our research gives us the
understanding to help us to do the best possible
job, all while keeping an eye on standards
across TV and radio.
</p>
</div>
</a>
</div>
<div
class="block standardpage col-12 col-sm-6 col-md-4 onethird">
<a
href="/topic-and-subtopics/about-ofcom/annual-reports-and-plans/news-and-updates/ofcom-proposes-our-plan-of-work-for-202223/">
<div class="info-card">
<div
class="d-flex justify-content-between align-items-start">
<span class="info-card-header">Ofcom proposes
our plan of work for 2022/23</span>
<svg class="svg-arrow" width="40" height="40"
viewBox="0 0 40 40"
xmlns="http://www.w3.org/2000/svg">
<circle cx="20.2449" cy="19.7964" r="19" />
<path
d="M22.6774 12.2964L30.8422 20.2964L22.6774 28.2964"
stroke-width="2"
stroke-linejoin="bevel" />
<path d="M30.6472 20.2964L9.64722 20.2964"
stroke-width="2"
stroke-linejoin="bevel" />
</svg>
</div>
<p>
Ofcom has today published its proposed 2022/23
Plan of Work, outlining our priorities for the
next financial year.
</p>
</div>