forked from usnistgov/OSCAL
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoscal_assessment-plan_schema.xsd
5157 lines (5157 loc) · 300 KB
/
oscal_assessment-plan_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-ap="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 Assessment Plan Model</m:schema-name>
<m:schema-version>1.0.4</m:schema-version>
<m:short-name>oscal-ap</m:short-name>
<m:remarks>
<p>The OSCAL assessment plan format is used to describe the information typically provided by an assessor during the preparation for an assessment.</p>
<p>The root of the OSCAL assessment plan format is <code>assessment-plan</code>. </p>
</m:remarks>
<m:root>assessment-plan</m:root>
</xs:appinfo>
</xs:annotation>
<xs:element name="assessment-plan"
type="oscal-ap:oscal-ap-assessment-plan-ASSEMBLY"/>
<xs:complexType name="oscal-ap-assessment-plan-ASSEMBLY">
<xs:annotation>
<xs:appinfo>
<m:formal-name>Security Assessment Plan (SAP)</m:formal-name>
<m:description>An assessment plan, such as those provided by a FedRAMP assessor.</m:description>
</xs:appinfo>
<xs:documentation>
<b>Security Assessment Plan (SAP)</b>: An assessment plan, such as those provided by a FedRAMP assessor.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="metadata"
type="oscal-ap:oscal-metadata-metadata-ASSEMBLY"
minOccurs="1"
maxOccurs="1"/>
<xs:element name="import-ssp"
type="oscal-ap:oscal-assessment-common-import-ssp-ASSEMBLY"
minOccurs="1"
maxOccurs="1"/>
<xs:element name="local-definitions" minOccurs="0" maxOccurs="1">
<xs:complexType>
<xs:annotation>
<xs:appinfo>
<m:formal-name>Local Definitions</m:formal-name>
<m:description>Used to define data objects that are used in the assessment plan, that do not appear in the referenced SSP.</m:description>
</xs:appinfo>
<xs:documentation>
<b>Local Definitions</b>: Used to define data objects that are used in the assessment plan, that do not appear in the referenced SSP.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="component"
type="oscal-ap:oscal-implementation-common-system-component-ASSEMBLY"
minOccurs="0"
maxOccurs="unbounded"/>
<xs:element name="inventory-item"
type="oscal-ap:oscal-implementation-common-inventory-item-ASSEMBLY"
minOccurs="0"
maxOccurs="unbounded"/>
<xs:element name="user"
type="oscal-ap:oscal-implementation-common-system-user-ASSEMBLY"
minOccurs="0"
maxOccurs="unbounded"/>
<xs:element name="objectives-and-methods"
type="oscal-ap:oscal-assessment-common-local-objective-ASSEMBLY"
minOccurs="0"
maxOccurs="unbounded"/>
<xs:element name="activity"
type="oscal-ap:oscal-assessment-common-activity-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-ap:blockElementGroup"
maxOccurs="unbounded"
minOccurs="0"/>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="terms-and-conditions" minOccurs="0" maxOccurs="1">
<xs:complexType>
<xs:annotation>
<xs:appinfo>
<m:formal-name>Assessment Plan Terms and Conditions</m:formal-name>
<m:description>Used to define various terms and conditions under which an assessment, described by the plan, can be performed. Each child part defines a different type of term or condition.</m:description>
</xs:appinfo>
<xs:documentation>
<b>Assessment Plan Terms and Conditions</b>: Used to define various terms and conditions under which an assessment, described by the plan, can be performed. Each child part defines a different type of term or condition.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="part"
type="oscal-ap:oscal-assessment-common-assessment-part-ASSEMBLY"
minOccurs="0"
maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="reviewed-controls"
type="oscal-ap:oscal-assessment-common-reviewed-controls-ASSEMBLY"
minOccurs="1"
maxOccurs="1"/>
<xs:element name="assessment-subject"
type="oscal-ap:oscal-assessment-common-assessment-subject-ASSEMBLY"
minOccurs="0"
maxOccurs="unbounded"/>
<xs:element name="assessment-assets"
type="oscal-ap:oscal-assessment-common-assessment-assets-ASSEMBLY"
minOccurs="0"
maxOccurs="1"/>
<xs:element name="task"
type="oscal-ap:oscal-assessment-common-task-ASSEMBLY"
minOccurs="0"
maxOccurs="unbounded"/>
<xs:element name="back-matter"
type="oscal-ap:oscal-metadata-back-matter-ASSEMBLY"
minOccurs="0"
maxOccurs="1"/>
</xs:sequence>
<xs:attribute name="uuid" use="required" type="oscal-ap:uuid">
<xs:annotation>
<xs:appinfo>
<m:formal-name>Assessment Plan 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 assessment plan in <m:a>this or other OSCAL instances</m:a>. The locally defined <m:em>UUID</m:em> of the <m:code>assessment plan</m:code> can be used to reference the data item locally or globally (e.g., in an imported 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>Assessment Plan Universally Unique Identifier</b>: A machine-oriented, globally unique identifier with cross-instance scope that can be used to reference this assessment plan in this or other OSCAL instances. The locally defined UUID of the assessment plan can be used to reference the data item locally or globally (e.g., in an imported 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: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-ap:markupLineType"/>
</xs:complexContent>
</xs:complexType>
</xs:element>
<xs:element name="published"
type="oscal-ap:oscal-metadata-published-FIELD"
minOccurs="0"
maxOccurs="1"/>
<xs:element name="last-modified"
type="oscal-ap:oscal-metadata-last-modified-FIELD"
minOccurs="1"
maxOccurs="1"/>
<xs:element name="version"
type="oscal-ap:oscal-metadata-version-FIELD"
minOccurs="1"
maxOccurs="1"/>
<xs:element name="oscal-version"
type="oscal-ap: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-ap:oscal-metadata-revision-ASSEMBLY"
minOccurs="0"
maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="document-id"
type="oscal-ap:oscal-metadata-document-id-FIELD"
minOccurs="0"
maxOccurs="unbounded"/>
<xs:element name="prop"
type="oscal-ap:oscal-metadata-property-ASSEMBLY"
minOccurs="0"
maxOccurs="unbounded"/>
<xs:element name="link"
type="oscal-ap:oscal-metadata-link-ASSEMBLY"
minOccurs="0"
maxOccurs="unbounded"/>
<xs:element name="role"
type="oscal-ap:oscal-metadata-role-ASSEMBLY"
minOccurs="0"
maxOccurs="unbounded"/>
<xs:element name="location"
type="oscal-ap:oscal-metadata-location-ASSEMBLY"
minOccurs="0"
maxOccurs="unbounded"/>
<xs:element name="party"
type="oscal-ap:oscal-metadata-party-ASSEMBLY"
minOccurs="0"
maxOccurs="unbounded"/>
<xs:element name="responsible-party"
type="oscal-ap: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-ap: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-ap:markupLineType"/>
</xs:complexContent>
</xs:complexType>
</xs:element>
<xs:element name="published"
type="oscal-ap:oscal-metadata-published-FIELD"
minOccurs="0"
maxOccurs="1"/>
<xs:element name="last-modified"
type="oscal-ap:oscal-metadata-last-modified-FIELD"
minOccurs="0"
maxOccurs="1"/>
<xs:element name="version"
type="oscal-ap:oscal-metadata-version-FIELD"
minOccurs="1"
maxOccurs="1"/>
<xs:element name="oscal-version"
type="oscal-ap:oscal-metadata-oscal-version-FIELD"
minOccurs="0"
maxOccurs="1"/>
<xs:element name="prop"
type="oscal-ap:oscal-metadata-property-ASSEMBLY"
minOccurs="0"
maxOccurs="unbounded"/>
<xs:element name="link"
type="oscal-ap: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-ap: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-ap:markupLineType"/>
</xs:complexContent>
</xs:complexType>
</xs:element>
<xs:element name="address"
type="oscal-ap:oscal-metadata-address-ASSEMBLY"
minOccurs="1"
maxOccurs="1"/>
<xs:element name="email-address"
type="oscal-ap:oscal-metadata-email-address-FIELD"
minOccurs="0"
maxOccurs="unbounded"/>
<xs:element name="telephone-number"
type="oscal-ap: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-ap:uri"/>
</xs:simpleType>
</xs:element>
<xs:element name="prop"
type="oscal-ap:oscal-metadata-property-ASSEMBLY"
minOccurs="0"
maxOccurs="unbounded"/>
<xs:element name="link"
type="oscal-ap: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-ap:blockElementGroup"
maxOccurs="unbounded"
minOccurs="0"/>
</xs:complexType>
</xs:element>
</xs:sequence>
<xs:attribute name="uuid" use="required" type="oscal-ap: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-ap: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-ap: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-ap: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-ap:string">
<xs:attribute name="scheme" use="required" type="oscal-ap: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-ap:oscal-metadata-property-ASSEMBLY"
minOccurs="0"
maxOccurs="unbounded"/>
<xs:element name="link"
type="oscal-ap:oscal-metadata-link-ASSEMBLY"
minOccurs="0"
maxOccurs="unbounded"/>
<xs:element name="email-address"
type="oscal-ap:oscal-metadata-email-address-FIELD"
minOccurs="0"
maxOccurs="unbounded"/>
<xs:element name="telephone-number"
type="oscal-ap:oscal-metadata-telephone-number-FIELD"
minOccurs="0"
maxOccurs="unbounded"/>
<xs:choice>
<xs:element name="address"
type="oscal-ap:oscal-metadata-address-ASSEMBLY"
minOccurs="0"
maxOccurs="unbounded"/>
<xs:element name="location-uuid"
type="oscal-ap: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-ap: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-ap:blockElementGroup"
maxOccurs="unbounded"
minOccurs="0"/>
</xs:complexType>
</xs:element>
</xs:sequence>
<xs:attribute name="uuid" use="required" type="oscal-ap: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-ap: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-ap: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-ap: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-ap: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>
<xs:complexContent>
<xs:extension base="oscal-ap:markupMultilineType"/>
</xs:complexContent>
</xs:complexType>
</xs:element>
<xs:element name="prop"
type="oscal-ap:oscal-metadata-property-ASSEMBLY"
minOccurs="0"
maxOccurs="unbounded"/>
<xs:element name="link"
type="oscal-ap: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-ap:blockElementGroup"
maxOccurs="unbounded"
minOccurs="0"/>
</xs:complexType>
</xs:element>
</xs:sequence>
<xs:attribute name="id" use="required" type="oscal-ap:token">
<xs:annotation>
<xs:appinfo>
<m:formal-name>Role 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 role elsewhere in <m:a>this or other OSCAL instances</m:a>. When referenced from another OSCAL instance, the locally defined <m:em>ID</m:em> of the <m:code>Role</m:code> from the imported OSCAL instance must be referenced in the context of the containing resource (e.g., import, import-component-definition, import-profile, import-ssp or import-ap). 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>Role Identifier</b>: A human-oriented, locally unique identifier with cross-instance scope that can be used to reference this defined role elsewhere in this or other OSCAL instances. When referenced from another OSCAL instance, the locally defined ID of the Role from the imported OSCAL instance must be referenced in the context of the containing resource (e.g., import, import-component-definition, import-profile, import-ssp or import-ap). 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:complexType>
<xs:simpleType name="oscal-metadata-role-id-FIELD">
<xs:annotation>
<xs:appinfo>
<m:formal-name>Role Identifier Reference</m:formal-name>
<m:description>A <m:a>human-oriented</m:a> identifier reference to <m:code>roles</m:code> served by the user.</m:description>
</xs:appinfo>
<xs:documentation>
<b>Role Identifier Reference</b>: A human-oriented identifier reference to roles served by the user.</xs:documentation>
</xs:annotation>
<xs:restriction base="oscal-ap:token"/>
</xs:simpleType>
<xs:complexType name="oscal-metadata-back-matter-ASSEMBLY">
<xs:annotation>
<xs:appinfo>
<m:formal-name>Back matter</m:formal-name>
<m:description>A collection of resources, which may be included directly or by reference.</m:description>
</xs:appinfo>
<xs:documentation>
<b>Back matter</b>: A collection of resources, which may be included directly or by reference.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="resource" minOccurs="0" maxOccurs="unbounded">
<xs:complexType>
<xs:annotation>
<xs:appinfo>
<m:formal-name>Resource</m:formal-name>
<m:description>A resource associated with content in the containing document. A resource may be directly included in the document base64 encoded or may point to one or more equivalent internet resources.</m:description>
</xs:appinfo>
<xs:documentation>
<b>Resource</b>: A resource associated with content in the containing document. A resource may be directly included in the document base64 encoded or may point to one or more equivalent internet resources.</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>Resource Title</m:formal-name>
<m:description>A name given to the resource, which may be used by a tool for display and navigation.</m:description>
</xs:appinfo>
<xs:documentation>
<b>Resource Title</b>: A name given to the resource, which may be used by a tool for display and navigation.</xs:documentation>
</xs:annotation>
<xs:complexContent>
<xs:extension base="oscal-ap:markupLineType"/>
</xs:complexContent>
</xs:complexType>
</xs:element>
<xs:element name="description" minOccurs="0" maxOccurs="1">
<xs:complexType>
<xs:annotation>
<xs:appinfo>
<m:formal-name>Resource Description</m:formal-name>
<m:description>A short summary of the resource used to indicate the purpose of the resource.</m:description>
</xs:appinfo>
<xs:documentation>
<b>Resource Description</b>: A short summary of the resource used to indicate the purpose of the resource.</xs:documentation>
</xs:annotation>
<xs:complexContent>
<xs:extension base="oscal-ap:markupMultilineType"/>
</xs:complexContent>
</xs:complexType>
</xs:element>
<xs:element name="prop"
type="oscal-ap:oscal-metadata-property-ASSEMBLY"
minOccurs="0"
maxOccurs="unbounded"/>
<xs:element name="document-id"
type="oscal-ap:oscal-metadata-document-id-FIELD"
minOccurs="0"
maxOccurs="unbounded"/>
<xs:element name="citation" minOccurs="0" maxOccurs="1">
<xs:complexType>
<xs:annotation>
<xs:appinfo>
<m:formal-name>Citation</m:formal-name>
<m:description>A citation consisting of end note text and optional structured bibliographic data.</m:description>
</xs:appinfo>
<xs:documentation>
<b>Citation</b>: A citation consisting of end note text and optional structured bibliographic data.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="text" minOccurs="1" maxOccurs="1">
<xs:complexType mixed="true">
<xs:annotation>
<xs:appinfo>
<m:formal-name>Citation Text</m:formal-name>
<m:description>A line of citation text.</m:description>
</xs:appinfo>
<xs:documentation>
<b>Citation Text</b>: A line of citation text.</xs:documentation>
</xs:annotation>
<xs:complexContent>
<xs:extension base="oscal-ap:markupLineType"/>
</xs:complexContent>
</xs:complexType>
</xs:element>
<xs:element name="prop"
type="oscal-ap:oscal-metadata-property-ASSEMBLY"
minOccurs="0"
maxOccurs="unbounded"/>
<xs:element name="link"
type="oscal-ap:oscal-metadata-link-ASSEMBLY"
minOccurs="0"
maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="rlink" minOccurs="0" maxOccurs="unbounded">
<xs:complexType>
<xs:annotation>
<xs:appinfo>
<m:formal-name>Resource link</m:formal-name>
<m:description>A pointer to an external resource with an optional hash for verification and change detection.</m:description>
</xs:appinfo>
<xs:documentation>
<b>Resource link</b>: A pointer to an external resource with an optional hash for verification and change detection.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="hash"
type="oscal-ap:oscal-metadata-hash-FIELD"
minOccurs="0"
maxOccurs="unbounded"/>
</xs:sequence>
<xs:attribute name="href" use="required" type="oscal-ap:uri-reference">
<xs:annotation>
<xs:appinfo>
<m:formal-name>Hypertext Reference</m:formal-name>
<m:description>A resolvable URI reference to a resource.</m:description>
</xs:appinfo>
<xs:documentation>
<b>Hypertext Reference</b>: A resolvable URI reference to a resource.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="media-type" type="oscal-ap:string">
<xs:annotation>
<xs:appinfo>
<m:formal-name>Media Type</m:formal-name>
<m:description>Specifies a media type as defined by the Internet Assigned Numbers Authority (IANA) <m:a>Media Types Registry</m:a>. </m:description>
</xs:appinfo>
<xs:documentation>
<b>Media Type</b>: Specifies a media type as defined by the Internet Assigned Numbers Authority (IANA) Media Types Registry. </xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
</xs:element>
<xs:element name="base64" minOccurs="0" maxOccurs="1">
<xs:complexType>
<xs:annotation>
<xs:appinfo>
<m:formal-name>Base64</m:formal-name>
<m:description>The Base64 alphabet in RFC 2045 - aligned with XSD.</m:description>
</xs:appinfo>
<xs:documentation>
<b>Base64</b>: The Base64 alphabet in RFC 2045 - aligned with XSD.</xs:documentation>
</xs:annotation>
<xs:simpleContent>
<xs:extension base="xs:base64Binary">
<xs:attribute name="filename" type="oscal-ap:uri-reference">
<xs:annotation>
<xs:appinfo>
<m:formal-name>File Name</m:formal-name>
<m:description>Name of the file before it was encoded as Base64 to be embedded in a <m:code>resource</m:code>. This is the name that will be assigned to the file when the file is decoded.</m:description>
</xs:appinfo>
<xs:documentation>
<b>File Name</b>: Name of the file before it was encoded as Base64 to be embedded in a resource. This is the name that will be assigned to the file when the file is decoded.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="media-type" type="oscal-ap:string">
<xs:annotation>
<xs:appinfo>
<m:formal-name>Media Type</m:formal-name>
<m:description>Specifies a media type as defined by the Internet Assigned Numbers Authority (IANA) <m:a>Media Types Registry</m:a>. </m:description>
</xs:appinfo>
<xs:documentation>
<b>Media Type</b>: Specifies a media type as defined by the Internet Assigned Numbers Authority (IANA) Media Types Registry. </xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</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-ap:blockElementGroup"
maxOccurs="unbounded"
minOccurs="0"/>
</xs:complexType>
</xs:element>
</xs:sequence>
<xs:attribute name="uuid" use="required" type="oscal-ap:uuid">
<xs:annotation>
<xs:appinfo>
<m:formal-name>Resource 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 resource elsewhere in <m:a>this or other OSCAL instances</m:a>. 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>Resource Universally Unique Identifier</b>: A machine-oriented, globally unique identifier with cross-instance scope that can be used to reference this defined resource elsewhere in this or other OSCAL instances. 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:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="oscal-metadata-property-ASSEMBLY">
<xs:annotation>
<xs:appinfo>
<m:formal-name>Property</m:formal-name>
<m:description>An attribute, characteristic, or quality of the containing object expressed as a namespace qualified name/value pair. The value of a property is a simple scalar value, which may be expressed as a list of values.</m:description>
</xs:appinfo>
<xs:documentation>
<b>Property</b>: An attribute, characteristic, or quality of the containing object expressed as a namespace qualified name/value pair. The value of a property is a simple scalar value, which may be expressed as a list of values.</xs:documentation>
</xs:annotation>
<xs:sequence>
<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-ap:blockElementGroup"
maxOccurs="unbounded"
minOccurs="0"/>
</xs:complexType>
</xs:element>
</xs:sequence>
<xs:attribute name="name" use="required" type="oscal-ap:token">
<xs:annotation>
<xs:appinfo>
<m:formal-name>Property Name</m:formal-name>
<m:description>A textual label that uniquely identifies a specific attribute, characteristic, or quality of the property's containing object.</m:description>
</xs:appinfo>
<xs:documentation>
<b>Property Name</b>: A textual label that uniquely identifies a specific attribute, characteristic, or quality of the property's containing object.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="uuid" type="oscal-ap:uuid">
<xs:annotation>
<xs:appinfo>
<m:formal-name>Property 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 property elsewhere in <m:a>this or other OSCAL instances</m:a>. 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>Property Universally Unique Identifier</b>: A machine-oriented, globally unique identifier with cross-instance scope that can be used to reference this defined property elsewhere in this or other OSCAL instances. 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="ns" type="oscal-ap:uri">
<xs:annotation>
<xs:appinfo>
<m:formal-name>Property Namespace</m:formal-name>
<m:description>A namespace qualifying the property's name. This allows different organizations to associate distinct semantics with the same name.</m:description>
</xs:appinfo>
<xs:documentation>
<b>Property Namespace</b>: A namespace qualifying the property's name. This allows different organizations to associate distinct semantics with the same name.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="value" use="required" type="oscal-ap:string">
<xs:annotation>
<xs:appinfo>
<m:formal-name>Property Value</m:formal-name>
<m:description>Indicates the value of the attribute, characteristic, or quality.</m:description>
</xs:appinfo>
<xs:documentation>
<b>Property Value</b>: Indicates the value of the attribute, characteristic, or quality.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="class" type="oscal-ap:token">
<xs:annotation>
<xs:appinfo>
<m:formal-name>Property Class</m:formal-name>
<m:description>A textual label that provides a sub-type or characterization of the property's <m:code>name</m:code>. This can be used to further distinguish or discriminate between the semantics of multiple properties of the same object with the same <m:code>name</m:code> and <m:code>ns</m:code>. </m:description>
</xs:appinfo>
<xs:documentation>
<b>Property Class</b>: A textual label that provides a sub-type or characterization of the property's name. This can be used to further distinguish or discriminate between the semantics of multiple properties of the same object with the same name and ns. </xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
<xs:complexType name="oscal-metadata-link-ASSEMBLY">
<xs:annotation>
<xs:appinfo>
<m:formal-name>Link</m:formal-name>
<m:description>A reference to a local or remote resource</m:description>
</xs:appinfo>
<xs:documentation>
<b>Link</b>: A reference to a local or remote resource</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="text" minOccurs="0" maxOccurs="1">
<xs:complexType mixed="true">
<xs:annotation>
<xs:appinfo>
<m:formal-name>Link Text</m:formal-name>
<m:description>A textual label to associate with the link, which may be used for presentation in a tool.</m:description>
</xs:appinfo>
<xs:documentation>
<b>Link Text</b>: A textual label to associate with the link, which may be used for presentation in a tool.</xs:documentation>
</xs:annotation>
<xs:complexContent>
<xs:extension base="oscal-ap:markupLineType"/>
</xs:complexContent>
</xs:complexType>
</xs:element>
</xs:sequence>
<xs:attribute name="href" use="required" type="oscal-ap:uri-reference">
<xs:annotation>
<xs:appinfo>
<m:formal-name>Hypertext Reference</m:formal-name>
<m:description>A resolvable URL reference to a resource.</m:description>
</xs:appinfo>
<xs:documentation>
<b>Hypertext Reference</b>: A resolvable URL reference to a resource.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="rel" type="oscal-ap:token">
<xs:annotation>
<xs:appinfo>
<m:formal-name>Relation</m:formal-name>
<m:description>Describes the type of relationship provided by the link. This can be an indicator of the link's purpose.</m:description>
</xs:appinfo>
<xs:documentation>
<b>Relation</b>: Describes the type of relationship provided by the link. This can be an indicator of the link's purpose.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="media-type" type="oscal-ap:string">
<xs:annotation>
<xs:appinfo>
<m:formal-name>Media Type</m:formal-name>
<m:description>Specifies a media type as defined by the Internet Assigned Numbers Authority (IANA) <m:a>Media Types Registry</m:a>. </m:description>
</xs:appinfo>
<xs:documentation>
<b>Media Type</b>: Specifies a media type as defined by the Internet Assigned Numbers Authority (IANA) Media Types Registry. </xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
<xs:complexType name="oscal-metadata-responsible-party-ASSEMBLY">
<xs:annotation>
<xs:appinfo>
<m:formal-name>Responsible Party</m:formal-name>
<m:description>A reference to a set of organizations or persons that have responsibility for performing a referenced role in the context of the containing object.</m:description>
</xs:appinfo>
<xs:documentation>
<b>Responsible Party</b>: A reference to a set of organizations or persons that have responsibility for performing a referenced role in the context of the containing object.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="party-uuid"
type="oscal-ap:oscal-metadata-party-uuid-FIELD"
minOccurs="1"
maxOccurs="unbounded"/>
<xs:element name="prop"
type="oscal-ap:oscal-metadata-property-ASSEMBLY"
minOccurs="0"
maxOccurs="unbounded"/>
<xs:element name="link"
type="oscal-ap:oscal-metadata-link-ASSEMBLY"
minOccurs="0"