forked from GSA/fedramp-automation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
FedRAMP_extensions.xml
1760 lines (1629 loc) · 90.7 KB
/
FedRAMP_extensions.xml
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
<?xml version="1.0" encoding="UTF-8"?>
<extensions xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://csrc.nist.gov/ns/oscal/1.0" uuid="bac3886f-deb3-4d9d-a422-b563d906b27c">
<metadata>
<title>[EXPERIMENTAL] FedRAMP Extensions</title>
<published>2023-06-30T00:00:00Z</published>
<last-modified>2023-07-05T00:00:00Z</last-modified>
<version>fedramp-2.0.0-oscal-1.1.1</version>
<oscal-version>1.1.1</oscal-version>
<revisions>
<revision>
<published>2023-06-30T00:00:00Z</published>
<version>DRAFT-01</version>
<prop name="party-uuid" ns="https://fedramp.gov/ns/oscal" value="9505ecff-86c4-42ad-aeb9-e6b0f8eacb69"/>
<remarks>
<p>Initial draft for fedramp-2.0.0-oscal-1.1.1 release. Subject to change.</p>
</remarks>
</revision>
<revision>
<published>2023-07-06T00:00:00Z</published>
<version>DRAFT-02</version>
<remarks>
<p>Updated remarks for deprecated extensions, and added new rev5 extensions.</p>
<p>The bindings and constraints for the new rev5 extensions are pending and will be added in a future revision.</p>
</remarks>
</revision>
<revision>
<published>2023-07-12T00:00:00Z</published>
<version>DRAFT-03</version>
<remarks>
<p>Minor edits.</p>
</remarks>
</revision>
</revisions>
<role id="prepared-by">
<title>Prepared By</title>
<description>
<p>The organization that prepared this content.</p>
</description>
</role>
<party uuid="77e0e2c8-2560-4fe9-ac78-c3ff4ffc9f6d" type="organization">
<name>Federal Risk and Authorization Management Program: Program Management Office</name>
<short-name>FedRAMP PMO</short-name>
<link href="https://fedramp.gov"/>
<email-address>[email protected]</email-address>
<address type="work">
<addr-line>1800 F St. NW</addr-line>
<addr-line/>
<city>Washington</city>
<state>DC</state>
<postal-code/>
<country>US</country>
</address>
<remarks>
<p>This party entry must be present in a FedRAMP SSP.</p>
<p>The uuid may be different; however, the uuid must be associated with the "fedramp-pmo" role in the responsible-party assemblies.</p>
</remarks>
</party>
<responsible-party role-id="prepared-by">
<party-uuid>77e0e2c8-2560-4fe9-ac78-c3ff4ffc9f6d</party-uuid>
</responsible-party>
<remarks>
<p>This EXPERIMENTAL file extends OSCAL to meet FedRAMP requirements.</p>
<p>It provides the extensions, defined identifiers, and acceptable values in a machine-readable format necessary to meet FedRAMP Authorization Package requirements.</p>
</remarks>
</metadata>
<!-- ===================================================================== -->
<!-- OSCAL Key Value -->
<!-- ===================================================================== -->
<index id="index-local-party-id" target="//o:party">
<key-field target="@uuid"/>
<remarks>
<p>This document only.</p>
</remarks>
</index>
<index id="index-assessment-layer-party-id" target="oscal-document-set()/(o:assessment-plan | o:assessment-results)//o:party">
<key-field target="@uuid"/>
<remarks>
<p>Select documents.</p>
</remarks>
</index>
<index id="global-local-party-id" target="oscal-document-set()//o:party">
<key-field target="@uuid"/>
<remarks>
<p>Entire stack.</p>
</remarks>
</index>
<!-- ===================================================================== -->
<!-- OSCAL Extension Namespace Value -->
<!-- ===================================================================== -->
<extension-namespace ns="https://fedramp.gov/ns/oscal"/>
<!-- ===================================================================== -->
<!-- EXTENSIONS -->
<!-- ===================================================================== -->
<extension id="response-point">
<extension-name>response-point</extension-name>
<formal-name>Response Point</formal-name>
<description>A property whose presence indicates its parent part is a required point of response for FedRAMP stakeholders.</description>
<binding pattern="/o:profile/o:modify/o:alter/o:add/o:prop"/>
<binding pattern="/o:profile/o:modify/o:alter/o:add//o:part/o:prop"/>
<binding pattern="/o:catalog//o:control//o:part/o:prop"/>
<binding pattern="/o:assessment-plan/o:local-definitions/o:objectives-and-methods//part/o:prop"/>
<binding pattern="/o:assessment-results/o:local-definitions/o:objectives-and-methods//part/o:prop"/>
<constraint>
<matches data-type="string"/>
<has-cardinality min-occurs="0" max-occurs="1"/>
</constraint>
<remarks>
<p>This appears in FedRAMP profiles and resolved profile catalogs.</p>
<p>For control statements, it signals to the CSP which statements require a response in the SSP.</p>
<p>For control objectives, it signals to the assessor which control objectives must appear in the assessment results, which aligns with the FedRAMP test case workbook.</p>
</remarks>
</extension>
<extension id="revision-history-party-uuid">
<extension-name>party-uuid</extension-name>
<formal-name>Party Identifier</formal-name>
<description>Identifies the party who authored this revision.</description>
<binding pattern="/*/o:metadata/o:revisions/o:revision/o:prop"/>
<constraint>
<matches data-type="uuid"/>
<has-cardinality min-occurs="0" max-occurs="unbounded"/>
<index-has-key name="index-local-party-uuid" target="o:prop[@name='party-uuid']">
<key-field target="."/>
<remarks>
<p>On the revision element in the revision history, the party-uuid extension must match the UUID of an existing party in the metadata.</p>
</remarks>
</index-has-key>
<!-- TODO: -->
<!-- Need index-has-key syntax for ensuring the identified UUID represents an existing UUID assigned to a party. -->
</constraint>
</extension>
<extension id="iso-iec-17020-identifier">
<extension-name>iso-iec-17020-identifier</extension-name>
<formal-name>ISO/IEC 17020 Identifier</formal-name>
<description>The ISO/IEC-17020 identifier assigned to the assessor related to their status as an A2LA Accredited Third Party Assessment Organization.</description>
<binding pattern="/o:assessment-plan/o:metadata/o:party/o:prop"/>
<binding pattern="/o:assessment-results/o:metadata/o:party/o:prop"/>
<constraint>
<matches data-type="string"/>
<has-cardinality min-occurs="0" max-occurs="1"/>
</constraint>
</extension>
<extension id="CORE">
<extension-name>CORE</extension-name>
<formal-name>Core Control</formal-name>
<description>Identifies a control that must be included in every FedRAMP assessment.</description>
<binding pattern="/o:profile/o:modify/o:alter/o:add/o:prop"/>
<binding pattern="/o:profile/o:modify/o:alter/o:add//o:control/o:prop"/>
<binding pattern="/o:catalog//o:control/o:prop"/>
<constraint>
<matches data-type="string"/>
<has-cardinality min-occurs="0" max-occurs="1"/>
</constraint>
<remarks>
<p>Core controls must be assessed every year, and are often subject to additional scrutiny by assessors and adjudication reviewers.</p>
</remarks>
</extension>
<extension id="security-cia-level">
<extension-name>security-eauth-level</extension-name>
<formal-name>eAuth Level (OVERALL)</formal-name>
<description>The overall electronic authentication (eAuth) level applied to the system.</description>
<binding pattern="/o:system-security-plan/o:system-characteristics/o:prop"/>
<binding pattern="system-characteristics/o:prop[@name='authenticator-assurance-level']"/>
<binding pattern="system-characteristics/o:prop[@name='federation-assurance-level']"/>
<binding pattern="system-characteristics/o:prop[@name='identity-assurance-level']"/>
<constraint>
<matches data-type="integer"/>
<has-cardinality min-occurs="1" max-occurs="1"/>
<allowed-values allow-other="no">
<enum value="1" label="Level 1 (Low)">The overall eAuth Level is defined as Level 1 (Low).</enum>
<enum value="2" label="Level 2 (Moderate)">The overall eAuth Level is defined as Level 2 (Moderate).</enum>
<enum value="3" label="Level 3 (High)">The overall eAuth Level is defined as Level 3 (High).</enum>
</allowed-values>
</constraint>
<remarks>
<p>Deprecated.</p>
</remarks>
</extension>
<extension id="authorization-type">
<extension-name>authorization-type</extension-name>
<formal-name>Authorization Type</formal-name>
<description>Identifies the FedRAMP authorization type.</description>
<binding pattern="/o:system-security-plan/o:system-characteristics/o:prop"/>
<constraint>
<matches data-type="token"/>
<has-cardinality min-occurs="1" max-occurs="1"/>
<allowed-values allow-other="no">
<enum value="fedramp-jab" label="JAB P-ATO">A FedRAMP Joint Authorization Board (JAB) Provisional-Authorization to Operate (P-ATO).</enum>
<enum value="fedramp-agency" label="Agency ATO">A FedRAMP Agency Authorization to Operate (ATO).</enum>
<enum value="fedramp-li-saas" label="Tailored (LI-SaaS) ATO">A FedRAMP Tailored authorization to operate (ATO) for low impact Software as a Service (LI-SaaS) systems.</enum>
</allowed-values>
</constraint>
</extension>
<extension id="users-internal">
<extension-name>users-internal</extension-name>
<formal-name>Internal Users</formal-name>
<description>The current number of users internal to the organization.</description>
<binding pattern="/o:system-security-plan/o:system-implementation/o:prop"/>
<constraint>
<matches data-type="integer"/>
<has-cardinality min-occurs="1" max-occurs="1"/>
</constraint>
</extension>
<extension id="users-external">
<extension-name>users-external</extension-name>
<formal-name>External Users</formal-name>
<description>The current number of users external to the organization.</description>
<binding pattern="/o:system-security-plan/o:system-characteristics/o:prop"/>
<constraint>
<matches data-type="integer"/>
<has-cardinality min-occurs="1" max-occurs="1"/>
</constraint>
</extension>
<extension id="users-internal-future">
<extension-name>users-internal-future</extension-name>
<formal-name>Future Internal Users</formal-name>
<description>The anticipated number of users internal to the organization in one year.</description>
<binding pattern="/o:system-security-plan/o:system-characteristics/o:prop"/>
<constraint>
<matches data-type="integer"/>
<has-cardinality min-occurs="1" max-occurs="1"/>
</constraint>
</extension>
<extension id="users-external-future">
<extension-name>users-external-future</extension-name>
<formal-name>Future External Users</formal-name>
<description>The anticipated number of users external to the organization in one year.</description>
<binding pattern="/o:system-security-plan/o:system-characteristics/o:prop"/>
<constraint>
<matches data-type="integer"/>
<has-cardinality min-occurs="1" max-occurs="1"/>
</constraint>
</extension>
<extension id="privacy-designation">
<extension-name>privacy-designation</extension-name>
<formal-name>Privacy Designation</formal-name>
<description>Indicates whether this system is privacy sensitive.</description>
<binding pattern="system-information/o:prop[@name='privacy-sensitive']"/>
<constraint>
<matches data-type="token"/>
<has-cardinality min-occurs="0" max-occurs="1"/>
<allowed-values allow-other="no">
<enum value="yes" label="Yes">Privacy Sensitive</enum>
<enum value="no" label="No">Not Privacy Sensitive</enum>
</allowed-values>
</constraint>
<remarks>
<p>Deprecated.</p>
</remarks>
</extension>
<extension id="privacy-threshold-analysis-q1">
<extension-name>privacy-threshold-analysis-q1</extension-name>
<formal-name>Privacy Threshold Analysis Q1</formal-name>
<description>Does the ISA collect, maintain, or share PII in any identifiable form?</description>
<binding pattern="/o:system-security-plan/o:system-characteristics/o:system-information/o:prop"/>
<constraint>
<matches data-type="token"/>
<has-cardinality min-occurs="1" max-occurs="1"/>
<allowed-values allow-other="no">
<enum value="yes" label="Yes">Yes, the ISA collects, maintains, or shares some form of PII.</enum>
<enum value="no" label="No">No, the ISA does not collect, maintain, or share PII in any form.</enum>
</allowed-values>
</constraint>
<remarks>
<p>Deprecated.</p>
</remarks>
</extension>
<extension id="privacy-threshold-analysis-q2">
<extension-name>privacy-threshold-analysis-q2</extension-name>
<formal-name>Privacy Threshold Analysis Q2</formal-name>
<description>Does the ISA collect, maintain, or share PII from or about the public?</description>
<binding pattern="/o:system-security-plan/o:system-characteristics/o:system-information/o:prop"/>
<constraint>
<matches data-type="token"/>
<has-cardinality min-occurs="1" max-occurs="1"/>
<allowed-values allow-other="no">
<enum value="yes" label="Yes">Yes, the ISA collects, maintains, or shares PII from or about the public.</enum>
<enum value="no" label="No">No, the ISA does not collect, maintain, or share PII from or about the public.</enum>
</allowed-values>
</constraint>
<remarks>
<p>Deprecated.</p>
</remarks>
</extension>
<extension id="privacy-threshold-analysis-q3">
<extension-name>privacy-threshold-analysis-q3</extension-name>
<formal-name>Privacy Threshold Analysis Q3</formal-name>
<description>Has a Privacy Impact Assessment (PIA) ever been performed for the ISA?</description>
<binding pattern="/o:system-security-plan/o:system-characteristics/o:system-information/o:prop"/>
<constraint>
<matches data-type="token"/>
<has-cardinality min-occurs="1" max-occurs="1"/>
<allowed-values allow-other="no">
<enum value="yes" label="Yes">Yes, a PIA has been performed.</enum>
<enum value="no" label="No">No, a PIA has not been performed..</enum>
</allowed-values>
</constraint>
<remarks>
<p>Deprecated.</p>
</remarks>
</extension>
<extension id="privacy-threshold-analysis-q4">
<extension-name>privacy-threshold-analysis-q4</extension-name>
<formal-name>Privacy Threshold Analysis Q4</formal-name>
<description>Is there a Privacy Act System of Records Notice (SORN) for this ISA system?</description>
<binding pattern="/o:system-security-plan/o:system-characteristics/o:system-information/o:prop"/>
<constraint>
<matches data-type="token"/>
<has-cardinality min-occurs="1" max-occurs="1"/>
<allowed-values allow-other="no">
<enum value="yes" label="Yes">Yes, there is a SORN ID for this system.</enum>
<enum value="no" label="No">No, there is not a SORN ID for this system.</enum>
</allowed-values>
</constraint>
<remarks>
<p>Deprecated.</p>
</remarks>
</extension>
<extension id="sorn-id">
<extension-name>sorn-id</extension-name>
<formal-name>SORN ID</formal-name>
<description>An assigned System of Records Notice (SORN) identifier for this system.</description>
<binding pattern="/o:system-security-plan/o:system-characteristics/o:system-information/o:prop"/>
<constraint>
<matches data-type="string"/>
<has-cardinality min-occurs="0" max-occurs="1"/>
<expect test=".[@name='pta-4'][@ns='https://fedramp.gov/ns/oscal']/@value='yes' and .[@name='sorn-id'][@ns='https://fedramp.gov/ns/oscal']"/>
</constraint>
<remarks>
<p>Deprecated.</p>
</remarks>
</extension>
<extension id="user-sensitivity-level">
<extension-name>sensitivity</extension-name>
<formal-name>User Sensitivity Level</formal-name>
<description>Defines the sensitivity level of the identified user type.</description>
<binding pattern="/o:system-security-plan/o:system-implementation/o:user/o:prop"/>
<constraint>
<matches data-type="token"/>
<has-cardinality min-occurs="1" max-occurs="unbounded"/>
<allowed-values allow-other="no">
<enum value="high-risk" label="High Risk">Misuse of the user's access could result in grave damage to the public's trust.</enum>
<enum value="severe" label="Severe">Misuse of the user's access could result in a substantial degree of harm or serious damage to the public’s trust.</enum>
<enum value="moderate" label="Moderate">Misuse of the user's access could result in a fair amount of harm or serious damage to the public’s trust.</enum>
<enum value="limited" label="Limited">Misuse of the user's access could result in some harm or discernible damage to the public’s trust.</enum>
<enum value="not-applicable" label="Not Applicable">The user does not have access to the system.</enum>
</allowed-values>
</constraint>
<remarks>
<p>Values are as required by FedRAMP for packages based on NIST 800-53, Revision 4.</p>
<p>Authoritative source: <a href="#871713A8-5A27-4AC3-8B94-972588469C6B">OPM Position Designation (Page 18)</a>.</p>
</remarks>
</extension>
<extension id="service-processor">
<extension-name>service-processor</extension-name>
<formal-name>Service Processor</formal-name>
<description>Name of the interconnection service processor.</description>
<binding pattern="/o:system-security-plan/o:system-implementation/o:component[@type='interconnection']/o:prop"/>
<constraint>
<matches data-type="string"/>
<has-cardinality min-occurs="1" max-occurs="unbounded"/>
</constraint>
</extension>
<extension id="information">
<extension-name>information</extension-name>
<formal-name>Transmitted Information</formal-name>
<description>Describes the information transmitted over the interconnection.</description>
<binding pattern="/o:system-security-plan/o:system-implementation/o:component[@type='interconnection']/o:prop"/>
<constraint>
<matches data-type="string"/>
<has-cardinality min-occurs="1" max-occurs="unbounded"/>
</constraint>
</extension>
<extension id="asset-type">
<extension-name>asset-type</extension-name>
<formal-name>Asset Type</formal-name>
<description>Identifies the type of asset.</description>
<binding pattern="component/o:prop[@name='asset-type']"/>
<binding pattern="o:inventory-item/o:prop[@name='asset-type']"/>
<constraint>
<matches data-type="token"/>
<allowed-values allow-other="yes">
<enum value="os" short-label="OS">Operating System</enum>
<enum value="database" short-label="DB">Database</enum>
<enum value="web-server" short-label="Web">Service</enum>
<enum value="dns-server" short-label="DNS">Policy</enum>
<enum value="email-server" short-label="eMail">Process</enum>
<enum value="directory-server" short-label="LDAP">Procedure</enum>
<enum value="pbx" short-label="PBX">Private Branch Exchange</enum>
<enum value="firewall" short-label="FW">Firewall</enum>
<enum value="router" short-label="Rtr">Router</enum>
<enum value="switch" short-label="Swtch">Switch</enum>
<enum value="storage-array" short-label="Store">Storage Array</enum>
</allowed-values>
</constraint>
</extension>
<extension id="interconnection-direction">
<extension-name>interconnection-direction</extension-name>
<formal-name>Interconnection Direction</formal-name>
<description>Identifies the direction of information flow for the interconnection.</description>
<binding pattern="o:component[@component-type='interconnection']/o:prop[@name='direction'][@ns='https://fedramp.gov/ns/oscal']"/>
<constraint>
<matches data-type="token"/>
<allowed-values allow-other="no">
<enum value="incoming" short-label="In">Incoming</enum>
<enum value="outgoing" short-label="Out">Outgoing</enum>
<enum value="incoming-outgoing" short-label="In/Out">Bi-Directional</enum>
</allowed-values>
</constraint>
<remarks>
<p>Deprecated.</p>
<p>Use core OSCAL "direction" <code>prop</code> instead.</p>
</remarks>
</extension>
<extension id="interconnection-security">
<extension-name>interconnection-security</extension-name>
<formal-name>Interconnection Security</formal-name>
<description>Identifies the type of security applied to the interconnection.</description>
<binding pattern="o:component[@component-type='interconnection']/o:prop[@name='connection-security'][@ns='https://fedramp.gov/ns/oscal']/@value"/>
<constraint>
<matches data-type="token"/>
<allowed-values allow-other="no">
<enum value="ipsec" short-label="IPsec">IPsec</enum>
<enum value="vpn" short-label="VPN">Virtual Private Network</enum>
<enum value="ssl" short-label="SSL">Secure Socket Layer</enum>
<enum value="certificate" short-label="Cert">Certificate</enum>
<enum value="secure-file-transfer" short-label="SFT">Secure File Transfer</enum>
<enum value="other" short-label="Other">Other</enum>
</allowed-values>
</constraint>
</extension>
<extension id="inventory-item-state">
<extension-name>inventory-item-state</extension-name>
<formal-name>Different states of inventory items: public, private, et cetera.</formal-name>
<description>Indicates if the asset is virtual.</description>
<binding pattern="o:inventory-item/o:prop[@name='virtual']"/>
<binding pattern="o:component/o:prop[@name='virtual']"/>
<binding pattern="o:inventory-item/o:prop[@name='public']"/>
<binding pattern="component/o:prop[@name='public']"/>
<binding pattern="o:inventory-item/o:prop[@name='allows-authenticated-scan']/@value"/>
<binding pattern="o:component/o:prop[@name='allows-authenticated-scan']/@value"/>
<binding pattern="o:inventory-item/o:prop[@name='is-scanned']/@value"/>
<binding pattern="o:component/o:prop[@name='is-scanned']/@value"/>
<constraint>
<matches data-type="token"/>
<allowed-values allow-other="no">
<enum value="yes" short-label="Y">Yes</enum>
<enum value="no" short-label="N">No</enum>
</allowed-values>
</constraint>
<remarks>
<p>Deprecated.</p>
<p>Use core OSCAL "public" and "virtual" <code>prop</code> instead.</p>
</remarks>
</extension>
<extension id="circuit">
<extension-name>circuit</extension-name>
<formal-name>Service Processor</formal-name>
<description>A circuit used for the communication.</description>
<binding pattern="/o:system-security-plan/o:system-implementation/o:component[@type='interconnection']/o:prop"/>
<constraint>
<matches data-type="string"/>
<has-cardinality min-occurs="1" max-occurs="unbounded"/>
</constraint>
</extension>
<extension id="interconnection-security">
<extension-name>interconnection-security</extension-name>
<formal-name>Interconnection Security</formal-name>
<description>Identifies the mechanisms/protocol(s) used to secure the communication.</description>
<binding pattern="/o:system-security-plan/o:system-implementation/o:component[@type='interconnection']/o:prop"/>
<constraint>
<matches data-type="token"/>
<has-cardinality min-occurs="1" max-occurs="unbounded"/>
<allowed-values allow-other="no">
<enum value="ipsec" label="IPsec">IPsec</enum>
<enum value="vpn" label="VPN">Virtual Private Network</enum>
<enum value="ssl" label="SSL">Secure Socket Layer</enum>
<enum value="certificate" label="Cert">Certificate</enum>
<enum value="secure-file-transfer" label="SFT">Secure File Transfer</enum>
<enum value="other" label="Other">Other</enum>
</allowed-values>
</constraint>
<remarks>
<p>Renamed from "connection-security" to "interconnection-security".</p>
</remarks>
</extension>
<extension id="service-used-by">
<extension-name>used-by</extension-name>
<formal-name>Service Used By</formal-name>
<description>Identifies what uses the service.</description>
<binding pattern="/o:system-security-plan/o:system-implementation/o:component[@type='service']/o:prop"/>
<constraint>
<matches data-type="string"/>
<has-cardinality min-occurs="1" max-occurs="unbounded"/>
</constraint>
</extension>
<extension id="scan-type">
<extension-name>scan-type</extension-name>
<formal-name>Scan Type</formal-name>
<description>Identifies the type(s) of scans to be performed on this inventory-item or component.</description>
<binding pattern="/o:system-security-plan/o:system-implementation/o:component/o:prop"/>
<binding pattern="/o:system-security-plan/o:system-implementation/o:system-inventory/o:o:inventory-item/o:prop"/>
<binding pattern="/o:assessment-plan/o:local-definitions/o:component/o:prop"/>
<binding pattern="/o:assessment-plan/o:local-definitions/o:o:inventory-item/o:prop"/>
<binding pattern="/o:assessment-results/o:result/o:local-definitions/o:component/o:prop"/>
<binding pattern="/o:assessment-results/o:result/o:local-definitions/o:o:inventory-item/o:prop"/>
<constraint>
<matches data-type="token"/>
<has-cardinality min-occurs="0" max-occurs="unbounded"/>
<allowed-values allow-other="no">
<enum value="infrastructure" label="Infrastructure">The component or inventory item is included in operating system (OS) and/or infrastructure scans.</enum>
<enum value="database" label="Database">The component or inventory item is included in Database scans.</enum>
<enum value="web" label="Web">The component or inventory item is included in Web interface/application scans.</enum>
<enum value="other" label="Other">The component or inventory item is included in non-typical scans.</enum>
</allowed-values>
</constraint>
</extension>
<extension id="planned-completion-date">
<extension-name>planned-completion-date</extension-name>
<formal-name>Planned Completion Date</formal-name>
<description>Provides the date the control expects to be implemented. Must be present when Implementation Status is "Planned"</description>
<binding pattern="/o:system-security-plan/o:control-implementation/o:implemented-requirement/o:prop"/>
<constraint>
<matches data-type="date"/>
<has-cardinality min-occurs="0" max-occurs="1"/>
</constraint>
</extension>
<extension id="authorization-recommendation">
<extension-name>authorization-recommendation</extension-name>
<formal-name>Authorization Recommendation</formal-name>
<description>Indicates whether the assessor recommends the system be authorized by the authorizing official.</description>
<binding pattern="/o:assessment-results/o:results/o:prop"/>
<constraint>
<matches data-type="token"/>
<has-cardinality min-occurs="1" max-occurs="1"/>
<allowed-values allow-other="no">
<enum value="yes" label="Yes">Yes, the assessor recommends the system for authorization.</enum>
<enum value="no" label="No">No, the assessor does not recommend the system for authorization.</enum>
</allowed-values>
</constraint>
<remarks>
<p>Deprecated.</p>
<p>Use "recommend-authorization" <code>prop</code> instead.</p>
</remarks>
</extension>
<extension id="title-short">
<extension-name>title-short</extension-name>
<formal-name>Short Title</formal-name>
<description>The short name for the system represented in the resource.</description>
<binding pattern="/o:assessment-plan/o:back-matter/o:resource/o:prop"/>
<binding pattern="/o:plan-of-action-and-milestones/o:back-matter/o:resource/o:prop"/>
<constraint>
<matches data-type="string"/>
<has-cardinality min-occurs="0" max-occurs="1"/>
<!-- TODO: -->
<!-- need constraint to ensure this only appears where the resource represents a system -->
<!-- Need to double-check guidebooks. -->
<!-- Probably needs to be a separate constraint below. -->
</constraint>
</extension>
<extension id="system-id">
<extension-name>system-id</extension-name>
<formal-name>System Identifier</formal-name>
<description>The FedRAMP-assigned identifier for this system.</description>
<binding pattern="/o:assessment-plan/o:back-matter/o:resource/o:prop"/>
<binding pattern="/o:plan-of-action-and-milestones/o:back-matter/o:resource/o:prop"/>
<constraint>
<matches data-type="string"/>
<has-cardinality min-occurs="0" max-occurs="1"/>
<!-- TODO: -->
<!-- need constraint to ensure this only appears where the resource represents a system -->
<!-- Need to double-check guidebooks. -->
<!-- Probably needs to be a separate constraint below. -->
</constraint>
</extension>
<extension id="import-profile">
<extension-name>import-profile</extension-name>
<formal-name>Profile</formal-name>
<description>The baseline/profile for this system based on its FIPS-199 categorization.</description>
<binding pattern="/o:assessment-plan/o:back-matter/o:resource/o:prop"/>
<binding pattern="/o:plan-of-action-and-milestones/o:back-matter/o:resource/o:prop"/>
<constraint>
<matches data-type="uri"/>
<has-cardinality min-occurs="0" max-occurs="1"/>
<!-- TODO: -->
<!-- need constraint to ensure this only appears where the resource represents a system -->
<!-- Need to double-check guidebooks. -->
<!-- Probably needs to be a separate constraint below. -->
</constraint>
</extension>
<extension id="authorization-date">
<extension-name>authorization-date</extension-name>
<formal-name>Authorization Date</formal-name>
<description>The date the system was authorized. Omit or leave blank for an initial authorization.</description>
<binding pattern="/o:assessment-plan/o:back-matter/o:resource/o:prop"/>
<binding pattern="/o:plan-of-action-and-milestones/o:back-matter/o:resource/o:prop"/>
<constraint>
<matches data-type="date"/>
<has-cardinality min-occurs="0" max-occurs="1"/>
<!-- TODO: -->
<!-- need constraint to ensure this only appears where the resource represents a system -->
<!-- Need to double-check guidebooks. -->
<!-- Probably needs to be a separate constraint below. -->
</constraint>
</extension>
<extension id="purpose">
<extension-name>purpose</extension-name>
<formal-name>Purpose</formal-name>
<description>Explains the system's purpose.</description>
<binding pattern="/o:assessment-plan/o:back-matter/o:resource/o:prop"/>
<binding pattern="/o:plan-of-action-and-milestones/o:back-matter/o:resource/o:prop"/>
<constraint>
<matches data-type="string"/>
<has-cardinality min-occurs="0" max-occurs="1"/>
<!-- TODO: -->
<!-- need constraint to ensure this only appears where the resource represents a system -->
<!-- Need to double-check guidebooks. -->
<!-- Probably needs to be a separate constraint below. -->
</constraint>
</extension>
<extension id="description">
<extension-name>description</extension-name>
<formal-name>Description</formal-name>
<description>A brief description of the system.</description>
<binding pattern="/o:assessment-plan/o:back-matter/o:resource/o:prop"/>
<binding pattern="/o:plan-of-action-and-milestones/o:back-matter/o:resource/o:prop"/>
<constraint>
<matches data-type="string"/>
<has-cardinality min-occurs="0" max-occurs="1"/>
<!-- TODO: -->
<!-- need constraint to ensure this only appears where the resource represents a system -->
<!-- Need to double-check guidebooks. -->
<!-- Probably needs to be a separate constraint below. -->
</constraint>
<remarks>
<p>Deprecated.</p>
</remarks>
</extension>
<extension id="sampling">
<extension-name>sampling</extension-name>
<formal-name>Sampling</formal-name>
<description>Indicates whether a sampling methodology was used instead of assessing the entire system.</description>
<binding pattern="/o:assessment-plan/o:assessment-subject/o:prop"/>
<binding pattern="/o:assessment-results/o:results/o:assessment-subject/o:prop"/>
<constraint>
<matches data-type="token"/>
<has-cardinality min-occurs="0" max-occurs="1"/>
<allowed-values allow-other="no">
<enum value="yes" label="Yes">Yes, a sampling methodology was used.</enum>
<enum value="no" label="No">No, a sampling methodology was not used.</enum>
</allowed-values>
</constraint>
</extension>
<extension id="control-objective-implementation-status">
<extension-name>control-objective-implementation-status</extension-name>
<formal-name>Objective Implementation Status</formal-name>
<description>Indicates the implementation status of the control objective.</description>
<binding pattern="/o:assessment-results/o:results/o:finding/o:target/o:prop"/>
<constraint>
<matches data-type="token"/>
<has-cardinality min-occurs="0" max-occurs="1"/>
<allowed-values allow-other="no">
<enum value="implemented" label="Implemented">The assessor finds sufficient evidence to agree the control objective is fully implemented.</enum>
<enum value="partial" label="Partial">The assessor finds evidence to suggest a portion of the control objective is implemented and a portion is not.</enum>
<enum value="planned" label="Planned">The assessor finds this control objective is not implemented, but there is evidence the system owner has a plan for implementing it.</enum>
<enum value="alternative" label="Alternative Implementation">The assessor finds evidence of an alternative implementation, which the assessor judges to provide protection similar enough to satisfy this control.</enum>
<enum value="not-applicable" label="Not Applicable (N/A)">The assessor finds this control objective does not apply to this system.</enum>
</allowed-values>
</constraint>
<remarks>
<p>Deprecated.</p>
<p>Use "implementation-status" <code>prop</code> instead.</p>
</remarks>
</extension>
<extension id="control-implementation-status">
<extension-name>implementation-status</extension-name>
<formal-name>Control Implementation Status</formal-name>
<description>Indicates the implementation status of the control.</description>
<binding pattern="o:implemented-requirement/o:prop[@name='implementation-status']/@value"/>
<binding pattern="/o:assessment-results/o:results/o:finding/o:target/o:prop"/>
<constraint>
<matches data-type="token"/>
<has-cardinality min-occurs="0" max-occurs="1"/>
<allowed-values allow-other="no">
<enum value="implemented" label="Implemented">The assessor finds sufficient evidence to agree the control objective is fully implemented.</enum>
<enum value="partial" label="Partial">The assessor finds evidence to suggest a portion of the control objective is implemented and a portion is not.</enum>
<enum value="planned" label="Planned">The assessor finds this control objective is not implemented, but there is evidence the system owner has a plan for implementing it.</enum>
<enum value="alternative" label="Alternative Implementation">The assessor finds evidence of an alternative implementation, which the assessor judges to provide protection similar enough to satisfy this control.</enum>
<enum value="not-applicable" label="Not Applicable (N/A)">The assessor finds this control objective does not apply to this system.</enum>
</allowed-values>
</constraint>
<remarks>
<p>Updated bindings and constraint.</p>
</remarks>
<!--
<constraint>
<has-cardinality min-occurs="1" max-occurs="unbounded"/>
<remarks>
<p>When an prop is defined as an extension, a separate constraint assembly is needed to specify data type and allowed values on the <code>@value</code> flag.</p>
</remarks>
</constraint>
-->
</extension>
<extension id="leveraged-authorization">
<extension-name>leveraged-authorization-uuid</extension-name>
<formal-name>Leveraged Authorization</formal-name>
<description>Indicates a leveraged authorization used for this control.</description>
<binding pattern="/o:assessment-results/o:results/o:finding/o:target/o:prop"/>
<constraint>
<matches data-type="uuid"/>
<has-cardinality min-occurs="0" max-occurs="unbounded"/>
</constraint>
<remarks>
<p>This is for legacy SSP conversion to OSCAL. The preferred approach is to specify the leveraged system as a <code>component</code> and reference it in the control using <code>by-component</code>.</p>
</remarks>
</extension>
<extension id="control-origination">
<extension-name>control-origination</extension-name>
<formal-name>Control Origination</formal-name>
<description>The point(s) from which the control satisfaction originates.</description>
<binding pattern="implemented-requirement/o:prop[@name='control-origination']/@value"/>
<constraint>
<has-cardinality min-occurs="0" max-occurs="1"/>
<remarks>
<p>When an prop is defined as an extension, a separate constraint assembly is needed to specify data type and allowed values on the <code>@value</code> flag.</p>
</remarks>
<allowed-values allow-other="no">
<enum value="sp-corporate" short-label="SP Corporate">Service Provider (Corporate)</enum>
<enum value="sp-system" short-label="SP System">Service Provider (System Specific)</enum>
<enum value="customer-configured" short-label="Cust. Configured">Configured by Customer</enum>
<enum value="customer-provided" short-label="Cust. Provided">Provided by Customer</enum>
<enum value="inherited" short-label="Inherited">Inherited</enum>
</allowed-values>
</constraint>
</extension>
<extension id="no-oscal-ssp-title-short">
<extension-name>title-short</extension-name>
<formal-name>Short System Name</formal-name>
<description>The abbreviated name for the system, such as an acronym.</description>
<binding pattern="/o:assessment-plan/o:back-matter/o:resource[./o:prop[@name='type'][.='no-oscal-ssp']]/o:prop"/>
<constraint>
<matches data-type="string"/>
<has-cardinality min-occurs="1" max-occurs="1"/>
</constraint>
</extension>
<extension id="no-oscal-ssp-system-id">
<extension-name>system-id</extension-name>
<formal-name>Short System Name</formal-name>
<description>The FedRAMP-assigned system identifier.</description>
<binding pattern="/o:assessment-plan/o:back-matter/o:resource[./o:prop[@name='type'][.='no-oscal-ssp']]/o:prop"/>
<constraint>
<matches data-type="string"/>
<has-cardinality min-occurs="1" max-occurs="1"/>
</constraint>
</extension>
<extension id="no-oscal-ssp-import-profile">
<extension-name>import-profile</extension-name>
<formal-name>Relevant Baseline</formal-name>
<description>Identifies the relevant OSCAL baseline.</description>
<binding pattern="/o:assessment-plan/o:back-matter/o:resource[./o:prop[@name='type'][.='no-oscal-ssp']]/o:prop"/>
<constraint>
<matches data-type="uri"/>
<has-cardinality min-occurs="1" max-occurs="1"/>
</constraint>
<remarks>
<p>As with all URIs in OSCAL, this may contain a URI fragment, which identifies the local resource containing the relevant profile.</p>
</remarks>
</extension>
<extension id="no-oscal-ssp-purpose">
<extension-name>system-id</extension-name>
<formal-name>Short System Name</formal-name>
<description>The FedRAMP-assigned system identifier.</description>
<binding pattern="/o:assessment-plan/o:back-matter/o:resource[./o:prop[@name='type'][.='no-oscal-ssp']]/o:prop"/>
<constraint>
<matches data-type="string"/>
<has-cardinality min-occurs="1" max-occurs="1"/>
</constraint>
</extension>
<extension id="no-oscal-ssp-authorization-date">
<extension-name>authorization-date</extension-name>
<formal-name>Authorization Date</formal-name>
<description>The date of the system's initial FedRAMP authorization.</description>
<binding pattern="/o:assessment-plan/o:back-matter/o:resource[./o:prop[@name='type'][.='no-oscal-ssp']]/o:prop"/>
<constraint>
<matches data-type="dateTime-with-timezone"/>
<has-cardinality min-occurs="1" max-occurs="1"/>
</constraint>
</extension>
<extension id="task-login-url">
<extension-name>login-url</extension-name>
<formal-name>Login URL</formal-name>
<description>The login URL for a web application.</description>
<binding pattern="/o:system-security-plan/o:system-implementation/o:o:inventory-item/o:prop"/>
<binding pattern="/o:assessment-plan//o:task/o:prop"/>
<binding pattern="/o:assessment-results/o:result/o:local-definition/o:o:inventory-item/o:prop"/>
<constraint>
<matches data-type="NCName"/>
</constraint>
<remarks>
<p>Extension renamed from "login-url" to "login-url".</p>
</remarks>
</extension>
<extension id="task-login-id">
<extension-name>login-id</extension-name>
<formal-name>Login ID</formal-name>
<description>The login ID used to assess the web application.</description>
<binding pattern="/o:assessment-plan//o:task/o:prop"/>
<binding pattern="/o:assessment-results/o:result/o:local-definition/o:o:inventory-item/o:prop"/>
<constraint>
<matches data-type="NCName"/>
</constraint>
<remarks>
<p>Extension renamed from "login-id" to "login-id".</p>
</remarks>
</extension>
<extension id="task-test-type">
<extension-name>test-type</extension-name>
<formal-name>Test Type</formal-name>
<description>Indicates the type of test represented by the task.</description>
<binding pattern="/o:assessment-plan//o:task/o:prop"/>
<binding pattern="/o:assessment-results/o:result/o:local-definition/o:o:inventory-item/o:prop"/>
<constraint>
<matches data-type="NCName"/>
<allowed-values>
<enum value="web-application" label="Web Application">This task tests a web application.</enum>
</allowed-values>
</constraint>
</extension>
<extension id="task-user-uuid">
<extension-name>user-uuid</extension-name>
<formal-name>User Identifier</formal-name>
<description>Cites the SSP defined user role to use for testing.</description>
<binding pattern="/o:assessment-plan//o:task/o:prop"/>
<binding pattern="/o:assessment-results/o:result/o:local-definition/o:o:inventory-item/o:prop"/>
<constraint>
<matches data-type="uuid"/>
</constraint>
</extension>
<extension id="poam-id">
<extension-name>poam-id</extension-name>
<formal-name>POA&M ID</formal-name>
<description>A CSP-assigned POA&M identifier.</description>
<binding pattern="/o:plan-of-action-and-milestones/o:poam-item/o:prop"/>
<constraint>
<matches data-type="string"/>
<has-cardinality min-occurs="0" max-occurs="1"/>
</constraint>
</extension>
<extension id="poam-impacted-control">
<extension-name>impacted-control-id</extension-name>
<formal-name>Impacted Control</formal-name>
<description>A control impacted by this POA&M item.</description>
<binding pattern="/o:assessment-results/o:result/o:risk/o:prop"/>
<binding pattern="/o:plan-of-action-and-milestones/o:risk/o:prop"/>
<constraint>
<matches data-type="token"/>
</constraint>
<remarks>
<p>Impacted control is required in the POA&M and optional in the SAR.</p>
<p>It is allowed in the SAR in anticipation of duplicating open risks from the SAR to the POA&M.</p>
</remarks>
</extension>
<extension id="sar-risk-priority">
<extension-name>priority</extension-name>
<formal-name>Risk Priority</formal-name>
<description>Assessor's recommended risk priority. Lower numbers are higher priority. One (1) is highest priority.</description>
<binding pattern="/o:assessment-results/o:result/o:risk/o:prop"/>
<binding pattern="/o:plan-of-action-and-milestones/o:risk/o:prop"/>
<constraint>
<matches data-type="integer"/>
<has-cardinality min-occurs="0" max-occurs="1"/>
</constraint>
</extension>
<extension id="sar-recommend-authorization">
<extension-name>recommend-authorization</extension-name>
<formal-name>Assessor's Authorization Recommendation</formal-name>
<description>Indicates the assessor's recommendation for initial or continued authorization.</description>
<binding pattern="/o:assessment-results/o:result/o:attestation/o:part[@name='authorization-statements']/o:prop"/>
<constraint>
<matches data-type="NCName"/>
<has-cardinality min-occurs="1" max-occurs="1"/>
<allowed-values>
<enum value="yes" label="Yes">The assessor recommends initial or continued authorization.</enum>
<enum value="no" label="No">The assessor does not recommend initial or continued authorization.</enum>
</allowed-values>
</constraint>
</extension>
<extension id="likelihood">
<extension-name>likelihood</extension-name>
<formal-name>Likelihood</formal-name>
<description>The likelihood of a risk.</description>
<binding pattern="o:risk/o:risk-metric[@name='likelihood'][@system='https://fedramp.gov']"/>
<allowed-values allow-other="no">
<enum value="low" short-label="L">Low</enum>
<enum value="moderate" short-label="M">Moderate</enum>
<enum value="high" short-label="H">High</enum>
</allowed-values>
</extension>
<extension id="vulnerability-identifier">
<extension-name>vulnerability-id</extension-name>
<formal-name>Vulnerability Identifier</formal-name>
<description>A tool assigned vulnerability ID.</description>
<binding pattern="/o:plan-of-action-and-milestones/o:risk/o:characterization/o:origin/o:actor[@type='tool']/o:prop"/>
<binding pattern="/o:assessment-results/o:result/o:risk/o:characterization/o:origin/o:actor[@type='tool']/o:prop"/>
<constraint>
<matches data-type="string"/>
<has-cardinality min-occurs="0" max-occurs="1"/>
</constraint>
</extension>
<extension id="plugin-identifier">
<extension-name>plugin-id</extension-name>
<formal-name>Plugin Identifier</formal-name>
<description>A tool assigned Plugin ID.</description>
<binding pattern="/o:plan-of-action-and-milestones/o:risk/o:characterization/o:origin/o:actor[@type='tool']/o:prop"/>
<binding pattern="/o:assessment-results/o:result/o:risk/o:characterization/o:origin/o:actor[@type='tool']/o:prop"/>
<constraint>
<matches data-type="string"/>
<has-cardinality min-occurs="0" max-occurs="1"/>
</constraint>
</extension>
<extension id="operational-requirement">
<extension-name>operational-requirement</extension-name>
<formal-name>Operational Requirement</formal-name>
<description>The risk cannot be remediated without impact to the system and must be accepted.</description>
<binding pattern="/o:plan-of-action-and-milestones/o:risk/o:prop"/>
<binding pattern="/o:assessment-results/o:result/o:risk/o:prop"/>
<binding pattern="/o:plan-of-action-and-milestones/o:observation/o:prop"/>
<binding pattern="/o:assessment-results/o:result/o:observation/o:prop"/>
<constraint>
<matches data-type="token"/>
<has-cardinality min-occurs="0" max-occurs="1"/>
<allowed-values>
<enum value="investigating" label="Investigating">A possible operational requirement is being investigated.</enum>
<enum value="pending" label="Tracking">An operational requirement deviation request was submitted to the AO and is pending adjudication.</enum>