-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cyber_Data_Schema.json
7371 lines (7371 loc) · 370 KB
/
Cyber_Data_Schema.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
{
"version": "2.0.4",
"release_date": "2024-11-24",
"commentary": "Added D3FEND_ID to SystemType reference table for tracibility and further interoperability. Misc administrative changes.",
"tables": [
{
"uuid": "61a97cd7-0c70-4ab7-b338-462c554ca45c",
"name": "ACAT",
"description": "Primary Key",
"type": "6d4274ae-f823-4373-b428-5ffc57908359",
"pos_x": "3387",
"pos_y": "3561",
"columns": [
{
"uuid": "f22ae0fd-1185-48c6-ac8d-9f4616bedf4a",
"name": "UUID",
"description": "Unique identifier assigned to each entry in the ACAT table.",
"type": "ad2a149b-2d1c-43e9-a173-de4244a5f075",
"relationship": null,
"properties": [
{
"type": "1f82125e-8e5b-438e-b436-b9ae10eaf2a4",
"value": "^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$",
"uuid": "9c8f3eb9-d77e-4d1f-a666-901d614b2657"
},
{
"type": "a0685609-9025-4c06-911c-5e1f46c96419",
"value": false,
"uuid": "ef970eee-ef2f-4341-bd16-db57aeebcf00"
},
{
"type": "d7efaf18-89a1-441c-a408-7cf3a0bf3694",
"value": "true",
"uuid": "093bcf2f-7096-440b-854a-dc97a65ef3e6"
}
]
},
{
"uuid": "283ee558-0395-4849-a043-b0a0ef83b5a2",
"name": "Value",
"description": "Numerical representation of the ACAT. Ie, 1, 2, etc",
"type": "5ac9de0d-4d3b-404c-a1d4-4df12901d444",
"relationship": null,
"properties": null
},
{
"uuid": "7ffe88a3-ee3d-4035-94c2-e16e2783cea8",
"name": "Name",
"description": "Descriptive label of the ACAT Type. Ie, ACAT 1, ACAT 2, etc",
"type": "ad2a149b-2d1c-43e9-a173-de4244a5f075",
"relationship": null,
"properties": null
}
]
},
{
"uuid": "082e825a-9e55-41f5-b441-d99590bc3880",
"name": "AcquisitionMilestones",
"description": "Reference Table for the different Acquisition Milestones available",
"type": "6d4274ae-f823-4373-b428-5ffc57908359",
"pos_x": "6592",
"pos_y": "3536",
"columns": [
{
"uuid": "a8bef847-13ad-4aea-adaa-e36863426bb2",
"name": "UUID",
"description": "Primary Key",
"type": "ad2a149b-2d1c-43e9-a173-de4244a5f075",
"relationship": null,
"properties": [
{
"type": "1f82125e-8e5b-438e-b436-b9ae10eaf2a4",
"value": "^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$",
"uuid": "cc32fa3f-abe3-4cc7-918d-1de53a09a4f7"
},
{
"type": "a0685609-9025-4c06-911c-5e1f46c96419",
"value": false,
"uuid": "d6ab7eeb-b7a3-4033-8d0e-98c4634ac587"
},
{
"type": "d7efaf18-89a1-441c-a408-7cf3a0bf3694",
"value": "true",
"uuid": "4482c213-acd9-40b9-897a-9012ac2eacaf"
}
]
},
{
"uuid": "4d9da6b5-1ba9-4c48-9793-24f4520bd6d7",
"name": "Name",
"description": "Name or designation of the Milestone. Ie, Milestone A, Milestone B",
"type": "ad2a149b-2d1c-43e9-a173-de4244a5f075",
"relationship": null,
"properties": null
}
]
},
{
"uuid": "e6dd26dc-85b5-4831-a7a6-76444d5c22c8",
"name": "AuthorizingOfficialType",
"description": "Authorization Boundary Types as supplied by the Information Technology Categorization and Selection Checklist (ITCSC). Which AO organization the Program reports to.",
"type": "6d4274ae-f823-4373-b428-5ffc57908359",
"pos_x": "4147",
"pos_y": "3624",
"columns": [
{
"uuid": "f4262c3a-fd65-4a3a-b9a9-1d68bd9a4edc",
"name": "UUID",
"description": "Primary Key",
"type": "ad2a149b-2d1c-43e9-a173-de4244a5f075",
"relationship": null,
"properties": [
{
"type": "1f82125e-8e5b-438e-b436-b9ae10eaf2a4",
"value": "^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$",
"uuid": "b2361c98-9cf4-4fb4-a101-5ff9ce724043"
},
{
"type": "a0685609-9025-4c06-911c-5e1f46c96419",
"value": false,
"uuid": "b2c3b71f-7a21-42d5-bbcd-a1b5cab19281"
},
{
"type": "d7efaf18-89a1-441c-a408-7cf3a0bf3694",
"value": "true",
"uuid": "6c9fe1e4-d8f8-44e9-98d5-f0c48ca82137"
}
]
},
{
"uuid": "9e0033c5-8c66-4c89-b213-703631f62c2f",
"name": "Name",
"description": "The type of Authorization Boundary. Ie, Aircraft, Space, etc.",
"type": "ad2a149b-2d1c-43e9-a173-de4244a5f075",
"relationship": null,
"properties": null
}
]
},
{
"uuid": "0f86ce25-d7bd-4df4-a549-030bf02f3a34",
"name": "InformationTechnologyType",
"description": "Reference Table for the different types of Information Technology (IT) designations",
"type": "6d4274ae-f823-4373-b428-5ffc57908359",
"pos_x": "2807",
"pos_y": "3415",
"columns": [
{
"uuid": "9e63ab4e-e823-445b-a1b9-747c771e55ea",
"name": "UUID",
"description": "Primary Key",
"type": "ad2a149b-2d1c-43e9-a173-de4244a5f075",
"relationship": null,
"properties": [
{
"type": "1f82125e-8e5b-438e-b436-b9ae10eaf2a4",
"value": "^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$",
"uuid": "b671e2c5-d483-47a8-b459-3da09c2e68f9"
},
{
"type": "a0685609-9025-4c06-911c-5e1f46c96419",
"value": false,
"uuid": "ecd38835-bfd1-415e-8a06-c8acb3ceeed9"
},
{
"type": "d7efaf18-89a1-441c-a408-7cf3a0bf3694",
"value": "true",
"uuid": "4e4d324c-6cd1-4fda-8beb-f522d1975683"
}
]
},
{
"uuid": "3f13cd65-0e05-426a-bef1-cf5a89e70893",
"name": "Subset",
"description": "First level of categorization the AF Information Technology (IT) falls into. Ie, Information System, PIT, IT Services",
"type": "ad2a149b-2d1c-43e9-a173-de4244a5f075",
"relationship": null,
"properties": null
},
{
"uuid": "6606d51a-143c-40fb-86f9-75ff61dc365f",
"name": "Categorization",
"description": "Secondary level of categorization the IT system falls into. Major Applications, Enclaves, PIT Products, Software",
"type": "ad2a149b-2d1c-43e9-a173-de4244a5f075",
"relationship": null,
"properties": null
}
]
},
{
"uuid": "46d77b66-eaf7-44a0-9f6b-54470b9fe971",
"name": "OperationalStatusType",
"description": "Reference Table of the different stages of operational usage a Program could be in",
"type": "6d4274ae-f823-4373-b428-5ffc57908359",
"pos_x": "4053",
"pos_y": "3093",
"columns": [
{
"uuid": "3485414c-233d-4fbf-bf20-a0dc660d6321",
"name": "UUID",
"description": "Primary Key",
"type": "ad2a149b-2d1c-43e9-a173-de4244a5f075",
"relationship": null,
"properties": [
{
"type": "1f82125e-8e5b-438e-b436-b9ae10eaf2a4",
"value": "^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$",
"uuid": "37862a09-2a2e-4d38-8287-282e4de69abb"
},
{
"type": "a0685609-9025-4c06-911c-5e1f46c96419",
"value": false,
"uuid": "6332cda7-8bd5-4c38-8bb4-5e4e4780b9a4"
},
{
"type": "d7efaf18-89a1-441c-a408-7cf3a0bf3694",
"value": "true",
"uuid": "43ba5a2e-1154-4b2e-a4e3-fc85e4d4ed55"
}
]
},
{
"uuid": "bef55788-7b29-49c9-820c-0fe4ffb21e6e",
"name": "Type",
"description": "Description of the status",
"type": "ad2a149b-2d1c-43e9-a173-de4244a5f075",
"relationship": null,
"properties": null
}
]
},
{
"uuid": "a2249b74-a0d4-4ae9-9be2-c89deb66b9b4",
"name": "Base",
"description": "Reference Table for US Military Bases",
"type": "6d4274ae-f823-4373-b428-5ffc57908359",
"pos_x": "4535",
"pos_y": "2662",
"columns": [
{
"uuid": "6ed42b11-37bb-4f89-b2b3-366b6a0ddfb1",
"name": "UUID",
"description": "Primary Key",
"type": "ad2a149b-2d1c-43e9-a173-de4244a5f075",
"relationship": null,
"properties": [
{
"type": "1f82125e-8e5b-438e-b436-b9ae10eaf2a4",
"value": "^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$",
"uuid": "697baefc-f297-4bbf-96d8-4e0737ac1d0c"
},
{
"type": "a0685609-9025-4c06-911c-5e1f46c96419",
"value": false,
"uuid": "3a531234-8d5d-4c45-ae43-fdf1e20b1f87"
},
{
"type": "d7efaf18-89a1-441c-a408-7cf3a0bf3694",
"value": "true",
"uuid": "2a209252-6747-4336-925a-6317d7ba3a80"
}
]
},
{
"uuid": "c615143e-df46-4bbb-8413-f935fe3f8b70",
"name": "Name",
"description": "Name of the Base installation",
"type": "ad2a149b-2d1c-43e9-a173-de4244a5f075",
"relationship": null,
"properties": null
},
{
"uuid": "2dde0ec0-1fa7-4791-8a24-a75648d5c378",
"name": "Location_ID",
"description": "Foreign Key to the GeographicalLocation Table",
"type": "ad2a149b-2d1c-43e9-a173-de4244a5f075",
"relationship": [
{
"type": "71ab2455-13e6-444e-85c4-d87a49b72832",
"table_uuid": "423ce9a9-22c0-4841-a6db-5c47738290c8",
"column_uuid": "382c2add-deb2-4202-a800-350f498a168b",
"description": "Geographical Location of where the Base is located",
"uuid": "b0ca3d2c-9431-42ab-aca9-f721fc78b023",
"name": "Base_Location_ID"
}
],
"properties": null
}
]
},
{
"uuid": "da80c12b-e9b5-43cf-9450-030f54b524ce",
"name": "Organization",
"description": "Reference Table of the different organizations found in the DoD. For example a Majcom, International Alliance, corporate entity, or program office. They are logical collections of groups of people that represent a core unit.",
"type": "6d4274ae-f823-4373-b428-5ffc57908359",
"pos_x": 4733,
"pos_y": 2308,
"columns": [
{
"uuid": "b2cbc2b3-36f1-4ad9-9562-11655d4fad3f",
"name": "UUID",
"description": "Primary Key",
"type": "ad2a149b-2d1c-43e9-a173-de4244a5f075",
"relationship": null,
"properties": [
{
"type": "1f82125e-8e5b-438e-b436-b9ae10eaf2a4",
"value": "^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$",
"uuid": "46d88c27-1c7c-47c3-a68e-9e23fa88cb2a"
},
{
"type": "a0685609-9025-4c06-911c-5e1f46c96419",
"value": false,
"uuid": "498dcd5e-9ffd-4801-b5ce-5e1202fb9734"
},
{
"type": "d7efaf18-89a1-441c-a408-7cf3a0bf3694",
"value": "true",
"uuid": "b93cf1d1-7d63-45c8-aec4-cd1487304436"
}
]
},
{
"uuid": "2cc62488-e6d5-41ed-ae73-2bc6fc211a4b",
"name": "Name",
"description": "Name of the Organization",
"type": "ad2a149b-2d1c-43e9-a173-de4244a5f075",
"relationship": null,
"properties": null
},
{
"uuid": "d02ac9c3-27f5-408a-800a-9a36af811ab6",
"name": "CreationDate",
"description": "When this Organization was established.",
"type": "53e0b827-cdb5-4662-b352-10b8c6a1a143",
"relationship": null,
"properties": null
},
{
"uuid": "9fe45bc5-e814-4ffd-9442-89a667e2bdc5",
"name": "Base_ID",
"description": "Foreign Key to the Base Table which represents where the Organization is headquartered",
"type": "ad2a149b-2d1c-43e9-a173-de4244a5f075",
"relationship": [
{
"type": "71ab2455-13e6-444e-85c4-d87a49b72832",
"table_uuid": "a2249b74-a0d4-4ae9-9be2-c89deb66b9b4",
"column_uuid": "6ed42b11-37bb-4f89-b2b3-366b6a0ddfb1",
"description": "Military Base of where the Organization is headquartered",
"uuid": "859f96bb-d8bf-4124-a8ee-cd4217179e54",
"name": "Organization_Base_ID"
}
],
"properties": null
},
{
"uuid": "6c100047-88d1-402c-b74a-69975ae3ec65",
"name": "Acronym",
"description": "Acronym for the Organization",
"type": "ad2a149b-2d1c-43e9-a173-de4244a5f075",
"relationship": null,
"properties": null
},
{
"uuid": "c9016aec-7542-4d2f-a272-c1b636148023",
"name": "Parent_ID",
"description": "The immediately overarching organization (parent) to this organization. This would be the Division to a Branch, for example.",
"type": "ad2a149b-2d1c-43e9-a173-de4244a5f075",
"relationship": [
{
"type": "71ab2455-13e6-444e-85c4-d87a49b72832",
"table_uuid": "da80c12b-e9b5-43cf-9450-030f54b524ce",
"column_uuid": "b2cbc2b3-36f1-4ad9-9562-11655d4fad3f",
"description": "The parent organization to this child organization.",
"uuid": "00fec1dd-2485-4cd1-a0e0-42630e2eb678",
"name": "Organization_Parent_ID"
}
],
"properties": null
},
{
"uuid": "2e2e95b3-aac3-43cc-af22-529e658f785f",
"name": "Description",
"description": "Description of the organization and who they represent or their mission.",
"type": "ad2a149b-2d1c-43e9-a173-de4244a5f075",
"relationship": null,
"properties": null
}
]
},
{
"uuid": "4c319f63-2417-4134-81e6-c146b8aad62b",
"name": "RDTEType",
"description": "Reference Table for Research, Development, Test and Evaluation (RDT&E) zone types",
"type": "6d4274ae-f823-4373-b428-5ffc57908359",
"pos_x": "3853",
"pos_y": "3161",
"columns": [
{
"uuid": "6680658e-2c4e-4b6a-bf13-1468529d82bd",
"name": "UUID",
"description": "Primary Key",
"type": "ad2a149b-2d1c-43e9-a173-de4244a5f075",
"relationship": null,
"properties": [
{
"type": "1f82125e-8e5b-438e-b436-b9ae10eaf2a4",
"value": "^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$",
"uuid": "d68b9872-1573-4fe3-8338-c1eedebfafb6"
},
{
"type": "a0685609-9025-4c06-911c-5e1f46c96419",
"value": false,
"uuid": "584bf859-c715-4cc1-8339-cc1755235a90"
},
{
"type": "d7efaf18-89a1-441c-a408-7cf3a0bf3694",
"value": "true",
"uuid": "dfa007e8-065d-4951-a389-6fc3d1954ff4"
}
]
},
{
"uuid": "26bdde53-141e-4a6f-9cc3-d7405745b395",
"name": "Name",
"description": "Name of the RDT&E zone type.",
"type": "ad2a149b-2d1c-43e9-a173-de4244a5f075",
"relationship": null,
"properties": null
}
]
},
{
"uuid": "eb2d9349-b41b-435d-a3d8-168a991b9101",
"name": "SystemProtectionLevel",
"description": "Insert with correct definition of what the System Protection Level means",
"type": "6d4274ae-f823-4373-b428-5ffc57908359",
"pos_x": "3488",
"pos_y": "3223",
"columns": [
{
"uuid": "06cac525-2efa-49ee-9c56-3770187c140e",
"name": "UUID",
"description": "Primary Key",
"type": "ad2a149b-2d1c-43e9-a173-de4244a5f075",
"relationship": null,
"properties": [
{
"type": "1f82125e-8e5b-438e-b436-b9ae10eaf2a4",
"value": "^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$",
"uuid": "6cf58323-83bc-4b5b-be1c-06fd0a170700"
},
{
"type": "a0685609-9025-4c06-911c-5e1f46c96419",
"value": false,
"uuid": "28e2883a-4273-4cf4-a831-f589d6175a9b"
},
{
"type": "d7efaf18-89a1-441c-a408-7cf3a0bf3694",
"value": "true",
"uuid": "6cbc542b-f036-47ba-bc05-9c492fa243cc"
}
]
},
{
"uuid": "95f46d36-a1fa-4f8e-bfd0-beaa9ec8c2db",
"name": "Name",
"description": "Name of the System Protection Level",
"type": "ad2a149b-2d1c-43e9-a173-de4244a5f075",
"relationship": null,
"properties": null
},
{
"uuid": "1e634bc4-ad1d-472d-8363-878280d8afc4",
"name": "Description",
"description": "Description of what the System Protection Level entails.",
"type": "ad2a149b-2d1c-43e9-a173-de4244a5f075",
"relationship": null,
"properties": null
}
]
},
{
"uuid": "f61c7e3a-e170-434d-9e5e-d6987badfe50",
"name": "ProgramDtl",
"description": "Information and details regarding a Program",
"type": "56495a7b-9837-4fdc-95a0-b0c0fc50a101",
"pos_x": "3738",
"pos_y": "3308",
"columns": [
{
"uuid": "5d693e4d-570b-4018-a0ae-9342e23f7bbc",
"name": "UUID",
"description": "Primary Key",
"type": "ad2a149b-2d1c-43e9-a173-de4244a5f075",
"relationship": null,
"properties": [
{
"type": "1f82125e-8e5b-438e-b436-b9ae10eaf2a4",
"value": "^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$",
"uuid": "03d199d9-7c9e-4bb2-ba24-809e3b7009f5"
},
{
"type": "a0685609-9025-4c06-911c-5e1f46c96419",
"value": false,
"uuid": "a18382a7-8748-4234-b490-bde05d962d10"
},
{
"type": "d7efaf18-89a1-441c-a408-7cf3a0bf3694",
"value": "true",
"uuid": "e66b2772-7774-4287-9b58-8ececc540230"
}
]
},
{
"uuid": "a72ef32e-ac63-4b13-af85-1bf1bf53110d",
"name": "Name",
"description": "Name of the Program",
"type": "ad2a149b-2d1c-43e9-a173-de4244a5f075",
"relationship": null,
"properties": null
},
{
"uuid": "df3c8807-6a72-420e-b345-d4a10a99e344",
"name": "Acronym",
"description": "Acronym for the Program",
"type": "ad2a149b-2d1c-43e9-a173-de4244a5f075",
"relationship": null,
"properties": null
},
{
"uuid": "ff4fcb5c-22f2-4f3d-b005-10a482873486",
"name": "Version",
"description": "Version number of the program",
"type": "ad2a149b-2d1c-43e9-a173-de4244a5f075",
"relationship": null,
"properties": null
},
{
"uuid": "8e7bf3f7-93ec-49df-a65b-773ae1b168e3",
"name": "MDS",
"description": "Mission Design Series (MDS)",
"type": "ad2a149b-2d1c-43e9-a173-de4244a5f075",
"relationship": null,
"properties": null
},
{
"uuid": "9d7beaf1-1e37-428f-b776-b7b6ee99b9b7",
"name": "CONOPS",
"description": "Concept of Operations for Program",
"type": "fb5d1c5b-b50e-40f0-8f66-039638e45e16",
"relationship": null,
"properties": null
},
{
"uuid": "15c336f2-33b9-46e9-9fb9-43957d7af228",
"name": "ITIPSNumber",
"description": "Information Technology Investment Portfolio System (ITIPS) Number.",
"type": "ad2a149b-2d1c-43e9-a173-de4244a5f075",
"relationship": null,
"properties": null
},
{
"uuid": "0e3fcbf2-e05b-495f-9b6c-f4f5e392452f",
"name": "SystemPurpose",
"description": "Short, informal, description of what the System/Program is intended to do.",
"type": "ad2a149b-2d1c-43e9-a173-de4244a5f075",
"relationship": null,
"properties": null
},
{
"uuid": "e8d49c74-29aa-481d-a1bf-1cfb90a5771e",
"name": "DITPRNumber",
"description": "Department of Defense Information Technology Portfolio Repository (DITPR) number assigned to Program.",
"type": "5ac9de0d-4d3b-404c-a1d4-4df12901d444",
"relationship": null,
"properties": null
},
{
"uuid": "6f8fcef0-9691-4d1d-880b-13cb9cd887ae",
"name": "AFIDNumber",
"description": "Unique identifier given to SAP programs to account for them in an anonymous manner",
"type": "5ac9de0d-4d3b-404c-a1d4-4df12901d444",
"relationship": null,
"properties": null
},
{
"uuid": "ceba5b12-089f-4308-9251-04899819647d",
"name": "EMASSNumber",
"description": "Enterprise Mission Assurance Support Service (EMASS) assigned identification number",
"type": "5ac9de0d-4d3b-404c-a1d4-4df12901d444",
"relationship": null,
"properties": null
},
{
"uuid": "3486ce2a-2bf7-4765-bf8c-65a8515bad5d",
"name": "ACAT_ID",
"description": "Foreign Key to the ACAT Table",
"type": "ad2a149b-2d1c-43e9-a173-de4244a5f075",
"relationship": [
{
"type": "71ab2455-13e6-444e-85c4-d87a49b72832",
"table_uuid": "61a97cd7-0c70-4ab7-b338-462c554ca45c",
"column_uuid": "f22ae0fd-1185-48c6-ac8d-9f4616bedf4a",
"description": "What ACAT the program is",
"uuid": "eb041a0f-27fb-4bab-89b4-242346285dd2",
"name": "ProgramDtl_ACAT_ID"
}
],
"properties": null
},
{
"uuid": "1a169dae-94d8-4938-a2da-78829c63ba70",
"name": "ITType_ID",
"description": "Foreign Key to the IT Type reference table",
"type": "ad2a149b-2d1c-43e9-a173-de4244a5f075",
"relationship": [
{
"type": "71ab2455-13e6-444e-85c4-d87a49b72832",
"table_uuid": "0f86ce25-d7bd-4df4-a549-030bf02f3a34",
"column_uuid": "9e63ab4e-e823-445b-a1b9-747c771e55ea",
"description": "What the Information Technology Type the program falls under",
"uuid": "54478e46-b779-4b86-8dc1-de910e94e445",
"name": "ProgramDtl_ITType_ID"
}
],
"properties": null
},
{
"uuid": "cd7dfb9e-7df7-47bf-a260-0a9aefc57a1e",
"name": "RDTEType_ID",
"description": "Foreign Key to the RDTE Type reference table",
"type": "ad2a149b-2d1c-43e9-a173-de4244a5f075",
"relationship": [
{
"type": "71ab2455-13e6-444e-85c4-d87a49b72832",
"table_uuid": "4c319f63-2417-4134-81e6-c146b8aad62b",
"column_uuid": "6680658e-2c4e-4b6a-bf13-1468529d82bd",
"description": "What, if any, RDT&E type the program is",
"uuid": "5a8d40af-3486-4a93-a836-ba14d0a55d9f",
"name": "ProgramDtl_RDTEType_ID"
}
],
"properties": null
},
{
"uuid": "712befe5-03fa-41b7-8939-ad6f7385b9cb",
"name": "OperationalStatus_ID",
"description": "Foreign Key to Operational Status Type Table",
"type": "ad2a149b-2d1c-43e9-a173-de4244a5f075",
"relationship": [
{
"type": "71ab2455-13e6-444e-85c4-d87a49b72832",
"table_uuid": "46d77b66-eaf7-44a0-9f6b-54470b9fe971",
"column_uuid": "3485414c-233d-4fbf-bf20-a0dc660d6321",
"description": "What the current Operational Status of the program is",
"uuid": "726c1b66-c37f-4830-9a7b-3aa93b5d7aed",
"name": "ProgramDtl_OperationalStatus_ID"
}
],
"properties": null
},
{
"uuid": "b1b7df8e-6612-443a-8f63-230f6d27a2c9",
"name": "Organization_ID",
"description": "Foreign Key to the Organization Table",
"type": "ad2a149b-2d1c-43e9-a173-de4244a5f075",
"relationship": [
{
"type": "71ab2455-13e6-444e-85c4-d87a49b72832",
"table_uuid": "da80c12b-e9b5-43cf-9450-030f54b524ce",
"column_uuid": "b2cbc2b3-36f1-4ad9-9562-11655d4fad3f",
"description": "The owning program management office for the program",
"uuid": "e09671d1-5f65-446e-b671-eb35212867c6",
"name": "ProgramDtl_Organization_ID"
}
],
"properties": null
},
{
"uuid": "d5018669-acd2-43d3-9988-ef6ef08cd143",
"name": "SystemProtectionLevel_ID",
"description": "Foreign Key to the System Protection Level Table",
"type": "ad2a149b-2d1c-43e9-a173-de4244a5f075",
"relationship": [
{
"type": "71ab2455-13e6-444e-85c4-d87a49b72832",
"table_uuid": "eb2d9349-b41b-435d-a3d8-168a991b9101",
"column_uuid": "06cac525-2efa-49ee-9c56-3770187c140e",
"description": "The required System Protection level for the program",
"uuid": "a43d57d7-95d3-46db-a59e-4158ed2beba2",
"name": "ProgramDtl_SystemProtectionLevel_ID"
}
],
"properties": null
},
{
"uuid": "b7723a84-eec9-42c9-8222-473f3f2d6a71",
"name": "ForeignUsers",
"description": "Boolean for whether there are any Foreign National Users have access to the Program",
"type": "fdf7e524-ee45-41d8-9025-bd3a0c4617b0",
"relationship": null,
"properties": null
},
{
"uuid": "fd17b86b-c35e-4cea-ad91-76b8dfde079d",
"name": "UserFullDataAccess",
"description": "Boolean for whether all users have formal access for all data with the Program",
"type": "fdf7e524-ee45-41d8-9025-bd3a0c4617b0",
"relationship": null,
"properties": null
},
{
"uuid": "a06942d0-b950-4d2d-8bfe-d86a5fbdcad2",
"name": "SecurityControlOverlays",
"description": "Foreign Key to Security Control Overlay Table",
"type": "f4eeef22-42b2-4427-9a0c-ab1bff65595e",
"relationship": [
{
"type": "5046caa3-d81c-4704-aa71-a273d78e2175",
"table_uuid": "3bb61049-d095-4cf8-98c4-c4b725aa278c",
"column_uuid": "cf729155-20eb-4ce2-8490-909bf441d6b9",
"description": "The Security Control overlays that pertain to a Program.",
"uuid": "0ab97410-9423-422a-853e-002f79bd9842",
"name": "ProgramSecurityControlOverlay"
}
],
"properties": null
}
]
},
{
"uuid": "6302bb5d-a76f-40e9-b2e4-3f6228a24261",
"name": "Program",
"description": "The kernel object representing a DoD acquisition program.",
"type": "56495a7b-9837-4fdc-95a0-b0c0fc50a101",
"pos_x": "4853",
"pos_y": "3306",
"columns": [
{
"uuid": "edd857c3-2446-4d9f-b28c-6e602e435f1c",
"name": "UUID",
"description": "Primary Key",
"type": "ad2a149b-2d1c-43e9-a173-de4244a5f075",
"relationship": null,
"properties": [
{
"type": "1f82125e-8e5b-438e-b436-b9ae10eaf2a4",
"value": "^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$",
"uuid": "5ff97e05-5f4a-4c9d-81c7-67ab5954054a"
},
{
"type": "a0685609-9025-4c06-911c-5e1f46c96419",
"value": false,
"uuid": "e0c8b24f-971b-4380-acdf-a02ed23c20fd"
},
{
"type": "d7efaf18-89a1-441c-a408-7cf3a0bf3694",
"value": "true",
"uuid": "9e3e0db4-e0d9-4b61-adb3-3e6b5f9c808a"
}
]
},
{
"uuid": "93fc5792-34ed-4d37-a73b-f6872d787743",
"name": "CreatedDate",
"description": "When the Program object was created",
"type": "53e0b827-cdb5-4662-b352-10b8c6a1a143",
"relationship": null,
"properties": null
},
{
"uuid": "40e23792-81a4-4a1c-abad-61dc9226050d",
"name": "Previous_ID",
"description": "If this object is not the first official digital twin but a later version, then the foreign key to the last official version of the Program object.",
"type": "ad2a149b-2d1c-43e9-a173-de4244a5f075",
"relationship": [
{
"type": "1e67b2d5-9857-4c39-b6ce-cfd8892cdfbd",
"table_uuid": "6302bb5d-a76f-40e9-b2e4-3f6228a24261",
"column_uuid": "edd857c3-2446-4d9f-b28c-6e602e435f1c",
"description": "If this object is not the first official digital twin but a later version, then the a pointer to the last official version of the Program object.",
"uuid": "2ed1a547-3b76-4a03-80bd-21ee073752fb",
"name": "Program_Previous_ID"
}
],
"properties": null
},
{
"uuid": "da3d0e2f-1e62-4ab5-a57e-8a23baf7da84",
"name": "ProgramDtl_ID",
"description": "Foreign Key to the ProgramDtl table",
"type": "ad2a149b-2d1c-43e9-a173-de4244a5f075",
"relationship": [
{
"type": "1e67b2d5-9857-4c39-b6ce-cfd8892cdfbd",
"table_uuid": "f61c7e3a-e170-434d-9e5e-d6987badfe50",
"column_uuid": "5d693e4d-570b-4018-a0ae-9342e23f7bbc",
"description": "The collection of program details",
"uuid": "b1b3ebe8-ba26-4743-96dd-45799e0bce00",
"name": "Program_ProgramDtl_ID"
}
],
"properties": null
}
]
},
{
"uuid": "8662086f-2cde-4c4d-9cf7-805020ab8dc7",
"name": "AuthorizationBoundary",
"description": "An imaginary boundary containing all components of a system that will be authorized for operation by an authorizing official. The Authorization Boundary for a particular system excludes separately authorized systems, even if the systems are connected.",
"type": "59e0eea9-cf3a-448c-8b4c-35cdc2ec8509",
"pos_x": "4939",
"pos_y": "4123",
"columns": [
{
"uuid": "a21d2f89-afac-4f56-8a15-2be421aba632",
"name": "UUID",
"description": "Primary Key",
"type": "ad2a149b-2d1c-43e9-a173-de4244a5f075",
"relationship": null,
"properties": [
{
"type": "1f82125e-8e5b-438e-b436-b9ae10eaf2a4",
"value": "^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$",
"uuid": "86d2b18b-f0ce-4a5e-93f6-555486ac682c"
},
{
"type": "a0685609-9025-4c06-911c-5e1f46c96419",
"value": false,
"uuid": "003b93ac-ec28-4f46-a814-606205cf4600"
},
{
"type": "d7efaf18-89a1-441c-a408-7cf3a0bf3694",
"value": "true",
"uuid": "ff14415c-3aa5-4560-b8df-60aa224f3d1c"
}
]
},
{
"uuid": "ed40f45f-c0df-4098-8a1c-7e765fb76399",
"name": "Name",
"description": "Name of the Authorization Boundary",
"type": "ad2a149b-2d1c-43e9-a173-de4244a5f075",
"relationship": null,
"properties": null
},
{
"uuid": "0573ceee-d4da-4ae6-8139-d8f1e5d8d7c9",
"name": "Description",
"description": "Description of the Authorization Boundary",
"type": "fb5d1c5b-b50e-40f0-8f66-039638e45e16",
"relationship": null,
"properties": null
},
{
"uuid": "9223d012-3319-4a29-80f6-a99fec629b55",
"name": "Program_ID",
"description": "Foreign Key to the Program that this Authorization Boundary is associated with.",
"type": "ad2a149b-2d1c-43e9-a173-de4244a5f075",
"relationship": [
{
"type": "71ab2455-13e6-444e-85c4-d87a49b72832",
"table_uuid": "6302bb5d-a76f-40e9-b2e4-3f6228a24261",
"column_uuid": "edd857c3-2446-4d9f-b28c-6e602e435f1c",
"description": "The program the authorization boundary belongs to",
"uuid": "f31cfcdd-539c-4016-80f1-c6efbbc36355",
"name": "AuthorizationBoundary_Program_ID"
}
],
"properties": null
},
{
"uuid": "0e57d3d7-7266-45ac-9468-0f8f7cd84bd1",
"name": "Acronym",
"description": "Acronym for the Authorization Boundary",
"type": "ad2a149b-2d1c-43e9-a173-de4244a5f075",
"relationship": null,
"properties": null
},
{
"uuid": "c4a917f9-6964-4323-b701-2d2ded4f6d1f",
"name": "Children",
"description": "Foreign Key to the Authorization Boundary Table.",
"type": "f4eeef22-42b2-4427-9a0c-ab1bff65595e",
"relationship": [
{
"type": "5046caa3-d81c-4704-aa71-a273d78e2175",
"table_uuid": "8662086f-2cde-4c4d-9cf7-805020ab8dc7",
"column_uuid": "a21d2f89-afac-4f56-8a15-2be421aba632",
"description": "The children authorization boundaries of the overarching parent boundary. Used to represent if there are multiple boundaries together comprise the main boundary.",
"uuid": "6fec3d72-25a9-4428-9321-9bfe5ea2bd4d",
"name": "AuthorizationBoundaryCollection"
}
],
"properties": null
},
{
"uuid": "b360959d-3faa-4569-bb14-1f4d5c7f840a",
"name": "AuthorizingOfficialType_ID",
"description": "Reference Key to Authorizing Official Type Table",
"type": "ad2a149b-2d1c-43e9-a173-de4244a5f075",
"relationship": [
{
"type": "71ab2455-13e6-444e-85c4-d87a49b72832",
"table_uuid": "e6dd26dc-85b5-4831-a7a6-76444d5c22c8",
"column_uuid": "f4262c3a-fd65-4a3a-b9a9-1d68bd9a4edc",
"description": "The Authorizing official type that the program falls under the jurisdiction of",
"uuid": "ed91be6d-17c2-4c55-8f96-073ddcc39872",
"name": "AuthorizationBoundary_AuthorizingOfficialType_ID"
}
],
"properties": null
}
]
},
{
"uuid": "76e65c97-c2cc-42bb-9e3d-06f905f7dfee",
"name": "BasisOfEstimate",
"description": "Basis of Estimates report that relates to a specific Program",
"type": "23082e05-5179-4e57-b0d8-d889a6d67089",
"pos_x": "5422",
"pos_y": "2854",
"columns": [
{
"uuid": "d26b561d-b189-4733-b9a6-3596f3aa7dac",
"name": "UUID",
"description": "Primary Key",
"type": "ad2a149b-2d1c-43e9-a173-de4244a5f075",
"relationship": null,
"properties": [
{
"type": "1f82125e-8e5b-438e-b436-b9ae10eaf2a4",
"value": "^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$",
"uuid": "4641a778-c61a-4a5f-9fb5-f5bd550f5ecf"
},
{
"type": "a0685609-9025-4c06-911c-5e1f46c96419",
"value": false,
"uuid": "49c99802-a438-45d3-a15c-139e7c97851c"
},
{
"type": "d7efaf18-89a1-441c-a408-7cf3a0bf3694",
"value": "true",
"uuid": "60195c00-a7d3-49eb-8c8d-8707e5cd8b3a"
}
]
},
{
"uuid": "8acc7384-e61c-400e-b253-b1524f4d68bd",
"name": "CreatedDate",
"description": "When the BOE was created",
"type": "53e0b827-cdb5-4662-b352-10b8c6a1a143",
"relationship": null,
"properties": null
},
{
"uuid": "ded893b5-74a7-48d5-bc87-d2ca5684607f",
"name": "Program_ID",
"description": "Foreign Key to the Program the BoE is associated with.",
"type": "ad2a149b-2d1c-43e9-a173-de4244a5f075",
"relationship": [
{
"type": "71ab2455-13e6-444e-85c4-d87a49b72832",
"table_uuid": "6302bb5d-a76f-40e9-b2e4-3f6228a24261",
"column_uuid": "edd857c3-2446-4d9f-b28c-6e602e435f1c",
"description": "The program that BoE is associated with",
"uuid": "74bd55b9-f021-452b-88b7-2e172eaad2cd",
"name": "BasisOfEstimate_Program_ID"
}
],
"properties": null
},
{
"uuid": "8e5261de-c8a5-4f25-a6fa-f054e88ab1c3",
"name": "Organization_ID",
"description": "Foreign Key to the Organization Table for the company that proposed the BOE",
"type": "ad2a149b-2d1c-43e9-a173-de4244a5f075",
"relationship": [
{
"type": "71ab2455-13e6-444e-85c4-d87a49b72832",
"table_uuid": "da80c12b-e9b5-43cf-9450-030f54b524ce",
"column_uuid": "b2cbc2b3-36f1-4ad9-9562-11655d4fad3f",
"description": "The company that wrote/proposed the BoE",
"uuid": "9a602675-d32a-4b4e-aefd-458453885e66",
"name": "BasisOfEstimate_Organization_ID"
}
],
"properties": null
},
{
"uuid": "54e857c1-a976-4d8c-85c2-0fcda9ed3583",
"name": "ProposedCost",
"description": "The proposed cost of the item in the BOE",
"type": "167f7bc6-c20e-42f6-a07d-963e8ca250e2",
"relationship": null,
"properties": null
}
]
},