-
Notifications
You must be signed in to change notification settings - Fork 183
/
oscal_complete_schema.xsd
8786 lines (8786 loc) · 525 KB
/
oscal_complete_schema.xsd
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"?>
<xs:schema xmlns:m="http://csrc.nist.gov/ns/oscal/metaschema/1.0"
xmlns:metaschema-datatypes="http://csrc.nist.gov/ns/oscal/1.0"
xmlns:oscal-complete="http://csrc.nist.gov/ns/oscal/1.0"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
elementFormDefault="qualified"
targetNamespace="http://csrc.nist.gov/ns/oscal/1.0"
version="1.0.4">
<xs:annotation>
<xs:appinfo>
<m:schema-name>OSCAL Unified Model of Models</m:schema-name>
<m:schema-version>1.0.4</m:schema-version>
<m:short-name>oscal-complete</m:short-name>
<m:remarks>
<p>This format represents a combination of all of the OSCAL models.</p>
</m:remarks>
<m:root>catalog</m:root>
<m:root>profile</m:root>
<m:root>component-definition</m:root>
<m:root>system-security-plan</m:root>
<m:root>assessment-plan</m:root>
<m:root>assessment-results</m:root>
<m:root>plan-of-action-and-milestones</m:root>
</xs:appinfo>
</xs:annotation>
<xs:element name="catalog" type="oscal-complete:oscal-catalog-catalog-ASSEMBLY"/>
<xs:complexType name="oscal-catalog-catalog-ASSEMBLY">
<xs:annotation>
<xs:appinfo>
<m:formal-name>Catalog</m:formal-name>
<m:description>A collection of controls.</m:description>
</xs:appinfo>
<xs:documentation>
<b>Catalog</b>: A collection of controls.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="metadata"
type="oscal-complete:oscal-metadata-metadata-ASSEMBLY"
minOccurs="1"
maxOccurs="1"/>
<xs:element name="param"
type="oscal-complete:oscal-catalog-common-parameter-ASSEMBLY"
minOccurs="0"
maxOccurs="unbounded"/>
<xs:element name="control"
type="oscal-complete:oscal-catalog-control-ASSEMBLY"
minOccurs="0"
maxOccurs="unbounded"/>
<xs:element name="group"
type="oscal-complete:oscal-catalog-group-ASSEMBLY"
minOccurs="0"
maxOccurs="unbounded"/>
<xs:element name="back-matter"
type="oscal-complete:oscal-metadata-back-matter-ASSEMBLY"
minOccurs="0"
maxOccurs="1"/>
</xs:sequence>
<xs:attribute name="uuid" use="required" type="oscal-complete:uuid">
<xs:annotation>
<xs:appinfo>
<m:formal-name>Catalog Universally Unique Identifier</m:formal-name>
<m:description>A globally unique identifier with cross-instance scope for this catalog instance. This UUID should be changed when this document is revised.</m:description>
</xs:appinfo>
<xs:documentation>
<b>Catalog Universally Unique Identifier</b>: A globally unique identifier with cross-instance scope for this catalog instance. This UUID should be changed when this document is revised.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
<xs:complexType name="oscal-catalog-group-ASSEMBLY">
<xs:annotation>
<xs:appinfo>
<m:formal-name>Control Group</m:formal-name>
<m:description>A group of controls, or of groups of controls.</m:description>
</xs:appinfo>
<xs:documentation>
<b>Control Group</b>: A group of controls, or of groups of controls.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="title" minOccurs="1" maxOccurs="1">
<xs:complexType mixed="true">
<xs:annotation>
<xs:appinfo>
<m:formal-name>Group Title</m:formal-name>
<m:description>A name given to the group, which may be used by a tool for display and navigation.</m:description>
</xs:appinfo>
<xs:documentation>
<b>Group Title</b>: A name given to the group, which may be used by a tool for display and navigation.</xs:documentation>
</xs:annotation>
<xs:complexContent>
<xs:extension base="oscal-complete:markupLineType"/>
</xs:complexContent>
</xs:complexType>
</xs:element>
<xs:element name="param"
type="oscal-complete:oscal-catalog-common-parameter-ASSEMBLY"
minOccurs="0"
maxOccurs="unbounded"/>
<xs:element name="prop"
type="oscal-complete:oscal-metadata-property-ASSEMBLY"
minOccurs="0"
maxOccurs="unbounded"/>
<xs:element name="link"
type="oscal-complete:oscal-metadata-link-ASSEMBLY"
minOccurs="0"
maxOccurs="unbounded"/>
<xs:element name="part"
type="oscal-complete:oscal-catalog-common-part-ASSEMBLY"
minOccurs="0"
maxOccurs="unbounded"/>
<xs:choice>
<xs:element name="group"
type="oscal-complete:oscal-catalog-group-ASSEMBLY"
minOccurs="0"
maxOccurs="unbounded"/>
<xs:element name="control"
type="oscal-complete:oscal-catalog-control-ASSEMBLY"
minOccurs="0"
maxOccurs="unbounded"/>
</xs:choice>
</xs:sequence>
<xs:attribute name="id" type="oscal-complete:token">
<xs:annotation>
<xs:appinfo>
<m:formal-name>Group Identifier</m:formal-name>
<m:description>A <m:a>human-oriented</m:a>, <m:a>locally unique</m:a> identifier with <m:a>cross-instance</m:a> scope that can be used to reference this defined group elsewhere in <m:a>in this and other OSCAL instances (e.g., profiles)</m:a>. This id should be assigned <m:a>per-subject</m:a>, which means it should be consistently used to identify the same group across revisions of the document.</m:description>
</xs:appinfo>
<xs:documentation>
<b>Group Identifier</b>: A human-oriented, locally unique identifier with cross-instance scope that can be used to reference this defined group elsewhere in in this and other OSCAL instances (e.g., profiles). This id should be assigned per-subject, which means it should be consistently used to identify the same group across revisions of the document.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="class" type="oscal-complete:token">
<xs:annotation>
<xs:appinfo>
<m:formal-name>Group Class</m:formal-name>
<m:description>A textual label that provides a sub-type or characterization of the group.</m:description>
</xs:appinfo>
<xs:documentation>
<b>Group Class</b>: A textual label that provides a sub-type or characterization of the group.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
<xs:complexType name="oscal-catalog-control-ASSEMBLY">
<xs:annotation>
<xs:appinfo>
<m:formal-name>Control</m:formal-name>
<m:description>A structured information object representing a security or privacy control. Each security or privacy control within the Catalog is defined by a distinct control instance.</m:description>
</xs:appinfo>
<xs:documentation>
<b>Control</b>: A structured information object representing a security or privacy control. Each security or privacy control within the Catalog is defined by a distinct control instance.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="title" minOccurs="1" maxOccurs="1">
<xs:complexType mixed="true">
<xs:annotation>
<xs:appinfo>
<m:formal-name>Control Title</m:formal-name>
<m:description>A name given to the control, which may be used by a tool for display and navigation.</m:description>
</xs:appinfo>
<xs:documentation>
<b>Control Title</b>: A name given to the control, which may be used by a tool for display and navigation.</xs:documentation>
</xs:annotation>
<xs:complexContent>
<xs:extension base="oscal-complete:markupLineType"/>
</xs:complexContent>
</xs:complexType>
</xs:element>
<xs:element name="param"
type="oscal-complete:oscal-catalog-common-parameter-ASSEMBLY"
minOccurs="0"
maxOccurs="unbounded"/>
<xs:element name="prop"
type="oscal-complete:oscal-metadata-property-ASSEMBLY"
minOccurs="0"
maxOccurs="unbounded"/>
<xs:element name="link"
type="oscal-complete:oscal-metadata-link-ASSEMBLY"
minOccurs="0"
maxOccurs="unbounded"/>
<xs:element name="part"
type="oscal-complete:oscal-catalog-common-part-ASSEMBLY"
minOccurs="0"
maxOccurs="unbounded"/>
<xs:element name="control"
type="oscal-complete:oscal-catalog-control-ASSEMBLY"
minOccurs="0"
maxOccurs="unbounded"/>
</xs:sequence>
<xs:attribute name="id" use="required" type="oscal-complete:token">
<xs:annotation>
<xs:appinfo>
<m:formal-name>Control Identifier</m:formal-name>
<m:description>A <m:a>human-oriented</m:a>, <m:a>locally unique</m:a> identifier with <m:a>instance</m:a> scope that can be used to reference this control elsewhere <m:a>in this and other OSCAL instances (e.g., profiles)</m:a>. This id should be assigned <m:a>per-subject</m:a>, which means it should be consistently used to identify the same control across revisions of the document.</m:description>
</xs:appinfo>
<xs:documentation>
<b>Control Identifier</b>: A human-oriented, locally unique identifier with instance scope that can be used to reference this control elsewhere in this and other OSCAL instances (e.g., profiles). This id should be assigned per-subject, which means it should be consistently used to identify the same control across revisions of the document.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="class" type="oscal-complete:token">
<xs:annotation>
<xs:appinfo>
<m:formal-name>Control Class</m:formal-name>
<m:description>A textual label that provides a sub-type or characterization of the control.</m:description>
</xs:appinfo>
<xs:documentation>
<b>Control Class</b>: A textual label that provides a sub-type or characterization of the control.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
<xs:complexType name="oscal-catalog-common-part-ASSEMBLY">
<xs:annotation>
<xs:appinfo>
<m:formal-name>Part</m:formal-name>
<m:description>A partition of a control's definition or a child of another part.</m:description>
</xs:appinfo>
<xs:documentation>
<b>Part</b>: A partition of a control's definition or a child of another part.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="title" minOccurs="0" maxOccurs="1">
<xs:complexType mixed="true">
<xs:annotation>
<xs:appinfo>
<m:formal-name>Part Title</m:formal-name>
<m:description>A name given to the part, which may be used by a tool for display and navigation.</m:description>
</xs:appinfo>
<xs:documentation>
<b>Part Title</b>: A name given to the part, which may be used by a tool for display and navigation.</xs:documentation>
</xs:annotation>
<xs:complexContent>
<xs:extension base="oscal-complete:markupLineType"/>
</xs:complexContent>
</xs:complexType>
</xs:element>
<xs:element name="prop"
type="oscal-complete:oscal-metadata-property-ASSEMBLY"
minOccurs="0"
maxOccurs="unbounded"/>
<xs:group ref="oscal-complete:blockElementGroup"
maxOccurs="unbounded"
minOccurs="0"/>
<xs:element name="part"
type="oscal-complete:oscal-catalog-common-part-ASSEMBLY"
minOccurs="0"
maxOccurs="unbounded"/>
<xs:element name="link"
type="oscal-complete:oscal-metadata-link-ASSEMBLY"
minOccurs="0"
maxOccurs="unbounded"/>
</xs:sequence>
<xs:attribute name="id" type="oscal-complete:token">
<xs:annotation>
<xs:appinfo>
<m:formal-name>Part Identifier</m:formal-name>
<m:description>A <m:a>human-oriented</m:a>, <m:a>locally unique</m:a> identifier with <m:a>cross-instance</m:a> scope that can be used to reference this defined part elsewhere in <m:a>this or other OSCAL instances</m:a>. When referenced from another OSCAL instance, this identifier must be referenced in the context of the containing resource (e.g., import-profile). This id should be assigned <m:a>per-subject</m:a>, which means it should be consistently used to identify the same subject across revisions of the document.</m:description>
</xs:appinfo>
<xs:documentation>
<b>Part Identifier</b>: A human-oriented, locally unique identifier with cross-instance scope that can be used to reference this defined part elsewhere in this or other OSCAL instances. When referenced from another OSCAL instance, this identifier must be referenced in the context of the containing resource (e.g., import-profile). This id should be assigned per-subject, which means it should be consistently used to identify the same subject across revisions of the document.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="name" use="required" type="oscal-complete:token">
<xs:annotation>
<xs:appinfo>
<m:formal-name>Part Name</m:formal-name>
<m:description>A textual label that uniquely identifies the part's semantic type.</m:description>
</xs:appinfo>
<xs:documentation>
<b>Part Name</b>: A textual label that uniquely identifies the part's semantic type.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="ns" type="oscal-complete:uri">
<xs:annotation>
<xs:appinfo>
<m:formal-name>Part Namespace</m:formal-name>
<m:description>A namespace qualifying the part's name. This allows different organizations to associate distinct semantics with the same name.</m:description>
</xs:appinfo>
<xs:documentation>
<b>Part Namespace</b>: A namespace qualifying the part's name. This allows different organizations to associate distinct semantics with the same name.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="class" type="oscal-complete:token">
<xs:annotation>
<xs:appinfo>
<m:formal-name>Part Class</m:formal-name>
<m:description>A textual label that provides a sub-type or characterization of the part's <m:code>name</m:code>. This can be used to further distinguish or discriminate between the semantics of multiple parts of the same control with the same <m:code>name</m:code> and <m:code>ns</m:code>. </m:description>
</xs:appinfo>
<xs:documentation>
<b>Part Class</b>: A textual label that provides a sub-type or characterization of the part's name. This can be used to further distinguish or discriminate between the semantics of multiple parts of the same control with the same name and ns. </xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
<xs:complexType name="oscal-catalog-common-parameter-ASSEMBLY">
<xs:annotation>
<xs:appinfo>
<m:formal-name>Parameter</m:formal-name>
<m:description>Parameters provide a mechanism for the dynamic assignment of value(s) in a control.</m:description>
</xs:appinfo>
<xs:documentation>
<b>Parameter</b>: Parameters provide a mechanism for the dynamic assignment of value(s) in a control.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="prop"
type="oscal-complete:oscal-metadata-property-ASSEMBLY"
minOccurs="0"
maxOccurs="unbounded"/>
<xs:element name="link"
type="oscal-complete:oscal-metadata-link-ASSEMBLY"
minOccurs="0"
maxOccurs="unbounded"/>
<xs:element name="label" minOccurs="0" maxOccurs="1">
<xs:complexType mixed="true">
<xs:annotation>
<xs:appinfo>
<m:formal-name>Parameter Label</m:formal-name>
<m:description>A short, placeholder name for the parameter, which can be used as a substitute for a <m:code>value</m:code> if no value is assigned.</m:description>
</xs:appinfo>
<xs:documentation>
<b>Parameter Label</b>: A short, placeholder name for the parameter, which can be used as a substitute for a value if no value is assigned.</xs:documentation>
</xs:annotation>
<xs:complexContent>
<xs:extension base="oscal-complete:markupLineType"/>
</xs:complexContent>
</xs:complexType>
</xs:element>
<xs:element name="usage" minOccurs="0" maxOccurs="1">
<xs:complexType>
<xs:annotation>
<xs:appinfo>
<m:formal-name>Parameter Usage Description</m:formal-name>
<m:description>Describes the purpose and use of a parameter</m:description>
</xs:appinfo>
<xs:documentation>
<b>Parameter Usage Description</b>: Describes the purpose and use of a parameter</xs:documentation>
</xs:annotation>
<xs:complexContent>
<xs:extension base="oscal-complete:markupMultilineType"/>
</xs:complexContent>
</xs:complexType>
</xs:element>
<xs:element name="constraint"
type="oscal-complete:oscal-catalog-common-parameter-constraint-ASSEMBLY"
minOccurs="0"
maxOccurs="unbounded"/>
<xs:element name="guideline"
type="oscal-complete:oscal-catalog-common-parameter-guideline-ASSEMBLY"
minOccurs="0"
maxOccurs="unbounded"/>
<xs:choice>
<xs:element name="value"
type="oscal-complete:oscal-catalog-common-parameter-value-FIELD"
minOccurs="0"
maxOccurs="unbounded"/>
<xs:element name="select"
type="oscal-complete:oscal-catalog-common-parameter-selection-ASSEMBLY"
minOccurs="0"
maxOccurs="1"/>
</xs:choice>
<xs:element name="remarks" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:appinfo>
<m:formal-name>Remarks</m:formal-name>
<m:description>Additional commentary on the containing object.</m:description>
</xs:appinfo>
<xs:documentation>
<b>Remarks</b>: Additional commentary on the containing object.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:group ref="oscal-complete:blockElementGroup"
maxOccurs="unbounded"
minOccurs="0"/>
</xs:complexType>
</xs:element>
</xs:sequence>
<xs:attribute name="id" use="required" type="oscal-complete:token">
<xs:annotation>
<xs:appinfo>
<m:formal-name>Parameter Identifier</m:formal-name>
<m:description>A <m:a>human-oriented</m:a>, <m:a>locally unique</m:a> identifier with <m:a>cross-instance</m:a> scope that can be used to reference this defined parameter elsewhere in <m:a>this or other OSCAL instances</m:a>. When referenced from another OSCAL instance, this identifier must be referenced in the context of the containing resource (e.g., import-profile). This id should be assigned <m:a>per-subject</m:a>, which means it should be consistently used to identify the same subject across revisions of the document.</m:description>
</xs:appinfo>
<xs:documentation>
<b>Parameter Identifier</b>: A human-oriented, locally unique identifier with cross-instance scope that can be used to reference this defined parameter elsewhere in this or other OSCAL instances. When referenced from another OSCAL instance, this identifier must be referenced in the context of the containing resource (e.g., import-profile). This id should be assigned per-subject, which means it should be consistently used to identify the same subject across revisions of the document.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="class" type="oscal-complete:token">
<xs:annotation>
<xs:appinfo>
<m:formal-name>Parameter Class</m:formal-name>
<m:description>A textual label that provides a characterization of the parameter.</m:description>
</xs:appinfo>
<xs:documentation>
<b>Parameter Class</b>: A textual label that provides a characterization of the parameter.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="depends-on" type="oscal-complete:token">
<xs:annotation>
<xs:appinfo>
<m:formal-name>Depends on</m:formal-name>
<m:description>**(deprecated)** Another parameter invoking this one. This construct has been deprecated and should not be used.</m:description>
</xs:appinfo>
<xs:documentation>
<b>Depends on</b>: **(deprecated)** Another parameter invoking this one. This construct has been deprecated and should not be used.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
<xs:complexType name="oscal-catalog-common-parameter-constraint-ASSEMBLY">
<xs:annotation>
<xs:appinfo>
<m:formal-name>Constraint</m:formal-name>
<m:description>A formal or informal expression of a constraint or test</m:description>
</xs:appinfo>
<xs:documentation>
<b>Constraint</b>: A formal or informal expression of a constraint or test</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="description" minOccurs="0" maxOccurs="1">
<xs:complexType>
<xs:annotation>
<xs:appinfo>
<m:formal-name>Constraint Description</m:formal-name>
<m:description>A textual summary of the constraint to be applied.</m:description>
</xs:appinfo>
<xs:documentation>
<b>Constraint Description</b>: A textual summary of the constraint to be applied.</xs:documentation>
</xs:annotation>
<xs:complexContent>
<xs:extension base="oscal-complete:markupMultilineType"/>
</xs:complexContent>
</xs:complexType>
</xs:element>
<xs:element name="test" minOccurs="0" maxOccurs="unbounded">
<xs:complexType>
<xs:annotation>
<xs:appinfo>
<m:formal-name>Constraint Test</m:formal-name>
<m:description>A test expression which is expected to be evaluated by a tool.</m:description>
</xs:appinfo>
<xs:documentation>
<b>Constraint Test</b>: A test expression which is expected to be evaluated by a tool.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="expression" minOccurs="1" maxOccurs="1">
<xs:simpleType>
<xs:annotation>
<xs:appinfo>
<m:formal-name>Constraint test</m:formal-name>
<m:description>A formal (executable) expression of a constraint</m:description>
</xs:appinfo>
<xs:documentation>
<b>Constraint test</b>: A formal (executable) expression of a constraint</xs:documentation>
</xs:annotation>
<xs:restriction base="oscal-complete:string"/>
</xs:simpleType>
</xs:element>
<xs:element name="remarks" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:appinfo>
<m:formal-name>Remarks</m:formal-name>
<m:description>Additional commentary on the containing object.</m:description>
</xs:appinfo>
<xs:documentation>
<b>Remarks</b>: Additional commentary on the containing object.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:group ref="oscal-complete:blockElementGroup"
maxOccurs="unbounded"
minOccurs="0"/>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="oscal-catalog-common-parameter-guideline-ASSEMBLY">
<xs:annotation>
<xs:appinfo>
<m:formal-name>Guideline</m:formal-name>
<m:description>A prose statement that provides a recommendation for the use of a parameter.</m:description>
</xs:appinfo>
<xs:documentation>
<b>Guideline</b>: A prose statement that provides a recommendation for the use of a parameter.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:group ref="oscal-complete:blockElementGroup"
maxOccurs="unbounded"
minOccurs="0"/>
</xs:sequence>
</xs:complexType>
<xs:simpleType name="oscal-catalog-common-parameter-value-FIELD">
<xs:annotation>
<xs:appinfo>
<m:formal-name>Parameter Value</m:formal-name>
<m:description>A parameter value or set of values.</m:description>
</xs:appinfo>
<xs:documentation>
<b>Parameter Value</b>: A parameter value or set of values.</xs:documentation>
</xs:annotation>
<xs:restriction base="oscal-complete:string"/>
</xs:simpleType>
<xs:complexType name="oscal-catalog-common-parameter-selection-ASSEMBLY">
<xs:annotation>
<xs:appinfo>
<m:formal-name>Selection</m:formal-name>
<m:description>Presenting a choice among alternatives</m:description>
</xs:appinfo>
<xs:documentation>
<b>Selection</b>: Presenting a choice among alternatives</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="choice" minOccurs="0" maxOccurs="unbounded">
<xs:complexType mixed="true">
<xs:annotation>
<xs:appinfo>
<m:formal-name>Choice</m:formal-name>
<m:description>A value selection among several such options</m:description>
</xs:appinfo>
<xs:documentation>
<b>Choice</b>: A value selection among several such options</xs:documentation>
</xs:annotation>
<xs:complexContent>
<xs:extension base="oscal-complete:markupLineType"/>
</xs:complexContent>
</xs:complexType>
</xs:element>
</xs:sequence>
<xs:attribute name="how-many" type="oscal-complete:token">
<xs:annotation>
<xs:appinfo>
<m:formal-name>Parameter Cardinality</m:formal-name>
<m:description>Describes the number of selections that must occur. Without this setting, only one value should be assumed to be permitted.</m:description>
</xs:appinfo>
<xs:documentation>
<b>Parameter Cardinality</b>: Describes the number of selections that must occur. Without this setting, only one value should be assumed to be permitted.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
<xs:complexType name="oscal-catalog-common-include-all-ASSEMBLY">
<xs:annotation>
<xs:appinfo>
<m:formal-name>Include All</m:formal-name>
<m:description>Include all controls from the imported catalog or profile resources.</m:description>
</xs:appinfo>
<xs:documentation>
<b>Include All</b>: Include all controls from the imported catalog or profile resources.</xs:documentation>
</xs:annotation>
</xs:complexType>
<xs:complexType name="oscal-metadata-metadata-ASSEMBLY">
<xs:annotation>
<xs:appinfo>
<m:formal-name>Publication metadata</m:formal-name>
<m:description>Provides information about the publication and availability of the containing document.</m:description>
</xs:appinfo>
<xs:documentation>
<b>Publication metadata</b>: Provides information about the publication and availability of the containing document.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="title" minOccurs="1" maxOccurs="1">
<xs:complexType mixed="true">
<xs:annotation>
<xs:appinfo>
<m:formal-name>Document Title</m:formal-name>
<m:description>A name given to the document, which may be used by a tool for display and navigation.</m:description>
</xs:appinfo>
<xs:documentation>
<b>Document Title</b>: A name given to the document, which may be used by a tool for display and navigation.</xs:documentation>
</xs:annotation>
<xs:complexContent>
<xs:extension base="oscal-complete:markupLineType"/>
</xs:complexContent>
</xs:complexType>
</xs:element>
<xs:element name="published"
type="oscal-complete:oscal-metadata-published-FIELD"
minOccurs="0"
maxOccurs="1"/>
<xs:element name="last-modified"
type="oscal-complete:oscal-metadata-last-modified-FIELD"
minOccurs="1"
maxOccurs="1"/>
<xs:element name="version"
type="oscal-complete:oscal-metadata-version-FIELD"
minOccurs="1"
maxOccurs="1"/>
<xs:element name="oscal-version"
type="oscal-complete:oscal-metadata-oscal-version-FIELD"
minOccurs="1"
maxOccurs="1"/>
<xs:element name="revisions" minOccurs="0" maxOccurs="1">
<xs:complexType>
<xs:sequence>
<xs:element name="revision"
type="oscal-complete:oscal-metadata-revision-ASSEMBLY"
minOccurs="0"
maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="document-id"
type="oscal-complete:oscal-metadata-document-id-FIELD"
minOccurs="0"
maxOccurs="unbounded"/>
<xs:element name="prop"
type="oscal-complete:oscal-metadata-property-ASSEMBLY"
minOccurs="0"
maxOccurs="unbounded"/>
<xs:element name="link"
type="oscal-complete:oscal-metadata-link-ASSEMBLY"
minOccurs="0"
maxOccurs="unbounded"/>
<xs:element name="role"
type="oscal-complete:oscal-metadata-role-ASSEMBLY"
minOccurs="0"
maxOccurs="unbounded"/>
<xs:element name="location"
type="oscal-complete:oscal-metadata-location-ASSEMBLY"
minOccurs="0"
maxOccurs="unbounded"/>
<xs:element name="party"
type="oscal-complete:oscal-metadata-party-ASSEMBLY"
minOccurs="0"
maxOccurs="unbounded"/>
<xs:element name="responsible-party"
type="oscal-complete:oscal-metadata-responsible-party-ASSEMBLY"
minOccurs="0"
maxOccurs="unbounded"/>
<xs:element name="remarks" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:appinfo>
<m:formal-name>Remarks</m:formal-name>
<m:description>Additional commentary on the containing object.</m:description>
</xs:appinfo>
<xs:documentation>
<b>Remarks</b>: Additional commentary on the containing object.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:group ref="oscal-complete:blockElementGroup"
maxOccurs="unbounded"
minOccurs="0"/>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="oscal-metadata-revision-ASSEMBLY">
<xs:annotation>
<xs:appinfo>
<m:formal-name>Revision History Entry</m:formal-name>
<m:description>An entry in a sequential list of revisions to the containing document in reverse chronological order (i.e., most recent previous revision first).</m:description>
</xs:appinfo>
<xs:documentation>
<b>Revision History Entry</b>: An entry in a sequential list of revisions to the containing document in reverse chronological order (i.e., most recent previous revision first).</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="title" minOccurs="0" maxOccurs="1">
<xs:complexType mixed="true">
<xs:annotation>
<xs:appinfo>
<m:formal-name>Document Title</m:formal-name>
<m:description>A name given to the document revision, which may be used by a tool for display and navigation.</m:description>
</xs:appinfo>
<xs:documentation>
<b>Document Title</b>: A name given to the document revision, which may be used by a tool for display and navigation.</xs:documentation>
</xs:annotation>
<xs:complexContent>
<xs:extension base="oscal-complete:markupLineType"/>
</xs:complexContent>
</xs:complexType>
</xs:element>
<xs:element name="published"
type="oscal-complete:oscal-metadata-published-FIELD"
minOccurs="0"
maxOccurs="1"/>
<xs:element name="last-modified"
type="oscal-complete:oscal-metadata-last-modified-FIELD"
minOccurs="0"
maxOccurs="1"/>
<xs:element name="version"
type="oscal-complete:oscal-metadata-version-FIELD"
minOccurs="1"
maxOccurs="1"/>
<xs:element name="oscal-version"
type="oscal-complete:oscal-metadata-oscal-version-FIELD"
minOccurs="0"
maxOccurs="1"/>
<xs:element name="prop"
type="oscal-complete:oscal-metadata-property-ASSEMBLY"
minOccurs="0"
maxOccurs="unbounded"/>
<xs:element name="link"
type="oscal-complete:oscal-metadata-link-ASSEMBLY"
minOccurs="0"
maxOccurs="unbounded"/>
<xs:element name="remarks" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:appinfo>
<m:formal-name>Remarks</m:formal-name>
<m:description>Additional commentary on the containing object.</m:description>
</xs:appinfo>
<xs:documentation>
<b>Remarks</b>: Additional commentary on the containing object.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:group ref="oscal-complete:blockElementGroup"
maxOccurs="unbounded"
minOccurs="0"/>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="oscal-metadata-location-ASSEMBLY">
<xs:annotation>
<xs:appinfo>
<m:formal-name>Location</m:formal-name>
<m:description>A location, with associated metadata that can be referenced.</m:description>
</xs:appinfo>
<xs:documentation>
<b>Location</b>: A location, with associated metadata that can be referenced.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="title" minOccurs="0" maxOccurs="1">
<xs:complexType mixed="true">
<xs:annotation>
<xs:appinfo>
<m:formal-name>Location Title</m:formal-name>
<m:description>A name given to the location, which may be used by a tool for display and navigation.</m:description>
</xs:appinfo>
<xs:documentation>
<b>Location Title</b>: A name given to the location, which may be used by a tool for display and navigation.</xs:documentation>
</xs:annotation>
<xs:complexContent>
<xs:extension base="oscal-complete:markupLineType"/>
</xs:complexContent>
</xs:complexType>
</xs:element>
<xs:element name="address"
type="oscal-complete:oscal-metadata-address-ASSEMBLY"
minOccurs="1"
maxOccurs="1"/>
<xs:element name="email-address"
type="oscal-complete:oscal-metadata-email-address-FIELD"
minOccurs="0"
maxOccurs="unbounded"/>
<xs:element name="telephone-number"
type="oscal-complete:oscal-metadata-telephone-number-FIELD"
minOccurs="0"
maxOccurs="unbounded"/>
<xs:element name="url" minOccurs="0" maxOccurs="unbounded">
<xs:simpleType>
<xs:annotation>
<xs:appinfo>
<m:formal-name>Location URL</m:formal-name>
<m:description>The uniform resource locator (URL) for a web site or Internet presence associated with the location.</m:description>
</xs:appinfo>
<xs:documentation>
<b>Location URL</b>: The uniform resource locator (URL) for a web site or Internet presence associated with the location.</xs:documentation>
</xs:annotation>
<xs:restriction base="oscal-complete:uri"/>
</xs:simpleType>
</xs:element>
<xs:element name="prop"
type="oscal-complete:oscal-metadata-property-ASSEMBLY"
minOccurs="0"
maxOccurs="unbounded"/>
<xs:element name="link"
type="oscal-complete:oscal-metadata-link-ASSEMBLY"
minOccurs="0"
maxOccurs="unbounded"/>
<xs:element name="remarks" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:appinfo>
<m:formal-name>Remarks</m:formal-name>
<m:description>Additional commentary on the containing object.</m:description>
</xs:appinfo>
<xs:documentation>
<b>Remarks</b>: Additional commentary on the containing object.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:group ref="oscal-complete:blockElementGroup"
maxOccurs="unbounded"
minOccurs="0"/>
</xs:complexType>
</xs:element>
</xs:sequence>
<xs:attribute name="uuid" use="required" type="oscal-complete:uuid">
<xs:annotation>
<xs:appinfo>
<m:formal-name>Location Universally Unique Identifier</m:formal-name>
<m:description>A <m:a>machine-oriented</m:a>, <m:a>globally unique</m:a> identifier with <m:a>cross-instance</m:a> scope that can be used to reference this defined location elsewhere in <m:a>this or other OSCAL instances</m:a>. The locally defined <m:em>UUID</m:em> of the <m:code>location</m:code> can be used to reference the data item locally or globally (e.g., from an importing OSCAL instance). This UUID should be assigned <m:a>per-subject</m:a>, which means it should be consistently used to identify the same subject across revisions of the document.</m:description>
</xs:appinfo>
<xs:documentation>
<b>Location Universally Unique Identifier</b>: A machine-oriented, globally unique identifier with cross-instance scope that can be used to reference this defined location elsewhere in this or other OSCAL instances. The locally defined UUID of the location can be used to reference the data item locally or globally (e.g., from an importing OSCAL instance). This UUID should be assigned per-subject, which means it should be consistently used to identify the same subject across revisions of the document.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
<xs:simpleType name="oscal-metadata-location-uuid-FIELD">
<xs:annotation>
<xs:appinfo>
<m:formal-name>Location Reference</m:formal-name>
<m:description>A <m:a>machine-oriented</m:a> identifier reference to a <m:code>location</m:code> defined in the <m:code>metadata</m:code> section of this or another OSCAL instance. The <m:em>UUID</m:em> of the <m:code>location</m:code> in the source OSCAL instance is sufficient to reference the data item locally or globally (e.g., in an imported OSCAL instance). </m:description>
</xs:appinfo>
<xs:documentation>
<b>Location Reference</b>: A machine-oriented identifier reference to a location defined in the metadata section of this or another OSCAL instance. The UUID of the location in the source OSCAL instance is sufficient to reference the data item locally or globally (e.g., in an imported OSCAL instance). </xs:documentation>
</xs:annotation>
<xs:restriction base="oscal-complete:uuid"/>
</xs:simpleType>
<xs:complexType name="oscal-metadata-party-ASSEMBLY">
<xs:annotation>
<xs:appinfo>
<m:formal-name>Party (organization or person)</m:formal-name>
<m:description>A responsible entity which is either a person or an organization.</m:description>
</xs:appinfo>
<xs:documentation>
<b>Party (organization or person)</b>: A responsible entity which is either a person or an organization.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="name" minOccurs="0" maxOccurs="1">
<xs:simpleType>
<xs:annotation>
<xs:appinfo>
<m:formal-name>Party Name</m:formal-name>
<m:description>The full name of the party. This is typically the legal name associated with the party.</m:description>
</xs:appinfo>
<xs:documentation>
<b>Party Name</b>: The full name of the party. This is typically the legal name associated with the party.</xs:documentation>
</xs:annotation>
<xs:restriction base="oscal-complete:string"/>
</xs:simpleType>
</xs:element>
<xs:element name="short-name" minOccurs="0" maxOccurs="1">
<xs:simpleType>
<xs:annotation>
<xs:appinfo>
<m:formal-name>Party Short Name</m:formal-name>
<m:description>A short common name, abbreviation, or acronym for the party.</m:description>
</xs:appinfo>
<xs:documentation>
<b>Party Short Name</b>: A short common name, abbreviation, or acronym for the party.</xs:documentation>
</xs:annotation>
<xs:restriction base="oscal-complete:string"/>
</xs:simpleType>
</xs:element>
<xs:element name="external-id" minOccurs="0" maxOccurs="unbounded">
<xs:complexType>
<xs:annotation>
<xs:appinfo>
<m:formal-name>Party External Identifier</m:formal-name>
<m:description>An identifier for a person or organization using a designated scheme. e.g. an Open Researcher and Contributor ID (ORCID)</m:description>
</xs:appinfo>
<xs:documentation>
<b>Party External Identifier</b>: An identifier for a person or organization using a designated scheme. e.g. an Open Researcher and Contributor ID (ORCID)</xs:documentation>
</xs:annotation>
<xs:simpleContent>
<xs:extension base="oscal-complete:string">
<xs:attribute name="scheme" use="required" type="oscal-complete:uri">
<xs:annotation>
<xs:appinfo>
<m:formal-name>External Identifier Schema</m:formal-name>
<m:description>Indicates the type of external identifier.</m:description>
</xs:appinfo>
<xs:documentation>
<b>External Identifier Schema</b>: Indicates the type of external identifier.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
<xs:element name="prop"
type="oscal-complete:oscal-metadata-property-ASSEMBLY"
minOccurs="0"
maxOccurs="unbounded"/>
<xs:element name="link"
type="oscal-complete:oscal-metadata-link-ASSEMBLY"
minOccurs="0"
maxOccurs="unbounded"/>
<xs:element name="email-address"
type="oscal-complete:oscal-metadata-email-address-FIELD"
minOccurs="0"
maxOccurs="unbounded"/>
<xs:element name="telephone-number"
type="oscal-complete:oscal-metadata-telephone-number-FIELD"
minOccurs="0"
maxOccurs="unbounded"/>
<xs:choice>
<xs:element name="address"
type="oscal-complete:oscal-metadata-address-ASSEMBLY"
minOccurs="0"
maxOccurs="unbounded"/>
<xs:element name="location-uuid"
type="oscal-complete:oscal-metadata-location-uuid-FIELD"
minOccurs="0"
maxOccurs="unbounded"/>
</xs:choice>
<xs:element name="member-of-organization" minOccurs="0" maxOccurs="unbounded">
<xs:simpleType>
<xs:annotation>
<xs:appinfo>
<m:formal-name>Organizational Affiliation</m:formal-name>
<m:description>A <m:a>machine-oriented</m:a> identifier reference to another <m:code>party</m:code> (<m:code>person</m:code> or <m:code>organization</m:code>) that this subject is associated with. The <m:em>UUID</m:em> of the <m:code>party</m:code> in the source OSCAL instance is sufficient to reference the data item locally or globally (e.g., in an imported OSCAL instance). </m:description>
</xs:appinfo>
<xs:documentation>
<b>Organizational Affiliation</b>: A machine-oriented identifier reference to another party (person or organization) that this subject is associated with. The UUID of the party in the source OSCAL instance is sufficient to reference the data item locally or globally (e.g., in an imported OSCAL instance). </xs:documentation>
</xs:annotation>
<xs:restriction base="oscal-complete:uuid"/>
</xs:simpleType>
</xs:element>
<xs:element name="remarks" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:appinfo>
<m:formal-name>Remarks</m:formal-name>
<m:description>Additional commentary on the containing object.</m:description>
</xs:appinfo>
<xs:documentation>
<b>Remarks</b>: Additional commentary on the containing object.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:group ref="oscal-complete:blockElementGroup"
maxOccurs="unbounded"
minOccurs="0"/>
</xs:complexType>
</xs:element>
</xs:sequence>
<xs:attribute name="uuid" use="required" type="oscal-complete:uuid">
<xs:annotation>
<xs:appinfo>
<m:formal-name>Party Universally Unique Identifier</m:formal-name>
<m:description>A <m:a>machine-oriented</m:a>, <m:a>globally unique</m:a> identifier with <m:a>cross-instance</m:a> scope that can be used to reference this defined party elsewhere in <m:a>this or other OSCAL instances</m:a>. The locally defined <m:em>UUID</m:em> of the <m:code>party</m:code> can be used to reference the data item locally or globally (e.g., from an importing OSCAL instance). This UUID should be assigned <m:a>per-subject</m:a>, which means it should be consistently used to identify the same subject across revisions of the document.</m:description>
</xs:appinfo>
<xs:documentation>
<b>Party Universally Unique Identifier</b>: A machine-oriented, globally unique identifier with cross-instance scope that can be used to reference this defined party elsewhere in this or other OSCAL instances. The locally defined UUID of the party can be used to reference the data item locally or globally (e.g., from an importing OSCAL instance). This UUID should be assigned per-subject, which means it should be consistently used to identify the same subject across revisions of the document.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="type" use="required" type="oscal-complete:string">
<xs:annotation>
<xs:appinfo>
<m:formal-name>Party Type</m:formal-name>
<m:description>A category describing the kind of party the object describes.</m:description>
</xs:appinfo>
<xs:documentation>
<b>Party Type</b>: A category describing the kind of party the object describes.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
<xs:simpleType name="oscal-metadata-party-uuid-FIELD">
<xs:annotation>
<xs:appinfo>
<m:formal-name>Party Reference</m:formal-name>
<m:description>A <m:a>machine-oriented</m:a> identifier reference to another <m:code>party</m:code> defined in <m:code>metadata</m:code>. The <m:em>UUID</m:em> of the <m:code>party</m:code> in the source OSCAL instance is sufficient to reference the data item locally or globally (e.g., in an imported OSCAL instance). </m:description>
</xs:appinfo>
<xs:documentation>
<b>Party Reference</b>: A machine-oriented identifier reference to another party defined in metadata. The UUID of the party in the source OSCAL instance is sufficient to reference the data item locally or globally (e.g., in an imported OSCAL instance). </xs:documentation>
</xs:annotation>
<xs:restriction base="oscal-complete:uuid"/>
</xs:simpleType>
<xs:complexType name="oscal-metadata-role-ASSEMBLY">
<xs:annotation>
<xs:appinfo>
<m:formal-name>Role</m:formal-name>
<m:description>Defines a function assumed or expected to be assumed by a party in a specific situation.</m:description>
</xs:appinfo>
<xs:documentation>
<b>Role</b>: Defines a function assumed or expected to be assumed by a party in a specific situation.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="title" minOccurs="1" maxOccurs="1">
<xs:complexType mixed="true">
<xs:annotation>
<xs:appinfo>
<m:formal-name>Role Title</m:formal-name>
<m:description>A name given to the role, which may be used by a tool for display and navigation.</m:description>
</xs:appinfo>
<xs:documentation>
<b>Role Title</b>: A name given to the role, which may be used by a tool for display and navigation.</xs:documentation>
</xs:annotation>
<xs:complexContent>
<xs:extension base="oscal-complete:markupLineType"/>
</xs:complexContent>
</xs:complexType>
</xs:element>
<xs:element name="short-name" minOccurs="0" maxOccurs="1">
<xs:simpleType>
<xs:annotation>
<xs:appinfo>
<m:formal-name>Role Short Name</m:formal-name>
<m:description>A short common name, abbreviation, or acronym for the role.</m:description>
</xs:appinfo>
<xs:documentation>
<b>Role Short Name</b>: A short common name, abbreviation, or acronym for the role.</xs:documentation>
</xs:annotation>
<xs:restriction base="oscal-complete:string"/>
</xs:simpleType>
</xs:element>
<xs:element name="description" minOccurs="0" maxOccurs="1">
<xs:complexType>
<xs:annotation>
<xs:appinfo>
<m:formal-name>Role Description</m:formal-name>
<m:description>A summary of the role's purpose and associated responsibilities.</m:description>
</xs:appinfo>
<xs:documentation>
<b>Role Description</b>: A summary of the role's purpose and associated responsibilities.</xs:documentation>
</xs:annotation>