-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathPROGRESS.md
More file actions
2203 lines (1442 loc) · 99.6 KB
/
Copy pathPROGRESS.md
File metadata and controls
2203 lines (1442 loc) · 99.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# FedRAMP Roadmap Progress Updates

> Note: As of 2026-01-31, GSA is shutdown due to a lapse in appropriations.
## Sprint 18 (2026-01-19 to 2026-01-30)
### OPEN Issue [#101: FRMR Docs Overhaul](https://github.com/FedRAMP/roadmap/issues/101)
Latest comment (2026-02-02):
This is likely to be released shortly after the current shutdown ends.
### OPEN Issue [#93: 20x Phase 2 Pilot - Cohort 2](https://github.com/FedRAMP/roadmap/issues/93)
Latest comment (2026-02-02):
During the past 2 weeks, we spent a total of ~20 hours collaborating with Cohort 2 participants. 3 of them have completed review of all KSIs with us, and 7 of them will be finishing up shortly.
### OPEN Issue [#79: Agency Requirements and Guidance](https://github.com/FedRAMP/roadmap/issues/79)
Latest comment (2026-02-02):
This continues to slip as less critical than many of the other activities we are working towards, but is quickly approaching the point where it will be completely necessary.
### CLOSED Issue [#34: 20x Phase 2 Pilot - Cohort 1](https://github.com/FedRAMP/roadmap/issues/34)
Latest comment (2026-02-02):
All 3 participants in Cohort 1 have submitted packages - I'm closing this particular item to include their final review and authorization in the overall Phase 2 work.
### OPEN Issue [#32: Agency AI Adoption Pilot for 20x](https://github.com/FedRAMP/roadmap/issues/32)
Latest comment (2026-02-02):
All 3 prioritized providers are currently under review.
## Sprint 17 (2026-01-05 to 2026-01-16)
### OPEN Issue [#101: FRMR Docs Overhaul](https://github.com/FedRAMP/roadmap/issues/101)
Latest comment (2026-01-20):
The final alpha version is saved for posterity here: https://github.com/FedRAMP/docs/releases/tag/v0.4.0-alpha && https://github.com/FedRAMP/docs/tree/ref-v0.4.0-alpha
Work in progress for the significant overhaul is available here: https://github.com/FedRAMP/docs/tree/pwx-v0.9.0-beta
### OPEN Issue [#100: RFC-0019 Reporting Assessment Costs](https://github.com/FedRAMP/roadmap/issues/100)
Latest comment (2026-01-20):
The resulting information will be made available (de-identified) in a new section on the website focused on cost and status reporting.
### OPEN Issue [#99: RFC-0022 Leveraging External Frameworks](https://github.com/FedRAMP/roadmap/issues/99)
Latest comment (2026-01-20):
This RFC is tied into work done during 20x Phase 1 and will be deployed as part of 20x Phase 2.
### OPEN Issue [#98: RFC-0023 Rev5 Program Certifications](https://github.com/FedRAMP/roadmap/issues/98)
Latest comment (2026-01-20):
Please note that program authorizations in this RFC are designed specifically for cloud service providers that have already nearly completed their Rev5 journey.
### OPEN Issue [#97: FedRAMP Trademark Guidance Updates](https://github.com/FedRAMP/roadmap/issues/97)
Latest comment (2026-01-20):
GSA Office of General Counsel advised us that an RFC will not be necessary for these changes. Stay tuned for updated brand guidance when we're ready to release directly.
### OPEN Issue [#96: RFC-0024 Rev5 Machine-Readable Packages](https://github.com/FedRAMP/roadmap/issues/96)
Latest comment (2026-01-20):
This RFC was released on January 13, 2026. Given the extensive impact, public comment period has been extended to nearly two months.
https://www.fedramp.gov/rfcs/0024/
### OPEN Issue [#95: RFC: New Marketplace and Authorization Designations](https://github.com/FedRAMP/roadmap/issues/95)
Latest comment (2026-01-20):
These RFCs were released on January 13 as:
* https://www.fedramp.gov/rfcs/0020/ FedRAMP Authorization Designations
* https://www.fedramp.gov/rfcs/0021/ Expanding the FedRAMP Marketplace
### OPEN Issue [#93: 20x Phase 2 Pilot - Cohort 2](https://github.com/FedRAMP/roadmap/issues/93)
Latest comment (2026-01-20):
After an **intense** week of pilot proposals that ended with a marathon day of 6 on Friday the 9th, we selected an additional 10 participants in Cohort 2. All of these pilot proposals were so solid that it didn't seem fair to only pick the best 7 - adding 3 more is a fair bit of extra work for us but we decided to make the commitment anyway.
Last week our senior staff spent ~11 hours in collaborative workshops with 7 of these participants and it's definitely a wild ride. The selected participants for both cohorts (including their pilot proposal, if applicable) can be seen at https://www.fedramp.gov/20x/phase-two/participate/
### OPEN Issue [#32: Agency AI Adoption Pilot for 20x](https://github.com/FedRAMP/roadmap/issues/32)
Latest comment (2026-01-20):
One of our AI prioritized participants have submitted their 20x authorization package! We're expecting the other two very soon.
### CLOSED Issue [#19: R5.MAS Minimum Assessment Scope BIR](https://github.com/FedRAMP/roadmap/issues/19)
Latest comment (2025-11-26):
FedRAMP now plans to make the Minimum Assessment Scope available as an optional balance improvement release for Rev5 under Wide Release on January 12, 2026. Instructions for how cloud services may adopt this standard are in the Rev5 Balance version of this standard: https://www.fedramp.gov/docs/rev5/minimum-assessment-scope/
### CLOSED Issue [#16: Rev5 SCN Significant Change Notification Balance Improvement Release](https://github.com/FedRAMP/roadmap/issues/16)
Latest comment (2026-01-20):
The SCN process will go into wide release at the end of February.
## Sprint 16 (2025-12-22 to 2026-01-02)
> FedRAMP spent most of Sprint 16 celebrating the holidays and taking a well deserved
> rest. Please stand by for exciting stuff in Sprint 17!
## Sprint 15 (2025-12-08 to 2025-12-19)
### OPEN Issue [#97: RFC: Updates on the FedRAMP Trademark](https://github.com/FedRAMP/roadmap/issues/97)
Latest comment (2025-12-19):
This planned RFC is new this sprint!
### OPEN Issue [#96: RFC: Rev5 OSCAL adoption](https://github.com/FedRAMP/roadmap/issues/96)
Latest comment (2025-12-19):
Tentatively planning to release this RFC in mid/late January.
### OPEN Issue [#95: RFC: New Marketplace and Authorization Designations](https://github.com/FedRAMP/roadmap/issues/95)
Latest comment (2025-12-19):
Due to the holidays we're tentatively planning to release this RFC on Jan 12-14. We're also going to try something new for this RFC: a short podcast style discussion about the background and motivation as well as an overview of the RFC itself. Some folks like to just read RFCs but we want to provide a bit more for folks who want to listen to us ramble.
### OPEN Issue [#79: Agency Requirements and Guidance](https://github.com/FedRAMP/roadmap/issues/79)
Latest comment (2025-12-19):
This has slipped continuously, especially in the aftermath of the shutdown, but as we change focus of priority towards agency adoption we need to push this over the finish line. It's become one of those things that folks keep having more ideas about adding to or changing things up in a way that hasn't aligned with our external approach of incremental delivery because we're aware that with agencies it's more important to have a complete thing they can take and run with in one go without having to keep learning more.
Based on that, I've reset the target to end of January and we will align this with the Federal AI adoption sprint to ensure folks have this guidance as we engage government-wide on that.
### OPEN Issue [#48: Major redesign of marketplace](https://github.com/FedRAMP/roadmap/issues/48)
Latest comment (2025-12-19):
We're making a significant shift in direction on this: we are going to wait for the outcome of #95 (RFC on new marketplace designations) to launch the new Marketplace so that it aligns with the resulting changes from that RFC.
### OPEN Issue [#34: 20x Phase 2 Pilot - Cohort 1](https://github.com/FedRAMP/roadmap/issues/34)
Latest comment (2025-12-19):
On December 10 we announced the [Phase 2 Cohort 1 participants](https://www.fedramp.gov/2025-12-10-announcing-the-initial-20x-phase-2-pilot-participants/) and published their pilot proposal videos.
As of today we have completed all planned collaborative workshops with the 3 participants (well, the final one is schedule for this afternoon but I'm presuming in advance we'll finish up).
We were able to talk through approaches and theory for every single KSI in 2x 2-hour collaborative sessions with 1 participant and 3x 2-hour sessions with the other 2. A common discussion was transitioning from the typical "boolean" validations from Phase 1 ("is this enabled true / false") towards validations that measured the outcomes from the boolean choice ("how many times per day has this triggered to do something").
Now we're taking a break so all three participants can finalize their packages and we can prep for Cohort 2. Overall these collaborative workshops carved out 16 hours of time out of 5 days for me and FR's senior staff, which was a bit rough - Cohort 2 is going to be bonkers. It was well worth it though as we learned quite a lot and so do the participants, everyone's package will be better off.
### OPEN Issue [#32: Agency AI Adoption Pilot for 20x](https://github.com/FedRAMP/roadmap/issues/32)
Latest comment (2025-12-19):
This was a major topic of discussion in our FedRAMP Board meeting in December; expect January to be a very busy month as we push out materials to support this.
### OPEN Issue [#16: Rev5 SCN Significant Change Notification Balance Improvement Release](https://github.com/FedRAMP/roadmap/issues/16)
Latest comment (2025-12-19):
During our December 18 meeting the FedRAMP Board informally concurred that the SCN process should go into wide release in February; we plan a formal vote in January.
## Sprint 14 (2025-11-24 to 2025-12-05)
### OPEN Issue [#96: RFC: Rev5 OSCAL adoption](https://github.com/FedRAMP/roadmap/issues/96)
Latest comment (2025-12-05):
This roadmap item is new in Sprint 14.
### OPEN Issue [#95: RFC: New Marketplace and Authorization Designations](https://github.com/FedRAMP/roadmap/issues/95)
Latest comment (2025-12-05):
This work in progress RFC is new to the roadmap today.
### OPEN Issue [#79: Agency Requirements and Guidance](https://github.com/FedRAMP/roadmap/issues/79)
Latest comment (2025-12-05):
This will be a topic of conversation at the December 18 FedRAMP Board meeting.
### OPEN Issue [#48: Major redesign of marketplace](https://github.com/FedRAMP/roadmap/issues/48)
Latest comment (2025-12-05):
A final (well, final until release - we'll keep improving it) interface was approved this week and there are only a few minor tweaks necessary to finish this out. We may not be able to launch before Christmas due to the holidays impacting so much but the marketplace is looking a lot nicer!
Here's a little taste of some random demo pages.
<img width="720" height="1016" alt="Image" src="https://github.com/user-attachments/assets/688e1ad4-c73b-4528-849f-c14f45fef23f" />
<img width="721" height="641" alt="Image" src="https://github.com/user-attachments/assets/e9618d98-2ceb-4f20-8086-3ded839ec2a1" />
<img width="373" height="730" alt="Image" src="https://github.com/user-attachments/assets/34df1db0-cb1a-4c27-9aed-1cf885bdd0ae" />
### OPEN Issue [#34: 20x Phase 2 Pilot - Cohort 1](https://github.com/FedRAMP/roadmap/issues/34)
Latest comment (2025-12-05):
As of Friday Dec 5 we have **5** cloud service providers who met the eligibility requirements and applied for Cohort 1 - we expect to publicly announce the resulting decisions for Cohort 1 early next week. So far the pilot proposals have all been quite exciting and we're looking forward to sharing those on youtube so everyone can learn about these cloud service offerings and their approaches.
### OPEN Issue [#32: Agency AI Adoption Pilot for 20x](https://github.com/FedRAMP/roadmap/issues/32)
Latest comment (2025-12-05):
Next week OMB is gathering a broad mix of executives across government (including almost every Chief x Council) at the White House to discuss plans and expectations for government-wide adoption of FedRAMP authorized AI services. It's going to be quite the party, but it's not open to the public.
## Sprint 13 (2025-11-10 to 2025-11-21)
> These updates were delayed as things started back up from the longest
> government shutdown in history - the comments were made on 11/26 but
> reflect the status as of the end of Sprint 13.
### OPEN Issue [#94: R5.CCM Collaborative Continuous Monitoring BIR](https://github.com/FedRAMP/roadmap/issues/94)
Latest comment (2025-11-26):
FedRAMP currently plans to release the Collaborative Continuous Monitoring
standard to Rev5 as an optional balance release. This standard will skip Closed
Beta and go straight to Open Beta, currently planned for February 2, 2026.
For more on this standard, the set of requirements, and the sign up forms,
please see our Rev5 Balance docs:
https://www.fedramp.gov/docs/rev5/collaborative-continuous-monitoring/
### CLOSED Issue [#83: FedRAMP 20x Strategic Vision & Implementation Plan](https://github.com/FedRAMP/roadmap/issues/83)
Latest comment (2025-11-26):
Updates to the web page were delayed by the shutdown but published on Nov 18:
https://www.fedramp.gov/20x/
This includes a timeline, overview of Rev5 vs 20x, updated phased approach
cards, review of Phase 1, extensive information on Phase 2, and a new FedRAMP
20x documentation site.
### OPEN Issue [#79: Agency Requirements and Guidance](https://github.com/FedRAMP/roadmap/issues/79)
Latest comment (2025-11-26):
Updating these materials will be an early December priority, balanced against
20x Cohort 1 applications and collaborative workshops.
### OPEN Issue [#78: 20x Phase 3](https://github.com/FedRAMP/roadmap/issues/78)
Latest comment (2025-11-26):
Phase 3 is now expected to begin in FY26 Q3 due to the impact of the longest
government shutdown in history. FedRAMP will prioritize completion of the Phase
2 pilot prior to releasing formal authorization paths for 20x to the public in
likely the second quarter of Phase 3.
Information about the planned phases is available at:
https://www.fedramp.gov/20x/
### OPEN Issue [#50: External data driven marketplace](https://github.com/FedRAMP/roadmap/issues/50)
Latest comment (2025-11-26):
Work on the external data driven marketplace will be delayed until the first
Cohort of 20x Phase 2 pilot participants have completed their work.
### OPEN Issue [#48: Major redesign of marketplace](https://github.com/FedRAMP/roadmap/issues/48)
Latest comment (2025-11-26):
This project did not advance during the shutdown but work is now resuming. The
holiday season will complicate delivery but we are hopeful the updated
marketplace can be released in January.
### CLOSED Issue [#43: Recommended Secure Configuration Standard](https://github.com/FedRAMP/roadmap/issues/43)
Latest comment (2025-11-26):
This RFC did not see a considerable amount of public comment compared to other
submissions but minor changes were made as follows:
- FRR-RSC-02: Changed the mandatory guidance from covering "all settings" for
top-level administrative accounts to covering only "security-related
settings."
- FRR-RSC-03: Changed the recommended guidance from covering "all settings" for
other privileged accounts to covering only "security-related settings."
The final policy is available for 20x here:
https://www.fedramp.gov/docs/recommended-secure-configuration/
For Rev5, this policy is a mandatory balance release that will be effective on
March 1, 2026. Currently authorized Rev5 providers should ensure they meet the
requirements in this standard by that time. The Rev5 version is here:
https://www.fedramp.gov/docs/rev5/recommended-secure-configuration/
### OPEN Issue [#42: Agency Reuse Playbook for 20x](https://github.com/FedRAMP/roadmap/issues/42)
Latest comment (2025-11-26):
This has been delayed until FY26 Q3 as all planned timelines shifted due to the
government shutdown at the beginning of FY26.
### CLOSED Issue [#41: Establish DISA ILx One Way Reciprocity](https://github.com/FedRAMP/roadmap/issues/41)
Latest comment (2025-11-26):
At this point we are considering this plan effectively met by virtue of the
improvements made to the Rev5 review process at FedRAMP. If a cloud service
provider receives an IL3/4 ATO from DISA following the FedRAMP process then that
provider typically receives a formal FedRAMP authorization within 30 days.
### CLOSED Issue [#39: Consolidated R5 Continuous Monitoring Standard](https://github.com/FedRAMP/roadmap/issues/39)
Latest comment (2025-11-26):
The
[FedRAMP ConMon Playbook](https://www.fedramp.gov/resources/documents/Continuous_Monitoring_Playbook.pdf)
is a new publication that consolidates nine standalone documents related to
ConMon activities. By consolidating these documents and retiring the standalone
documents, we were able to eliminate roughly 100 pages of redundant and outdated
content.
The
[Agency Authorization Playbook](https://www.fedramp.gov/resources/documents/Agency_Authorization_Playbook.pdf)
was updated to remove and correct outdated information.
The
[CSP Authorization Playbook](https://www.fedramp.gov/resources/documents/CSP_Authorization_Playbook.pdf)
went through a major revision at the end of September 2025 and has undergone a
second update to account for the updates above.
### CLOSED Issue [#37: Collaborative Continuous Monitoring Standard](https://github.com/FedRAMP/roadmap/issues/37)
Latest comment (2025-11-26):
This RFC received a fair amount of public comment that resulted in some
reworking to underlying requirements and recommendations. Some restrictions were
removed and clarifications were added to expectations of sharing/etc. of agency
questions - the overall shift was to require CSPs to anonymize and make safe any
feedback/questions from specific agencies then share that with all necessary
parties. This generally should be in the CSPs best interest and reduce their
overall burden while ensuring folks are looped in on things that specific
agencies are concerned about.
The 20x final version is available here:
https://www.fedramp.gov/docs/collaborative-continuous-monitoring
This policy is currently planned for a Rev5 Open Beta beginning February 2,
2026: https://www.fedramp.gov/docs/rev5/collaborative-continuous-monitoring/
### OPEN Issue [#36: Finalize FedRAMP 20x Moderate Authorization Standard](https://github.com/FedRAMP/roadmap/issues/36)
Latest comment (2025-11-26):
This has been delayed until FY26 Q3 as all planned timelines shifted due to the
government shutdown at the beginning of FY26.
### CLOSED Issue [#35: FIPS cryptographic module application for commercial services](https://github.com/FedRAMP/roadmap/issues/35)
Latest comment (2025-11-26):
We have released an extremely simplified version of the FedRAMP Policy for
Cryptographic Module Selection and Use for application to FedRAMP 20x as
follows:
https://www.fedramp.gov/docs/using-cryptographic-modules/
It can be summarized as "document what cryptography you use in what parts of
your service so that agencies can make an informed decision about whether or not
to place sensitive information into your service" for impact levels less than
High. At High Impact, providers are expected to use cryptographic modules from
the NIST Cryptographic Module Validation Program for any cryptography protecting
federal customer data.
Recently at FedRAMP we've had a bit of discussion about the fact that agencies
typically do not use FIPS-140 based cryptographic modules for accessing and
transmitting data between agencies and SaaS cloud services that are typically
accessed via a browser over the internet; therefore these AOs have already
accepted the risk of not relying on FIPS-140 based cryptographic modules for
sending information over the public internet and it does not make sense for them
to expect the data to be encrypted by such when stored at a provider facility.
We may revisit this as a wider guidance change via an RFC in the future.
### OPEN Issue [#34: 20x Phase 2 Pilot - Cohort 1](https://github.com/FedRAMP/roadmap/issues/34)
Latest comment (2025-11-26):
The plans for the Phase 2 pilot were adjusted considerably due to the impact of
the longest government shutdown ever. New timelines are available at
https://www.fedramp.gov/20x/phase-two/
This issue will track the progress of Cohort 1 during the 20x Phase 2 pilot. As
of Wed Nov 26, **4** cloud service providers have met the eligibility
requirements and requested an application for Cohort 1.
### CLOSED Issue [#33: Persistent Validation and Assessment Standard](https://github.com/FedRAMP/roadmap/issues/33)
Latest comment (2025-11-26):
This RFC received a fair amount of feedback that resulted in rewording and
restructuring in a number of places. In other places FedRAMP acknowledges that
the requirements and recommendations may be confusing or unclear for a
traditional 3PAO audit perspective, however this set of requirements are
explicitly intended for the Phase 2 pilot and 20x assessments are very much not
a compliance audit.
The largest change is that Persistent FedRAMP Assessment were removed entirely
in the published version; these will be revisited during Phase 3 based on
learnings from the Phase 2 pilot, but currently FedRAMP is leaning towards
requiring these much more frequently than annually and expects assessors to
treat these as ongoing assessments rather than yearly audits.
Gemini in Google Docs has provided this additional AI summary of the changes:
- Definitions: Added two new definitions: Machine-based (information resources)
and Information Resource.
- Definitions: Clarified All Necessary Assessors (FRD-PVA-01) to explicitly name
Third-Party Assessment Organizations (3PAO) and exclude agency assessment
teams by default.
- Definitions: Updated Persistent FedRAMP Assessment (FRD-PVA-04) to explicitly
limit the scope to only assessing significant changes.
- Requirements: Restructured the entire Requirements section under a new heading
(FRR-PVR).
- Requirement FRR-PVA-01: Replaced the original requirement with a detailed
mandate for providers to maintain high-level summaries and a new six-point
list of required content for each Key Security Indicator.
- Requirement FRR-PVA-02: Reworded to explicitly mandate automated and
non-automated validation processes.
- Requirement FRR-PVA-03: Clarified that failures in persistent validation, or
the validation process itself, must be treated as vulnerabilities.
Please note that during the 20x Phase 2 pilot, FedRAMP has temporarily waived
many of the traditional restrictions on assessors:
https://www.fedramp.gov/20x/phase-two/assessment/
The 20x version of this standard is available here:
https://www.fedramp.gov/docs/persistent-validation-and-assessment/
This standard will **not** be applied to Rev5.
### OPEN Issue [#32: Agency AI Adoption Pilot for 20x](https://github.com/FedRAMP/roadmap/issues/32)
Latest comment (2025-11-26):
There are currently 3 cloud service offerings that have met the requirements for
AI Prioritization - we do not expect more at this time. All 3 offerings are
currently working towards a FedRAMP 20x Low authorization with minimal Phase
1-style requirements by January for wide scale agency adoption.
AI Prioritization will continue after their initial authorization and all are
anticipated to update to full Phase 2 requirements shortly after initial pilot
authorization. These AI Prioritized cloud services will likely be widely
deployed across government within months of receiving authorization and will
give us valuable data about agency adoption during Phase 3.
### OPEN Issue [#31: 20x Phase 2](https://github.com/FedRAMP/roadmap/issues/31)
Latest comment (2025-11-26):
20x Phase 2 is now expected to late until at least the end of March, 2026. The
overall phased goal timing for 20x and the specifics for 20x Phase 2 are
available on the updated FedRAMP 20x web site:
https://www.fedramp.gov/20x/phase-two/
We have also finalized the requirements for participation and will be working
with an initial cohort of participants through December and January.
### CLOSED Issue [#30: Finalize Key Security Indicators (KSIs) for FedRAMP Moderate](https://github.com/FedRAMP/roadmap/issues/30)
Latest comment (2025-11-26):
Updated Key Security Indicators, including those for Moderate, were published at
the end of the government shutdown. These can be reviewed here:
https://www.fedramp.gov/docs/key-security-indicators/
There were **considerable** changes to the RFC based on public comment,
including additional changes made to other KSIs that were not included in the
RFC. I had over 11 pages of notes from public comment and we reviewed every
single one in depth over the course of the shutdown. Edits were made continually
and often revisited so it's a bit difficult to directly highlight all of the
changes due to the amount of minor tweaks.
At a high level, we added a new theme called KSI-AFR that tracks the
Authorization by FedRAMP requirements, and removed related KSIs that are
duplicative with those underlying FedRAMP requirements. Elsewhere we tried to
reword KSIs to move them towards value-add metrics-based indicators that enable
companies to set clear goals - for example, saying that the effectiveness of
training programs should be monitored rather than simply requiring training.
We also tried to emphasize when machine and non-machine resources (or both) are
relevant as it was surprising how many folks thought these indicators would
apply only to machine-based resources.
To give you a headstart, I asked Gemini in Google Docs to draft a summary of the
changes, it misses a lot of the nuance but isn't the worst:
- Replaced seven existing Key Security Indicators (KSIs), including KSI-CMT-05,
KSI-MLA-04, and KSI-SVC-03, by new controls under the KSI-AFR theme.
- Introduced the new KSI-AFR (Authorization by FedRAMP) theme, adding 11 new
security indicators focused on FedRAMP authorization standards.
- Added five new security indicators (e.g., KSI-CED-03, KSI-IAM-07) for both Low
and Moderate baselines.
- Created five new security indicators (e.g., KSI-CNA-08, KSI-SVC-10)
specifically for the Moderate baseline.
- Updated KSI-CMT-01 to specifically log and monitor modifications to the cloud
service offering.
- Strengthened KSI-CMT-04 from "Consistently follow" to "Always follow a
documented change management procedure."
- Broadened KSI-CNA-05 to protect against denial of service and "unwanted
activity," replacing a more specific term like "unwanted spam."
- Refined KSI-SVC-01 to explicitly require implementing improvements after
continuous evaluation, not just performing the evaluation.
- Confirmed KSI-CED-01 will be updated to include contingency planning training
requirements.
KSIs and all other docs are available in a machine readable format in the FRMR
docs repository (which had some considerable reworks during this time):
https://github.com/FedRAMP/docs/blob/main/data/FRMR.KSI.key-security-indicators.json
Human-readable versions are here:
https://www.fedramp.gov/docs/key-security-indicators/
### OPEN Issue [#29: Finalize FedRAMP 20x Low Authorization Standard](https://github.com/FedRAMP/roadmap/issues/29)
Latest comment (2025-11-26):
This has been delayed until FY26 Q3 as all planned timelines shifted due to the
government shutdown at the beginning of FY26.
### OPEN Issue [#28: R5.ADS Authorization Data Sharing Standard BIR](https://github.com/FedRAMP/roadmap/issues/28)
Latest comment (2025-11-26):
FedRAMP now plans to skip closed beta for the Authorization Data Sharing
standard and move straight to a Rev5 Open Beta beginning February 2, 2026. We
will coordinate with the FedRAMP Board and agencies to prepare for this Open
Beta. More information, limitations, and instructions for signup are available
here: https://www.fedramp.gov/docs/rev5/authorization-data-sharing/
### OPEN Issue [#23: R5.VDR Vulnerability Detection and Response Standard BIR](https://github.com/FedRAMP/roadmap/issues/23)
Latest comment (2025-11-26):
FedRAMP now plans to skip closed beta for the Vulnerability Detection and
Response standard and move straight to a Rev5 Open Beta beginning February
2, 2026. We will coordinate with the FedRAMP Board and agencies to prepare for
this Open Beta. More information, limitations, and instructions for signup are
available here:
https://www.fedramp.gov/docs/rev5/vulnerability-detection-and-response/
### OPEN Issue [#19: R5.MAS Minimum Assessment Scope BIR](https://github.com/FedRAMP/roadmap/issues/19)
Latest comment (2025-11-26):
FedRAMP now plans to make the Minimum Assessment Scope available as an optional
balance improvement release for Rev5 under Wide Release on January 12, 2026.
Instructions for how cloud services may adopt this standard are in the Rev5
Balance version of this standard:
https://www.fedramp.gov/docs/rev5/minimum-assessment-scope/
### OPEN Issue [#16: Rev5 SCN Significant Change Notification Balance Improvement Release](https://github.com/FedRAMP/roadmap/issues/16)
Latest comment (2025-11-26):
The Rev5 SCN Closed Beta will continue with current participants through
February of 2026.
At this time, FedRAMP plans to skip Open Beta for the Rev5 SCN process and move
directly to Wide Release beginning February 27, 2026. We will coordinate with
the FedRAMP Board and agencies to prepare everyone for this shift.
More information about the Rev5 SCN Balance Improvement Release can be found
here: https://www.fedramp.gov/docs/rev5/#optional-balance-for-rev5
### CLOSED Issue [#3: 20x Phase 1](https://github.com/FedRAMP/roadmap/issues/3)
Latest comment (2025-11-26):
All critical activities for 20x Phase 1 have completed and FedRAMP has
transitioned to 20x Phase 2. Please note there are still outstanding reviews of
20x Phase 1 pilot participants and that activity will continue as part of
Phase 2.
A summary of Phase 1 is available here: https://www.fedramp.gov/20x/phase-one/
Though this final slide from
[our public event launching Phase 2](https://www.youtube.com/watch?v=KBQb_6pVuS4)
also sums it up:

## Sprint 12 (2025-10-27 to 2025-11-07)
> The federal government remained shut down during all of Sprint 12; all
> public-facing activities have been halted, requests for comment remain open,
> and the phased implementation of 20x is delayed.
>
> Expected timelines for open roadmap items will be adjusted once the shutdown
> ends.
>
> For more information see https://fedramp.gov/shutdown
## Sprint 11 (2025-10-13 to 2025-10-24)
> The federal government remained shut down during all of Sprint 11; all
> public-facing activities have been halted, requests for comment remain open,
> and the phased implementation of 20x is delayed.
>
> Expected timelines for open roadmap items will be adjusted once the shutdown
> ends.
>
> For more information see https://fedramp.gov/shutdown
## Sprint 10 (2025-09-29 to 2025-10-10)
> Note: A significant amount of activity has been curtailed by the government
> shutdown effective 2025-10-01; more than half of FedRAMP's federal employees
> have been furloughed and non-essential non-excepted activities are limited.
>
> **This has delayed 20x Phase Two.**
### CLOSED Issue [#89: Community Outreach - FY25 Q4](https://github.com/FedRAMP/roadmap/issues/89)
Latest comment (2025-10-09):
During FY25 Q4, FedRAMP managed 13+ major engagements with the community.
### CLOSED Issue [#88: FY25 Summary Blog Post](https://github.com/FedRAMP/roadmap/issues/88)
Latest comment (2025-10-09):
FedRAMP's FY25 end of year report is available on the FedRAMP Blog here:
https://www.fedramp.gov/2025-09-30-fedramp-built-a-modern-foundation-in-fy25-to-deliver-massive-improvements-in-fy26/
Here is just one example of the type of data shared in this report:
<img width="1082" height="620" alt="Image" src="https://github.com/user-attachments/assets/d2490e28-92ea-4a63-a624-d8da780968fb" />
### CLOSED Issue [#81: 20x Six Month Update & Phase Two and Phase Three Announcement Event (Sep 24, Pete)](https://github.com/FedRAMP/roadmap/issues/81)
Latest comment (2025-10-09):
This entire launch event is also now available on youtube here:
https://www.youtube.com/watch?v=KBQb_6pVuS4
### OPEN Issue [#79: Agency Requirements and Guidance](https://github.com/FedRAMP/roadmap/issues/79)
Latest comment (2025-10-09):
This guidance is now delayed indefinitely due the government shutdown. Timeline
will be reassessed when the shutdown ends. This activity has been placed into
the Hold / Pending status.
### OPEN Issue [#48: Major redesign of marketplace](https://github.com/FedRAMP/roadmap/issues/48)
Latest comment (2025-10-09):
All of the federal staff working on this improvement have been furloughed during
the current government shutdown; delivery of these improvements will be delayed.
### CLOSED Issue [#44: Community Outreach - FY25 Q2/Q3 ](https://github.com/FedRAMP/roadmap/issues/44)
Latest comment (2025-10-09):
During FY25 Q2/Q3, FedRAMP managed 10+ engagements with the community, with most
of these taking place in FY25 Q3.
### OPEN Issue [#43: Recommended Secure Configuration Standard](https://github.com/FedRAMP/roadmap/issues/43)
Latest comment (2025-10-09):
[RFC-0015](https://www.fedramp.gov/rfcs/0015/) is still open; finalization is
extremely unlikely to happen as scheduled due to the current government
shutdown. The public is advised to submit comment as quickly as possible because
after the official closing date this RFC may close at any time unexpectedly.
### OPEN Issue [#31: (2/?) 20x Phase Two](https://github.com/FedRAMP/roadmap/issues/31)
Latest comment (2025-10-09):
All previously anticipated Phase Two timelines are likely to shift as a result
of the active government shutdown. Please stand by for updates. For more on how
this shutdown is affecting FedRAMP, please review https://fedramp.gov/shutdown
### OPEN Issue [#30: Finalize Key Security Indicators (KSIs) for FedRAMP Moderate](https://github.com/FedRAMP/roadmap/issues/30)
Latest comment (2025-10-09):
[RFC-0014](https://www.fedramp.gov/rfcs/0014/) is still open; finalization is
extremely unlikely to happen as scheduled due to the current government
shutdown. The public is advised to submit comment as quickly as possible because
after the official closing date this RFC may close at any time unexpectedly.
### OPEN Issue [#3: (1/?) 20x Phase One](https://github.com/FedRAMP/roadmap/issues/3)
Latest comment (2025-10-09):
Phase One will be formally closed out when #30 has been finalized. There are
still many active Phase One participants whose review may continue during Phase
Two. All reviews are temporarily halted due to the ongoing government shutdown:
https://fedramp.gov/shutdown
## Sprint 09 (2025-09-15 to 2025-09-26)
### CLOSED Issue [#83: FedRAMP 20x Strategic Vision & Implementation Plan](https://github.com/FedRAMP/roadmap/issues/83)
Latest comment (2025-09-28):
This implementation plan was shared widely on 9/24 but still needs to be ported
to our web page. We hope to have a youtube link with that presentation soon and
will be updating the webpage next month to align with this plan, however you can
review the powerpoint with dates and goals below if you missed it.
[20x Phase Two, Three, and Beyond (2025-09-24).pdf](https://github.com/user-attachments/files/22583999/20x.Phase.Two.Three.and.Beyond.2025-09-24.pdf)
### CLOSED Issue [#82: [Gov] FedRAMP Day II (Team, Sep 22)](https://github.com/FedRAMP/roadmap/issues/82)
Latest comment (2025-09-28):
I wasn't able to attend FedRAMP Day myself but I listened in to the morning
session and the feedback overall was positive. Agencies are starting to see the
longer term plays and understand the importance of GRC automation tooling, but
also seeing the reality that until we have things like the Authorization Data
Sharing standard implemented there isn't much to do here.
### CLOSED Issue [#81: 20x Six Month Update & Phase Two and Phase Three Announcement Event (Sep 24, Pete)](https://github.com/FedRAMP/roadmap/issues/81)
Latest comment (2025-09-28):
This event was covered by various folks on LinkedIn as well as the traditional
media:
- https://meritalk.com/articles/federal-cio-greg-barbaccia-backs-fedramp-20x-shares-ombs-priorities/
- https://www.meritalk.com/articles/gsa-unveils-fedramp-20x-phase-2-pilot-previews-phases-to-come/
- https://www.nextgov.com/acquisition/2025/09/gsa-launches-second-phase-fedramp-20x-backed-omb/408356/
- https://www.executivegov.com/articles/fedramp-20x-phase-2-pilot
We expect a youtube video to be available soon for folks who missed it as well.
### CLOSED Issue [#80: GRC Engineering Podcast (Pete, Sep 16)](https://github.com/FedRAMP/roadmap/issues/80)
Latest comment (2025-09-28):
This interview was recorded as planned but appears to be still pending release.
### OPEN Issue [#79: Agency Requirements and Guidance](https://github.com/FedRAMP/roadmap/issues/79)
Latest comment (2025-09-28):
Finalization and publication of this guidance has been delayed one sprint as a
result of an unexpected event; it should be formalized soon. I've moved the
likely end date to October 10 to allow some padding.
### OPEN Issue [#50: External data driven marketplace](https://github.com/FedRAMP/roadmap/issues/50)
Latest comment (2025-09-28):
The
[Authorization Data Sharing](https://github.com/FedRAMP/docs/blob/main/markdown/FRMR.ADS.authorization-data-sharing.md)
standard is optional for Phase One and to date no one has begun to implement it.
This standard will be a mandatory requirement for Phase Two and beyond, however,
so we're moving the likely delivery dates on this prototype to some point in the
future where there should at least be a few cloud service providers making this
data available to us in a way that we can prototype properly.
### OPEN Issue [#48: Major redesign of marketplace](https://github.com/FedRAMP/roadmap/issues/48)
Latest comment (2025-09-28):
I got to see a really cool working prototype of this last week, but we're still
not there yet. Based on the work done to date and current estimates from the
team, we might be ready to release this before the end of October but we want to
make sure it's ready and clean first.
### OPEN Issue [#43: Recommended Secure Configuration Standard](https://github.com/FedRAMP/roadmap/issues/43)
Latest comment (2025-09-28):
[RFC-0015](https://github.com/FedRAMP/community/discussions/84) is still open
for two more weeks; this one appears to be relatively straightforward as there
is only one public comment at the moment.
### OPEN Issue [#39: Consolidated R5 Continuous Monitoring Standard](https://github.com/FedRAMP/roadmap/issues/39)
Latest comment (2025-09-28):
We're shifting this later to ensure we can include the results of
[RFC-0016 Collaborative Continuous Monitoring Standard](https://www.fedramp.gov/rfcs/0016/)
into any such guide; expect this to be delivered later in the calendar year.
### OPEN Issue [#37: Collaborative Continuous Monitoring Standard](https://github.com/FedRAMP/roadmap/issues/37)
Latest comment (2025-09-28):
This was published as [RFC-0016](https://www.fedramp.gov/rfcs/0016/) on
September 15! This will be balanced to Rev5 so reviewing and commenting is
critical for Rev5-based providers.
### OPEN Issue [#35: FIPS cryptographic module application for commercial services](https://github.com/FedRAMP/roadmap/issues/35)
Latest comment (2025-09-28):
I'm moving this forward one sprint because it is one of the lowest priority
tasks at the moment; the current
[FedRAMP Policy for Cryptographic Module Selection and Use](https://www.fedramp.gov/resources/documents/FedRAMP_Policy_for_Cryptographic_Module_Selection_v1.1.0.pdf)
is still applicable.
### OPEN Issue [#34: 20xP2 Moderate Pilot Submission and Review Window](https://github.com/FedRAMP/roadmap/issues/34)
Latest comment (2025-09-28):
The [Phase Two](https://fedramp.gov/20x/phase-two) submission window has been
publicly announced as likely to occur the week of October 16 to 23. FedRAMP has
also clarified that Phase Two will not be open to the public and that cloud
service providers must meet specific criteria to participate. This page also has
additional information about the expectations for Phase Two, including that it
will be much more difficult than Phase One and most providers will need more
time and better tools to meet these requirements. We must build 20x together.
### OPEN Issue [#33: Persistent Validation and Assessment Standard](https://github.com/FedRAMP/roadmap/issues/33)
Latest comment (2025-09-28):
This was published as [RFC-0017](https://www.fedramp.gov/rfcs/0017/) on
September 15! This standard adds significant details to FedRAMP's expectations
in Phase Two and beyond; it is a must-review for anyone who is considering
FedRAMP 20x at the moment.
### OPEN Issue [#31: (2/?) 20x Phase Two](https://github.com/FedRAMP/roadmap/issues/31)
Latest comment (2025-09-28):
The details of Phase Two were publicly announced this week, with additional
information to follow over the coming weeks. As always, the source of truth is
the web page, this roadmap, and the Community Working Group discussion forums:
https://www.fedramp.gov/20x/phase-two
It never fails to amaze me how often people email me asking questions about
things that are on our website.
### OPEN Issue [#30: Finalize Key Security Indicators (KSIs) for FedRAMP Moderate](https://github.com/FedRAMP/roadmap/issues/30)
Latest comment (2025-09-28):
Public comment is still open on [RFC-0014](https://www.fedramp.gov/rfcs/0014/)
for another two weeks! So far this RFC has not been particularly active but
there have been some
[really interesting comments overall](https://github.com/FedRAMP/community/discussions/83).
## Sprint 08 (2025-09-01 to 2025-09-12)
### OPEN Issue [#83: FedRAMP 20x Strategic Vision & Implementation Plan](https://github.com/FedRAMP/roadmap/issues/83)
Latest comment (2025-09-14):
The strategic vision and implementation plan will be shared publicly on
September 24 with the announcement of Phase Two and Phase Three of FedRAMP 20x.
For more information and to register for this in-person (and remote) public
event replacing the 20x Community Working Group meeting for September, please
visit https://www.fedramp.gov/20x/phase-two
### OPEN Issue [#81: 20x Six Month Update & Phase Two and Phase Three Announcement Event (Sep 24, Pete)](https://github.com/FedRAMP/roadmap/issues/81)
Latest comment (2025-09-14):
This event will take place on September 24 from 3:30 to 5pm (replacing our
scheduled 20x CWG) at ADI's conference space in downtown Washington DC. Formal
announcement of this event and registration information will be available soon -
keep an eye on https://www.fedramp.gov/20x/phase-two because this event will
likely happen before this Roadmap Issue is updated. ;)
### OPEN Issue [#80: GRC Engineering Podcast (Pete, Sep 16)](https://github.com/FedRAMP/roadmap/issues/80)
Latest comment (2025-09-14):
This interview is scheduled for September 16 and is expected to be published by
the GRC Engineering podcast on September 23.
### OPEN Issue [#79: Agency Requirements and Guidance](https://github.com/FedRAMP/roadmap/issues/79)
Latest comment (2025-09-14):
The draft Agency Implementation Guidance (now tentatively renamed Agency
Requirements and Guidance but likely to shift again because names are
complicated and a lot of people have opinions) will be reviewed and finalized
with the FedRAMP Board on September 18 and published shortly afterwards.
This guidance focuses on clarifying existing agency requirements and is not
considered new guidance that requires public comment, therefore it will be
released much quicker than previously anticipated.
### CLOSED Issue [#75: Billington CyberSecurity Summit (Sep 9, Nicole)](https://github.com/FedRAMP/roadmap/issues/75)
Latest comment (2025-09-14):
Nicole totally crushed it on the main stage in a panel that also included
FedRAMP Board member Dave McKeown.

### OPEN Issue [#43: Recommended Secure Configuration Standard](https://github.com/FedRAMP/roadmap/issues/43)
Latest comment (2025-09-14):
The recommended Secure Configuration Standard was published as RFC-0015 on
September 10 and is now open for public comment.
- [RFC-0015 on fedramp.gov](https://www.fedramp.gov/rfcs/0015)
- [RFC-0015 on GitHub](https://github.com/FedRAMP/community/discussions/84)
- [Q&A and casual discussion on RFC-0015](https://github.com/FedRAMP/community/discussions/85)
This activity is expected to be finalized during the third week of October.
### CLOSED Issue [#40: POA&M Standard](https://github.com/FedRAMP/roadmap/issues/40)
Latest comment (2025-09-14):
All recommendations about changes to POA&Ms have been directly integrated into
the new Vulnerability Detection and Response Standard - for 20x authorizations
and for those who adopt the new VDR during the Rev5 closed beta, POA&Ms are no
longer relevant.
### CLOSED Issue [#38: Vulnerability Detection and Response Standard (prev Continuous Vulnerability Management Standard)](https://github.com/FedRAMP/roadmap/issues/38)
Latest comment (2025-09-14):
This standard has been published as the Vulnerability Detection and Response
Standard with many changes -
[this thread in the FedRAMP Community](https://github.com/FedRAMP/community/discussions/82#discussioncomment-14355795)
summarizes the changes at a high level.
The resulting standard, including the accompanying (and critically important)
FedRAMP Definitions, can be reviewed as follows:
- In the [FedRAMP Docs repository on GitHub](https://github.com/FedRAMP/docs)
for those who want to see both the latest and how the sausage is made
- On [fedramp.gov](https://www.fedramp.gov/20x/standards) for folks who prefer a
direct web source
### OPEN Issue [#37: Collaborative Continuous Monitoring Standard](https://github.com/FedRAMP/roadmap/issues/37)
Latest comment (2025-09-14):
The Collaborative Continuous Monitoring Standard is pending final review and
publishing for public comment as RFC-0016 by September 16.
### OPEN Issue [#34: 20xP2 Moderate Pilot Submission and Review Window](https://github.com/FedRAMP/roadmap/issues/34)
Latest comment (2025-09-14):
In this
[Sprint to 20x Phase Two](https://github.com/FedRAMP/community/discussions/82)
thread in the FedRAMP Community we have continued to communicate expected
changes to previously discussed FedRAMP goals and targets.
Criteria for Phase Two is still in development and finalization but as indicated
elsewhere:
[FedRAMP Phase Two will be formally announced on September 24 at 3:30pm.](https://www.fedramp.gov/20x/phase-two)
Participants in Phase Two will be eligible to receive a 12 month FedRAMP 20x
Moderate authorization, however, participation will be limited; Phase Two will
not be entirely open to the public. We currently anticipate opening up formal
20x Low and Moderate authorizations, reviewed directly by FedRAMP (no agency
sponsor required), in February 2026.
### OPEN Issue [#33: Persistent Validation and Assessment Standard](https://github.com/FedRAMP/roadmap/issues/33)
Latest comment (2025-09-14):
Now called the Persistent Validation and Assessment Standard, this draft
includes requirements and recommendations for both providers and assessors for
handling Key Security Indicators. It is planned for release as RFC-0017 as early
as September 16.
### OPEN Issue [#30: Finalize Key Security Indicators (KSIs) for FedRAMP Moderate](https://github.com/FedRAMP/roadmap/issues/30)
Latest comment (2025-09-14):
Moderate and related Phase Two Key Security Indicators have been published for
public comment in RFC-0014:
- [RFC-0014 on fedramp.gov](https://www.fedramp.gov/rfcs/0014)
- [RFC-0014 on GitHub](https://github.com/FedRAMP/community/discussions/83)