-
Notifications
You must be signed in to change notification settings - Fork 1
/
oscal_component_schema-fixed.json
2188 lines (2188 loc) · 80.2 KB
/
oscal_component_schema-fixed.json
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
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "http://csrc.nist.gov/ns/oscal/1.1.2/oscal-component-definition-schema.json",
"$comment": "OSCAL Component Definition Model: JSON Schema",
"type": "object",
"definitions": {
"json-schema-directive": {
"title": "Schema Directive",
"description": "A JSON Schema directive to bind a specific schema to its document instance.",
"$id": "#json-schema-directive",
"$ref": "#/definitions/URIReferenceDatatype"
},
"oscal-component-definition-oscal-component-definition:component-definition": {
"title": "Component Definition",
"description": "A collection of component descriptions, which may optionally be grouped by capability.",
"$id": "#assembly_oscal-component-definition_component-definition",
"type": "object",
"properties": {
"uuid": {
"title": "Component Definition Universally Unique Identifier",
"description": "Provides a globally unique means to identify a given component definition instance.",
"$ref": "#/definitions/UUIDDatatype"
},
"metadata": {
"$ref": "#/definitions/oscal-component-definition-oscal-metadata:metadata"
},
"import-component-definitions": {
"type": "array",
"minItems": 1,
"items": {
"$ref": "#/definitions/oscal-component-definition-oscal-component-definition:import-component-definition"
}
},
"components": {
"type": "array",
"minItems": 1,
"items": {
"$ref": "#/definitions/oscal-component-definition-oscal-component-definition:defined-component"
}
},
"capabilities": {
"type": "array",
"minItems": 1,
"items": {
"$ref": "#/definitions/oscal-component-definition-oscal-component-definition:capability"
}
},
"back-matter": {
"$ref": "#/definitions/oscal-component-definition-oscal-metadata:back-matter"
}
},
"required": [
"uuid",
"metadata"
],
"additionalProperties": false
},
"oscal-component-definition-oscal-component-definition:import-component-definition": {
"title": "Import Component Definition",
"description": "Loads a component definition from another resource.",
"$id": "#assembly_oscal-component-definition_import-component-definition",
"type": "object",
"properties": {
"href": {
"title": "Hyperlink Reference",
"description": "A link to a resource that defines a set of components and/or capabilities to import into this collection.",
"$ref": "#/definitions/URIReferenceDatatype"
}
},
"required": [
"href"
],
"additionalProperties": false
},
"oscal-component-definition-oscal-component-definition:defined-component": {
"title": "Component",
"description": "A defined component that can be part of an implemented system.",
"$id": "#assembly_oscal-component-definition_defined-component",
"type": "object",
"properties": {
"uuid": {
"title": "Component Identifier",
"description": "Provides a globally unique means to identify a given component.",
"$ref": "#/definitions/UUIDDatatype"
},
"type": {
"title": "Component Type",
"description": "A category describing the purpose of the component.",
"anyOf": [
{
"$ref": "#/definitions/StringDatatype"
},
{
"enum": [
"interconnection",
"software",
"hardware",
"service",
"policy",
"physical",
"process-procedure",
"plan",
"guidance",
"standard",
"validation"
]
}
]
},
"title": {
"title": "Component Title",
"description": "A human readable name for the component.",
"type": "string"
},
"description": {
"title": "Component Description",
"description": "A description of the component, including information about its function.",
"type": "string"
},
"purpose": {
"title": "Purpose",
"description": "A summary of the technological or business purpose of the component.",
"type": "string"
},
"props": {
"type": "array",
"minItems": 1,
"items": {
"$ref": "#/definitions/oscal-component-definition-oscal-metadata:property"
}
},
"links": {
"type": "array",
"minItems": 1,
"items": {
"$ref": "#/definitions/oscal-component-definition-oscal-metadata:link"
}
},
"responsible-roles": {
"type": "array",
"minItems": 1,
"items": {
"$ref": "#/definitions/oscal-component-definition-oscal-metadata:responsible-role"
}
},
"protocols": {
"type": "array",
"minItems": 1,
"items": {
"$ref": "#/definitions/oscal-component-definition-oscal-implementation-common:protocol"
}
},
"control-implementations": {
"type": "array",
"minItems": 1,
"items": {
"$ref": "#/definitions/oscal-component-definition-oscal-component-definition:control-implementation"
}
},
"remarks": {
"$ref": "#/definitions/oscal-component-definition-oscal-metadata:remarks"
}
},
"required": [
"uuid",
"type",
"title",
"description"
],
"additionalProperties": false
},
"oscal-component-definition-oscal-component-definition:capability": {
"title": "Capability",
"description": "A grouping of other components and/or capabilities.",
"$id": "#assembly_oscal-component-definition_capability",
"type": "object",
"properties": {
"uuid": {
"title": "Capability Identifier",
"description": "Provides a globally unique means to identify a given capability.",
"$ref": "#/definitions/UUIDDatatype"
},
"name": {
"title": "Capability Name",
"description": "The capability's human-readable name.",
"$ref": "#/definitions/StringDatatype"
},
"description": {
"title": "Capability Description",
"description": "A summary of the capability.",
"type": "string"
},
"props": {
"type": "array",
"minItems": 1,
"items": {
"$ref": "#/definitions/oscal-component-definition-oscal-metadata:property"
}
},
"links": {
"type": "array",
"minItems": 1,
"items": {
"$ref": "#/definitions/oscal-component-definition-oscal-metadata:link"
}
},
"incorporates-components": {
"type": "array",
"minItems": 1,
"items": {
"$ref": "#/definitions/oscal-component-definition-oscal-component-definition:incorporates-component"
}
},
"control-implementations": {
"type": "array",
"minItems": 1,
"items": {
"$ref": "#/definitions/oscal-component-definition-oscal-component-definition:control-implementation"
}
},
"remarks": {
"$ref": "#/definitions/oscal-component-definition-oscal-metadata:remarks"
}
},
"required": [
"uuid",
"name",
"description"
],
"additionalProperties": false
},
"oscal-component-definition-oscal-component-definition:incorporates-component": {
"title": "Incorporates Component",
"description": "The collection of components comprising this capability.",
"$id": "#assembly_oscal-component-definition_incorporates-component",
"type": "object",
"properties": {
"component-uuid": {
"title": "Component Reference",
"description": "A machine-oriented identifier reference to a component.",
"$ref": "#/definitions/UUIDDatatype"
},
"description": {
"title": "Component Description",
"description": "A description of the component, including information about its function.",
"type": "string"
}
},
"required": [
"component-uuid",
"description"
],
"additionalProperties": false
},
"oscal-component-definition-oscal-component-definition:control-implementation": {
"title": "Control Implementation Set",
"description": "Defines how the component or capability supports a set of controls.",
"$id": "#assembly_oscal-component-definition_control-implementation",
"type": "object",
"properties": {
"uuid": {
"title": "Control Implementation Set Identifier",
"description": "Provides a means to identify a set of control implementations that are supported by a given component or capability.",
"$ref": "#/definitions/UUIDDatatype"
},
"source": {
"title": "Source Resource Reference",
"description": "A reference to an OSCAL catalog or profile providing the referenced control or subcontrol definition.",
"$ref": "#/definitions/URIReferenceDatatype"
},
"description": {
"title": "Control Implementation Description",
"description": "A description of how the specified set of controls are implemented for the containing component or capability.",
"type": "string"
},
"props": {
"type": "array",
"minItems": 1,
"items": {
"$ref": "#/definitions/oscal-component-definition-oscal-metadata:property"
}
},
"links": {
"type": "array",
"minItems": 1,
"items": {
"$ref": "#/definitions/oscal-component-definition-oscal-metadata:link"
}
},
"set-parameters": {
"type": "array",
"minItems": 1,
"items": {
"$ref": "#/definitions/oscal-component-definition-oscal-implementation-common:set-parameter"
}
},
"implemented-requirements": {
"type": "array",
"minItems": 1,
"items": {
"$ref": "#/definitions/oscal-component-definition-oscal-component-definition:implemented-requirement"
}
}
},
"required": [
"uuid",
"source",
"description",
"implemented-requirements"
],
"additionalProperties": false
},
"oscal-component-definition-oscal-component-definition:implemented-requirement": {
"title": "Control Implementation",
"description": "Describes how the containing component or capability implements an individual control.",
"$id": "#assembly_oscal-component-definition_implemented-requirement",
"type": "object",
"properties": {
"uuid": {
"title": "Control Implementation Identifier",
"description": "Provides a globally unique means to identify a given control implementation by a component.",
"$ref": "#/definitions/UUIDDatatype"
},
"control-id": {
"title": "Control Identifier Reference",
"description": "A reference to a control with a corresponding id value. When referencing an externally defined control, the Control Identifier Reference must be used in the context of the external / imported OSCAL instance (e.g., uri-reference).",
"$ref": "#/definitions/TokenDatatype"
},
"description": {
"title": "Control Implementation Description",
"description": "A suggestion from the supplier (e.g., component vendor or author) for how the specified control may be implemented if the containing component or capability is instantiated in a system security plan.",
"type": "string"
},
"props": {
"type": "array",
"minItems": 1,
"items": {
"$ref": "#/definitions/oscal-component-definition-oscal-metadata:property"
}
},
"links": {
"type": "array",
"minItems": 1,
"items": {
"$ref": "#/definitions/oscal-component-definition-oscal-metadata:link"
}
},
"set-parameters": {
"type": "array",
"minItems": 1,
"items": {
"$ref": "#/definitions/oscal-component-definition-oscal-implementation-common:set-parameter"
}
},
"responsible-roles": {
"type": "array",
"minItems": 1,
"items": {
"$ref": "#/definitions/oscal-component-definition-oscal-metadata:responsible-role"
}
},
"statements": {
"type": "array",
"minItems": 1,
"items": {
"$ref": "#/definitions/oscal-component-definition-oscal-component-definition:statement"
}
},
"remarks": {
"$ref": "#/definitions/oscal-component-definition-oscal-metadata:remarks"
}
},
"required": [
"uuid",
"control-id",
"description"
],
"additionalProperties": false
},
"oscal-component-definition-oscal-component-definition:statement": {
"title": "Control Statement Implementation",
"description": "Identifies which statements within a control are addressed.",
"$id": "#assembly_oscal-component-definition_statement",
"type": "object",
"properties": {
"statement-id": {
"title": "Control Statement Reference",
"description": "A human-oriented identifier reference to a control statement.",
"$ref": "#/definitions/TokenDatatype"
},
"uuid": {
"title": "Control Statement Reference Universally Unique Identifier",
"description": "A machine-oriented, globally unique identifier with cross-instance scope that can be used to reference this control statement elsewhere in this or other OSCAL instances. The UUID of the control statement in the source OSCAL instance is sufficient to reference the data item locally or globally (e.g., in an imported OSCAL instance).",
"$ref": "#/definitions/UUIDDatatype"
},
"description": {
"title": "Statement Implementation Description",
"description": "A summary of how the containing control statement is implemented by the component or capability.",
"type": "string"
},
"props": {
"type": "array",
"minItems": 1,
"items": {
"$ref": "#/definitions/oscal-component-definition-oscal-metadata:property"
}
},
"links": {
"type": "array",
"minItems": 1,
"items": {
"$ref": "#/definitions/oscal-component-definition-oscal-metadata:link"
}
},
"responsible-roles": {
"type": "array",
"minItems": 1,
"items": {
"$ref": "#/definitions/oscal-component-definition-oscal-metadata:responsible-role"
}
},
"remarks": {
"$ref": "#/definitions/oscal-component-definition-oscal-metadata:remarks"
}
},
"required": [
"statement-id",
"uuid",
"description"
],
"additionalProperties": false
},
"oscal-component-definition-oscal-implementation-common:system-component": {
"title": "Component",
"description": "A defined component that can be part of an implemented system.",
"$id": "#assembly_oscal-implementation-common_system-component",
"type": "object",
"properties": {
"uuid": {
"title": "Component Identifier",
"description": "A machine-oriented, globally unique identifier with cross-instance scope that can be used to reference this component elsewhere in this or other OSCAL instances. The locally defined UUID of the component 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.",
"$ref": "#/definitions/UUIDDatatype"
},
"type": {
"title": "Component Type",
"description": "A category describing the purpose of the component.",
"anyOf": [
{
"$ref": "#/definitions/StringDatatype"
},
{
"enum": [
"this-system",
"system",
"interconnection",
"software",
"hardware",
"service",
"policy",
"physical",
"process-procedure",
"plan",
"guidance",
"standard",
"validation",
"network"
]
}
]
},
"title": {
"title": "Component Title",
"description": "A human readable name for the system component.",
"type": "string"
},
"description": {
"title": "Component Description",
"description": "A description of the component, including information about its function.",
"type": "string"
},
"purpose": {
"title": "Purpose",
"description": "A summary of the technological or business purpose of the component.",
"type": "string"
},
"props": {
"type": "array",
"minItems": 1,
"items": {
"$ref": "#/definitions/oscal-component-definition-oscal-metadata:property"
}
},
"links": {
"type": "array",
"minItems": 1,
"items": {
"$ref": "#/definitions/oscal-component-definition-oscal-metadata:link"
}
},
"status": {
"title": "Status",
"description": "Describes the operational status of the system component.",
"type": "object",
"properties": {
"state": {
"title": "State",
"description": "The operational status.",
"allOf": [
{
"$ref": "#/definitions/TokenDatatype"
},
{
"enum": [
"under-development",
"operational",
"disposition",
"other"
]
}
]
},
"remarks": {
"$ref": "#/definitions/oscal-component-definition-oscal-metadata:remarks"
}
},
"required": [
"state"
],
"additionalProperties": false
},
"responsible-roles": {
"type": "array",
"minItems": 1,
"items": {
"$ref": "#/definitions/oscal-component-definition-oscal-metadata:responsible-role"
}
},
"protocols": {
"type": "array",
"minItems": 1,
"items": {
"$ref": "#/definitions/oscal-component-definition-oscal-implementation-common:protocol"
}
},
"remarks": {
"$ref": "#/definitions/oscal-component-definition-oscal-metadata:remarks"
}
},
"required": [
"uuid",
"type",
"title",
"description",
"status"
],
"additionalProperties": false
},
"oscal-component-definition-oscal-implementation-common:protocol": {
"title": "Service Protocol Information",
"description": "Information about the protocol used to provide a service.",
"$id": "#assembly_oscal-implementation-common_protocol",
"type": "object",
"properties": {
"uuid": {
"title": "Service Protocol Information Universally Unique Identifier",
"description": "A machine-oriented, globally unique identifier with cross-instance scope that can be used to reference this service protocol information elsewhere in this or other OSCAL instances. The locally defined UUID of the service protocol 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.",
"$ref": "#/definitions/UUIDDatatype"
},
"name": {
"title": "Protocol Name",
"description": "The common name of the protocol, which should be the appropriate \"service name\" from the IANA Service Name and Transport Protocol Port Number Registry.",
"$ref": "#/definitions/StringDatatype"
},
"title": {
"title": "Protocol Title",
"description": "A human readable name for the protocol (e.g., Transport Layer Security).",
"type": "string"
},
"port-ranges": {
"type": "array",
"minItems": 1,
"items": {
"$ref": "#/definitions/oscal-component-definition-oscal-implementation-common:port-range"
}
}
},
"required": [
"name"
],
"additionalProperties": false
},
"oscal-component-definition-oscal-implementation-common:port-range": {
"title": "Port Range",
"description": "Where applicable this is the IPv4 port range on which the service operates.",
"$id": "#assembly_oscal-implementation-common_port-range",
"type": "object",
"properties": {
"start": {
"title": "Start",
"description": "Indicates the starting port number in a port range",
"$ref": "#/definitions/NonNegativeIntegerDatatype"
},
"end": {
"title": "End",
"description": "Indicates the ending port number in a port range",
"$ref": "#/definitions/NonNegativeIntegerDatatype"
},
"transport": {
"title": "Transport",
"description": "Indicates the transport type.",
"allOf": [
{
"$ref": "#/definitions/TokenDatatype"
},
{
"enum": [
"TCP",
"UDP"
]
}
]
}
},
"additionalProperties": false
},
"oscal-component-definition-oscal-implementation-common:implementation-status": {
"title": "Implementation Status",
"description": "Indicates the degree to which the a given control is implemented.",
"$id": "#assembly_oscal-implementation-common_implementation-status",
"type": "object",
"properties": {
"state": {
"title": "Implementation State",
"description": "Identifies the implementation status of the control or control objective.",
"anyOf": [
{
"$ref": "#/definitions/TokenDatatype"
},
{
"enum": [
"implemented",
"partial",
"planned",
"alternative",
"not-applicable"
]
}
]
},
"remarks": {
"$ref": "#/definitions/oscal-component-definition-oscal-metadata:remarks"
}
},
"required": [
"state"
],
"additionalProperties": false
},
"oscal-component-definition-oscal-implementation-common:system-user": {
"title": "System User",
"description": "A type of user that interacts with the system based on an associated role.",
"$id": "#assembly_oscal-implementation-common_system-user",
"type": "object",
"properties": {
"uuid": {
"title": "User Universally Unique Identifier",
"description": "A machine-oriented, globally unique identifier with cross-instance scope that can be used to reference this user class elsewhere in this or other OSCAL instances. The locally defined UUID of the system user 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.",
"$ref": "#/definitions/UUIDDatatype"
},
"title": {
"title": "User Title",
"description": "A name given to the user, which may be used by a tool for display and navigation.",
"type": "string"
},
"short-name": {
"title": "User Short Name",
"description": "A short common name, abbreviation, or acronym for the user.",
"$ref": "#/definitions/StringDatatype"
},
"description": {
"title": "User Description",
"description": "A summary of the user's purpose within the system.",
"type": "string"
},
"props": {
"type": "array",
"minItems": 1,
"items": {
"$ref": "#/definitions/oscal-component-definition-oscal-metadata:property"
}
},
"links": {
"type": "array",
"minItems": 1,
"items": {
"$ref": "#/definitions/oscal-component-definition-oscal-metadata:link"
}
},
"role-ids": {
"type": "array",
"minItems": 1,
"items": {
"$ref": "#/definitions/oscal-component-definition-oscal-metadata:role-id"
}
},
"authorized-privileges": {
"type": "array",
"minItems": 1,
"items": {
"$ref": "#/definitions/oscal-component-definition-oscal-implementation-common:authorized-privilege"
}
},
"remarks": {
"$ref": "#/definitions/oscal-component-definition-oscal-metadata:remarks"
}
},
"required": [
"uuid"
],
"additionalProperties": false
},
"oscal-component-definition-oscal-implementation-common:authorized-privilege": {
"title": "Privilege",
"description": "Identifies a specific system privilege held by the user, along with an associated description and/or rationale for the privilege.",
"$id": "#assembly_oscal-implementation-common_authorized-privilege",
"type": "object",
"properties": {
"title": {
"title": "Privilege Title",
"description": "A human readable name for the privilege.",
"type": "string"
},
"description": {
"title": "Privilege Description",
"description": "A summary of the privilege's purpose within the system.",
"type": "string"
},
"functions-performed": {
"type": "array",
"minItems": 1,
"items": {
"$ref": "#/definitions/oscal-component-definition-oscal-implementation-common:function-performed"
}
}
},
"required": [
"title",
"functions-performed"
],
"additionalProperties": false
},
"oscal-component-definition-oscal-implementation-common:function-performed": {
"title": "Functions Performed",
"description": "Describes a function performed for a given authorized privilege by this user class.",
"$id": "#field_oscal-implementation-common_function-performed",
"$ref": "#/definitions/StringDatatype"
},
"oscal-component-definition-oscal-implementation-common:inventory-item": {
"title": "Inventory Item",
"description": "A single managed inventory item within the system.",
"$id": "#assembly_oscal-implementation-common_inventory-item",
"type": "object",
"properties": {
"uuid": {
"title": "Inventory Item Universally Unique Identifier",
"description": "A machine-oriented, globally unique identifier with cross-instance scope that can be used to reference this inventory item elsewhere in this or other OSCAL instances. The locally defined UUID of the inventory item 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.",
"$ref": "#/definitions/UUIDDatatype"
},
"description": {
"title": "Inventory Item Description",
"description": "A summary of the inventory item stating its purpose within the system.",
"type": "string"
},
"props": {
"type": "array",
"minItems": 1,
"items": {
"$ref": "#/definitions/oscal-component-definition-oscal-metadata:property"
}
},
"links": {
"type": "array",
"minItems": 1,
"items": {
"$ref": "#/definitions/oscal-component-definition-oscal-metadata:link"
}
},
"responsible-parties": {
"type": "array",
"minItems": 1,
"items": {
"$ref": "#/definitions/oscal-component-definition-oscal-metadata:responsible-party"
}
},
"implemented-components": {
"type": "array",
"minItems": 1,
"items": {
"title": "Implemented Component",
"description": "The set of components that are implemented in a given system inventory item.",
"type": "object",
"properties": {
"component-uuid": {
"title": "Component Universally Unique Identifier Reference",
"description": "A machine-oriented identifier reference to a component that is implemented as part of an inventory item.",
"$ref": "#/definitions/UUIDDatatype"
},
"props": {
"type": "array",
"minItems": 1,
"items": {
"$ref": "#/definitions/oscal-component-definition-oscal-metadata:property"
}
},
"links": {
"type": "array",
"minItems": 1,
"items": {
"$ref": "#/definitions/oscal-component-definition-oscal-metadata:link"
}
},
"responsible-parties": {
"type": "array",
"minItems": 1,
"items": {
"$ref": "#/definitions/oscal-component-definition-oscal-metadata:responsible-party"
}
},
"remarks": {
"$ref": "#/definitions/oscal-component-definition-oscal-metadata:remarks"
}
},
"required": [
"component-uuid"
],
"additionalProperties": false
}
},
"remarks": {
"$ref": "#/definitions/oscal-component-definition-oscal-metadata:remarks"
}
},
"required": [
"uuid",
"description"
],
"additionalProperties": false
},
"oscal-component-definition-oscal-implementation-common:set-parameter": {
"title": "Set Parameter Value",
"description": "Identifies the parameter that will be set by the enclosed value.",
"$id": "#assembly_oscal-implementation-common_set-parameter",
"type": "object",
"properties": {
"param-id": {
"title": "Parameter ID",
"description": "A human-oriented reference to a parameter within a control, who's catalog has been imported into the current implementation context.",
"$ref": "#/definitions/TokenDatatype"
},
"values": {
"type": "array",
"minItems": 1,
"items": {
"title": "Parameter Value",
"description": "A parameter value or set of values.",
"$ref": "#/definitions/StringDatatype"
}
},
"remarks": {
"$ref": "#/definitions/oscal-component-definition-oscal-metadata:remarks"
}
},
"required": [
"param-id",
"values"
],
"additionalProperties": false
},
"oscal-component-definition-oscal-implementation-common:system-id": {
"title": "System Identification",
"description": "A human-oriented, globally unique identifier with cross-instance scope that can be used to reference this system identification property elsewhere in this or other OSCAL instances. When referencing an externally defined system identification, the system identification must be used in the context of the external / imported OSCAL instance (e.g., uri-reference). This string should be assigned per-subject, which means it should be consistently used to identify the same system across revisions of the document.",
"$id": "#field_oscal-implementation-common_system-id",
"type": "object",
"properties": {
"identifier-type": {
"title": "Identification System Type",
"description": "Identifies the identification system from which the provided identifier was assigned.",
"anyOf": [
{
"$ref": "#/definitions/URIDatatype"
},
{
"enum": [
"https://fedramp.gov",
"http://fedramp.gov/ns/oscal",
"https://ietf.org/rfc/rfc4122",
"http://ietf.org/rfc/rfc4122"
]
}
]
},
"id": {
"$ref": "#/definitions/StringDatatype"
}
},
"required": [
"id"
],
"additionalProperties": false
},
"oscal-component-definition-oscal-metadata:metadata": {
"title": "Document Metadata",
"description": "Provides information about the containing document, and defines concepts that are shared across the document.",
"$id": "#assembly_oscal-metadata_metadata",
"type": "object",
"properties": {
"title": {
"title": "Document Title",
"description": "A name given to the document, which may be used by a tool for display and navigation.",
"type": "string"
},
"published": {
"$ref": "#/definitions/oscal-component-definition-oscal-metadata:published"
},
"last-modified": {
"$ref": "#/definitions/oscal-component-definition-oscal-metadata:last-modified"
},
"version": {
"$ref": "#/definitions/oscal-component-definition-oscal-metadata:version"
},
"oscal-version": {
"$ref": "#/definitions/oscal-component-definition-oscal-metadata:oscal-version"
},
"revisions": {
"type": "array",
"minItems": 1,
"items": {
"title": "Revision History Entry",
"description": "An entry in a sequential list of revisions to the containing document, expected to be in reverse chronological order (i.e. latest first).",
"type": "object",
"properties": {
"title": {
"title": "Document Title",
"description": "A name given to the document revision, which may be used by a tool for display and navigation.",
"type": "string"
},
"published": {
"$ref": "#/definitions/oscal-component-definition-oscal-metadata:published"
},
"last-modified": {
"$ref": "#/definitions/oscal-component-definition-oscal-metadata:last-modified"
},
"version": {
"$ref": "#/definitions/oscal-component-definition-oscal-metadata:version"
},
"oscal-version": {
"$ref": "#/definitions/oscal-component-definition-oscal-metadata:oscal-version"
},
"props": {
"type": "array",
"minItems": 1,
"items": {
"$ref": "#/definitions/oscal-component-definition-oscal-metadata:property"
}
},
"links": {
"type": "array",
"minItems": 1,
"items": {
"$ref": "#/definitions/oscal-component-definition-oscal-metadata:link"
}
},
"remarks": {
"$ref": "#/definitions/oscal-component-definition-oscal-metadata:remarks"
}
},
"required": [
"version"
],
"additionalProperties": false
}
},
"document-ids": {
"type": "array",
"minItems": 1,
"items": {
"$ref": "#/definitions/oscal-component-definition-oscal-metadata:document-id"
}
},
"props": {
"type": "array",
"minItems": 1,
"items": {
"$ref": "#/definitions/oscal-component-definition-oscal-metadata:property"
}
},
"links": {
"type": "array",
"minItems": 1,
"items": {