Skip to main content
summaryrefslogtreecommitdiffstats
blob: 3cda937342374891a21607cf16e472379b5aa72d (plain) (blame)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
import "platform:/plugin/org.eclipse.osee.framework.skynet.core/support/OseeTypes_Framework.osee"
abstract artifactType "ats.Release Artifact" extends "Artifact" {
	uuid 0x000000000000003D
	attribute "ats.Released"
}

artifactType "Insertion" extends "ats.Ats Config Artifact" {
	uuid  0x18160B4E220FEDD8
	attribute "ats.Description"
}

artifactType "Insertion Activity" extends "ats.Ats Config Artifact" {
	uuid  0x36B9D38A2B7789FC
	attribute "ats.Description"
}

artifactType "Agile Team" extends "ats.Ats Config Artifact" {
	uuid  0x68D469C51DA01041
	attribute "ats.Description"
	attribute "ats.Points Attribute Type"
}

artifactType "Agile Feature Group" extends "ats.Ats Config Artifact" {
	uuid  0x07C6AA0E42EE7661
	attribute "ats.Description"
}

artifactType "Agile Sprint" extends "ats.State Machine" {
	uuid 0x7E213FC7506C5E43
}

artifactType "Work Definition" extends "Artifact" {
	uuid 0x000000000000003E
	attribute "ats.DSL Sheet"
}

artifactType "Rule Definition" extends "Artifact" {
	uuid 0x586836F761A0982E
	attribute "ats.DSL Sheet"
}

abstract artifactType "ats.Ats Artifact" extends "Artifact" {
	uuid 0x000000000000003F
	attribute "ats.Description"
	attribute "ats.Goal Order Vote"
}

abstract artifactType "ats.Ats Team Definition or AI" extends "ats.Ats Config Artifact" {
	uuid  0x0000000000000323
	attribute "ats.Actionable"
	attribute "ats.Rule Definition"
}

artifactType "Country" extends "ats.Ats Config Artifact" {
	uuid  0x44C69E6EBB2D8324
	attribute "ats.Description"
}

artifactType "Program" extends "ats.Ats Config Artifact" {
	uuid  0x0000BA123443210004
	attribute "ats.Team Definition"
	attribute "ats.Namespace"
	attribute "ats.Description"
   attribute "ats.closure.Closure State"
}

artifactType "ats.Review" extends "ats.State Machine" {
	uuid 0x0000000000000040
	attribute "ats.Actionable Item"
	attribute "ats.Related To State"
	attribute "ats.Review Blocks"
}

artifactType "PeerToPeer Review" extends "ats.Review" {
	uuid 0x0000000000000041
	attribute "ats.Location"
	attribute "ats.Review Defect"
	attribute "ats.Role"
	attribute "ats.LOC Changed"
	attribute "ats.LOC Reviewed"
	attribute "ats.Pages Changed"
	attribute "ats.Pages Reviewed"
	attribute "ats.Review Formal Type"
	attribute "ats.Meeting Attendee"
	attribute "ats.Meeting Length"
	attribute "ats.Meeting Location"
}

artifactType "Decision Review" extends "ats.Review" {
	uuid 0x0000000000000042
	attribute "ats.Decision Review Options"
	attribute "ats.Decision"
}

artifactType "Action" extends "ats.Ats Artifact" {
	uuid 0x0000000000000043
	attribute "ats.Actionable Item"
	attribute "ats.Change Type"
	attribute "ats.Need By"
	attribute "ats.Priority"
	attribute "ats.Validation Required"
	attribute "ats.Id"
}

abstract artifactType "ats.Ats Config Artifact" extends "Artifact" {
	uuid 0x0000000000000321
	attribute "ats.Active"
}

artifactType "Team Definition" extends "ats.Ats Team Definition or AI" , "Abstract Access Controlled" {
	uuid 0x0000000000000044
	attribute "ats.Hours Per Work Day"
	attribute "ats.Full Name"
	attribute "ats.Team Uses Versions"
	attribute "ats.Require Targeted Version"
	attribute "ats.Baseline Branch Guid"
	attribute "ats.Baseline Branch Uuid"
	attribute "ats.Action Details Format"
	attribute "ats.Allow Create Branch"
	attribute "ats.Allow Commit Branch"
	attribute "ats.Related Task Workflow Definition"
	attribute "ats.Related Peer Workflow Definition"
	attribute "ats.Workflow Definition"
	attribute "ats.Id Prefix"
	attribute "ats.Id Sequence Name"
	attribute "ats.Team Workflow Artifact Type"
	attribute "ats.closure.Active"
}

artifactType "Actionable Item" extends "ats.Ats Team Definition or AI" , "Abstract Access Controlled" {
	uuid 0x0000000000000045
	attribute "ats.Allow User Action Creation"
}

artifactType "Version" extends "ats.Ats Artifact" {
	uuid 0x0000000000000046
	attribute "ats.Allow Commit Branch"
	attribute "ats.Allow Create Branch"
	attribute "ats.Estimated Release Date"
	attribute "ats.Full Name"
	attribute "ats.Next Version"
	attribute "ats.Baseline Branch Guid"
	attribute "ats.Baseline Branch Uuid"
	attribute "ats.Release Date"
	attribute "ats.Released"
	attribute "ats.Version Locked"
	attribute "ats.TestRunToSourceLocator"
	attribute "ats.closure.Closure State"
}

abstract artifactType "ats.State Machine" extends "ats.Ats Artifact" {
	uuid 0x0000000000000047
	attribute "ats.Work Package"
	attribute "ats.Category"
	attribute "ats.Category2"
	attribute "ats.Category3"
	attribute "ats.Points"
	attribute "ats.Points Numeric"
	attribute "ats.Numeric1"
	attribute "ats.Numeric2"
	attribute "ats.Current State"
	attribute "ats.Estimated Completion Date"
	attribute "ats.Estimated Hours"
	attribute "ats.Estimated Release Date"
	attribute "ats.Log"
	attribute "ats.Percent Complete"
	attribute "ats.Release Date"
	attribute "ats.Resolution"
	attribute "ats.SMA Note"
	attribute "ats.State Notes"
	attribute "ats.State"
	attribute "ats.Start Date"
	attribute "ats.End Date"
	attribute "ats.Current State Type"
	attribute "ats.Created By"
	attribute "ats.Created Date"
	attribute "ats.Completed By"
	attribute "ats.Completed Date"
	attribute "ats.Completed From State"
	attribute "ats.Cancelled By"
	attribute "ats.Cancelled Date"
	attribute "ats.Cancelled From State"
	attribute "ats.Cancelled Reason"
	attribute "ats.Workflow Definition"
	attribute "ats.Work Package Guid"
	attribute "ats.Id"
	attribute "ats.Unplanned Work"
	attribute "ats.Peer Review Id"
}

artifactType "Goal" extends "ats.State Machine" {
	uuid 0x0000000000000048
	attribute "ats.Change Type"
	attribute "ats.Need By"
	attribute "ats.Priority"
}

artifactType "Team Workflow" extends "ats.State Machine" , "Abstract Access Controlled" {
	uuid 0x0000000000000049
	attribute "ats.Actionable Item"
	attribute "ats.Branch Metrics"
	attribute "ats.Baseline Branch Guid"
	attribute "ats.Baseline Branch Uuid"
	attribute "ats.Validation Required"
	attribute "ats.Weekly Benefit"
	attribute "ats.Change Type"
	attribute "ats.Legacy PCR Id"
	attribute "ats.Need By"
	attribute "ats.Percent Rework"
	attribute "ats.Priority"
	attribute "ats.Problem"
	attribute "ats.Proposed Resolution"
	attribute "ats.Team Definition"
	attribute "ats.Operational Impact"
	attribute "ats.Operational Impact Description"
	attribute "ats.Operational Impact Workaround"
	attribute "ats.Operational Impact Workaround Description"
	attribute "ats.Related Task Workflow Definition"
	attribute "ats.Program Uuid"
	attribute "ats.Applicability Workflow"
	attribute "ats.Applicable to Program"
	attribute "ats.Duplicated PCR Id"
	attribute "ats.Originating PCR Id"
	attribute "ats.PCR Tool Id"
}

artifactType "Work Package" extends "Artifact" {
	uuid 0x0000000000000322
	attribute "ats.Work Package Id"
	attribute "ats.Work Package Type"
	attribute "ats.Work Package Program"
	attribute "ats.Activity Id"
	attribute "ats.Activity Name"
	attribute "ats.Active"
	attribute "ats.Start Date"
	attribute "ats.End Date"
	attribute "ats.Percent Complete"
	attribute "Notes"
	attribute "ats.Points Numeric"
	attribute "ats.Description"
   attribute "ats.Estimated Hours"
	attribute "ats.IPT"
   attribute "ats.Color Team"
}

overrides artifactType "User" {
	inheritAll
	add attribute "ATS Quick Search"
}

attributeType "ATS Quick Search" extends StringAttribute {
	uuid 0x1000555145600FB
	dataProvider DefaultAttributeDataProvider
	min 0
	max unlimited
	taggerId DefaultAttributeTaggerProvider
	mediaType "text/plain"
}

artifactType "Task" extends "ats.State Machine" {
	uuid 0x000000000000004A
	attribute "ats.Related To State"
	attribute "ats.Uses Resolution Options"
	attribute "ats.Task To Changed Artifact Reference"
}

artifactType "Configuration" extends "Artifact" {
	uuid 0x000055500000003F
	attribute "ats.Description"
	attribute "ats.ATS Configured Branch"
	attribute "ats.Default"
}

attributeType "ats.Color Team" extends EnumeratedAttribute {
   uuid 0x12EDF6163776C27F
   dataProvider DefaultAttributeDataProvider
   min 0
   max 1
   enumType "enum.color.team"
   mediaType "text/plain"
   defaultValue "Unspecified"
}

oseeEnumType "enum.color.team" {
   uuid 0x456632C8BB903677
   entry "Blood Red Team" entryGuid "ABfJoxJFl10q090OgIwA"
   entry "Blue Crew Team" entryGuid "ABfJoxJcgGruKefBlQwA"
   entry "Mean Green Team" entryGuid "ABfJoxJmhQmioTwMDYgA"
   entry "Purple Team" entryGuid "ABfJoxJvHSt7juKTa6wA"
   entry "Burnt Orange Team" entryGuid "ABfJoxJ3tEYgQSsthRQA"
   entry "Bronze Team" entryGuid "ABfJoxKGBTMzbtqxckwA"
   entry "Silver Team" entryGuid "ABfJoxKOnEHOCR2edQAA"
   entry "Pirate Black Team" entryGuid "ABfJoxKVxVj7wb2h5pQA"
   entry "Gold Team" entryGuid "ABfJoxKeXFkUFozwjNAA"
   entry "Plaid Team" entryGuid "AroCJt6_UXb4x4mwtUQA"
   entry "Unspecified" entryGuid "Ad6XYA7hyWB+07DIAfwA"
}

attributeType "ats.ATS Configured Branch" extends StringAttribute {
	uuid 0x1000555100000FB
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	taggerId DefaultAttributeTaggerProvider
	mediaType "text/plain"
}

attributeType "ats.Unplanned Work" extends BooleanAttribute {
	uuid 0x219973F5F43E2BE5
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	taggerId DefaultAttributeTaggerProvider
	mediaType "text/plain"
}

attributeType "ats.Default" extends BooleanAttribute {
	uuid 0x10000056457000AA
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	taggerId DefaultAttributeTaggerProvider
	mediaType "text/plain"
}

attributeType "ats.Applicability Workflow" extends BooleanAttribute {
	uuid 0x10000078957000AA
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	taggerId DefaultAttributeTaggerProvider
	mediaType "text/plain"
}

oseeEnumType "enum.ats.applicability.to.program" {
	uuid 0x10000067859000AA
	entry "Yes"
	entryGuid "CArJmR2JDn5DXT8FGPQA"
	entry "No"
	entryGuid "CArJmR3xrEmbw8zbyqgA"
}

attributeType "ats.Applicable to Program" extends EnumeratedAttribute {
	uuid 0x10000067857000AA
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	enumType "enum.ats.applicability.to.program"
	taggerId DefaultAttributeTaggerProvider
	mediaType "text/plain"
}

attributeType "ats.Peer Review Id" extends StringAttribute {
	uuid 0x3AB8042D5FD8DB2A
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	taggerId DefaultAttributeTaggerProvider
	mediaType "text/plain"
}

attributeType "ats.Program Uuid" extends IntegerAttribute {
	uuid 0x10000089157000AA
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	taggerId DefaultAttributeTaggerProvider
	mediaType "text/plain"
}

attributeType "ats.Rationale" extends StringAttribute {
	uuid 0x10000089159900AA
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	taggerId DefaultAttributeTaggerProvider
	mediaType "text/plain"
}

attributeType "ats.Duplicated PCR Id" extends StringAttribute {
	uuid 0x10000089158000AA
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	taggerId DefaultAttributeTaggerProvider
	mediaType "text/plain"
}

attributeType "ats.Originating PCR Id" extends StringAttribute {
	uuid 0x10000089159000AA
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	taggerId DefaultAttributeTaggerProvider
	mediaType "text/plain"
}

attributeType "ats.PCR Tool Id" extends StringAttribute {
	uuid 0x10000089151000AA
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	taggerId DefaultAttributeTaggerProvider
	mediaType "text/plain"
}

attributeType "ats.Artifact Reference" extends ArtifactReferenceAttribute {
	uuid 0x1000BA00000000F9
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	taggerId DefaultAttributeTaggerProvider
	description "Reference to an artifact"
	mediaType "application/http"
}

attributeType "ats.Task To Changed Artifact Reference" extends ArtifactReferenceAttribute {
	uuid 0x1000BA00000000FA
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	taggerId DefaultAttributeTaggerProvider
	description "Task reference to the changed artifact"
	mediaType "text/plain"
}

attributeType "ats.Work Package Id" extends StringAttribute {
	uuid 0x1000000000000380
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	taggerId DefaultAttributeTaggerProvider
	mediaType "text/plain"
}

attributeType "ats.Work Package Program" extends StringAttribute {
	uuid 0x1000000000000381
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	taggerId DefaultAttributeTaggerProvider
	mediaType "text/plain"
}

oseeEnumType "enum.ats.work.package.type" {
	uuid 0x3000000000000195
	entry "Discrete"
	entryGuid "Bwht_BKlJhvXevH9wgwA"
	entry "Discrete - % Complete"
	entryGuid "BOsciRhe9TGNFHydWFAA"
	entry "Discrete - 50-50"
	entryGuid "BOsciRiFnUHFqODmPuQA"
	entry "Discrete - 0-100"
	entryGuid "BOsciRijrkK85LhqYegA"
	entry "LOE"
	entryGuid "Bwhv914yDlTLh0AfNZAA"
}

attributeType "ats.Work Package Type" extends EnumeratedAttribute {
	uuid 0x100000000000081
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	taggerId DefaultAttributeTaggerProvider
	enumType "enum.ats.work.package.type"
	mediaType "text/plain"
}

oseeEnumType "enum.ats.ipt" {
	uuid 0x256826B10EBAC1FE 
	entry "Comm/Nav/Ase"
	entryGuid "ABWZunRwEF66p88MC1QA"
	entry "Crew Systems"
	entryGuid "ABWZunnoXUr06VeWlzgA"
	entry "Integration"
	entryGuid "ABWZunrQUQnztgs2HAgA"
	entry "Software"
	entryGuid "ABWZunrs9AqlPuBkQqwA"
	entry "CEE"
	entryGuid "ABWZunsh7lR0XJkpSgAA"
	entry "Weapons/Sights"
	entryGuid "ABWZuns7tDXtJXC5U5AA"
	entry "Processors/Displays"
	entryGuid "ABWZuntUC0uBwnMoegAA"
	entry "AH-6"
	entryGuid "ABWZuntsYj07sqnVyUQA"
}

attributeType "ats.IPT" extends EnumeratedAttribute {
	uuid 0x53A0A42E822D3393
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	taggerId DefaultAttributeTaggerProvider
	enumType "enum.ats.ipt"
	mediaType "text/plain"
}

attributeType "ats.Activity Id" extends StringAttribute {
	uuid 0x1000000000000382
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	taggerId DefaultAttributeTaggerProvider
	mediaType "text/plain"
}

attributeType "ats.Activity Name" extends StringAttribute {
	uuid 0x1000000000000383
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	taggerId DefaultAttributeTaggerProvider
	mediaType "text/plain"
}

attributeType "ats.Work Package Guid" extends StringAttribute {
	uuid 0x1000000000000384
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	taggerId DefaultAttributeTaggerProvider
	mediaType "text/plain"
}

attributeType "ats.Baseline Branch Guid" extends StringAttribute {
	uuid 0x10000000000000A9
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	mediaType "text/plain"
}

attributeType "ats.Baseline Branch Uuid" extends StringAttribute {
	uuid 0x10000990000000A9
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	mediaType "text/plain"
}

attributeType "ats.Validation Required" extends BooleanAttribute {
	uuid 0x10000000000000AA
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	defaultValue "false"
	mediaType "text/plain"
}

attributeType "ats.Current State Type" extends StringAttribute {
	uuid 0x10000000000000AB
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	taggerId DefaultAttributeTaggerProvider
	mediaType "text/plain"
}

attributeType "ats.Team Workflow Artifact Type" extends StringAttribute {
	uuid 0x10000000000000AC
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
}

attributeType "ats.Workflow Definition" extends StringAttribute {
	uuid 0x10000000000000AD
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	taggerId DefaultAttributeTaggerProvider
	mediaType "text/plain"
}

attributeType "ats.Rule Definition" extends StringAttribute {
	uuid 0x10000000000000AE
	dataProvider DefaultAttributeDataProvider
	min 0
	max unlimited
	mediaType "text/plain"
}

attributeType "ats.Related Task Workflow Definition" extends StringAttribute {
	uuid 0x10000000000000B0
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	mediaType "text/plain"
}

attributeType "ats.Related Peer Workflow Definition" extends StringAttribute {
   uuid 0x100000000000037E
   dataProvider DefaultAttributeDataProvider
   min 0
   max 1
	mediaType "text/plain"
}


attributeType "ats.Active" extends BooleanAttribute {
	uuid 0x10000000000000B1
	dataProvider DefaultAttributeDataProvider
	min 1
	max 1
	defaultValue "true"
	mediaType "text/plain"
}

attributeType "ats.Uses Resolution Options" extends BooleanAttribute {
	uuid 0x10000000000000B2
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	defaultValue "false"
	mediaType "text/plain"
}

attributeType "ats.Released" extends BooleanAttribute {
	uuid 0x10000000000000B3
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	defaultValue "false"
	mediaType "text/plain"
}

attributeType "ats.Version Locked" extends BooleanAttribute {
	uuid 0x10000000000000B4
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	defaultValue "false"
	mediaType "text/plain"
}

attributeType "ats.Next Version" extends BooleanAttribute {
	uuid 0x10000000000000B5
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	defaultValue "false"
	mediaType "text/plain"
}

attributeType "ats.Team Uses Versions" extends BooleanAttribute {
	uuid 0x10000000000000B6
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	defaultValue "false"
}

attributeType "ats.Require Targeted Version" extends BooleanAttribute {
	uuid 0x10000000000000B7
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	defaultValue "false"
	mediaType "text/plain"
}

attributeType "ats.Actionable" extends BooleanAttribute {
	uuid 0x10000000000000B8
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	defaultValue "true"
	mediaType "text/plain"
}

attributeType "ats.Allow Create Branch" extends BooleanAttribute {
	uuid 0x10000000000000B9
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	defaultValue "true"
	mediaType "text/plain"
}

attributeType "ats.Allow Commit Branch" extends BooleanAttribute {
	uuid 0x10000000000000BA
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	defaultValue "true"
	mediaType "text/plain"
}

attributeType "ats.Allow User Action Creation" extends BooleanAttribute {
	uuid 0x12591C08CFB41574
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	mediaType "text/plain"
}

attributeType "ats.Need By" extends DateAttribute {
	uuid 0x10000000000000BB
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	mediaType "text/calendar"
}

attributeType "ats.Estimated Release Date" extends DateAttribute {
	uuid 0x10000000000000BC
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	mediaType "text/calendar"
}

attributeType "ats.Estimated Completion Date" extends DateAttribute {
	uuid 0x10000000000000BD
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	mediaType "text/calendar"
}

attributeType "ats.Completed Date" extends DateAttribute {
	uuid 0x10000000000000BE
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	mediaType "text/calendar"
}

attributeType "ats.Completed By" extends StringAttribute {
	uuid 0x10000000000000BF
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	mediaType "text/plain"
}

attributeType "ats.Completed From State" extends StringAttribute {
	uuid 0x10000000000000C0
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	mediaType "text/plain"
}

attributeType "ats.Cancelled Date" extends DateAttribute {
	uuid 0x10000000000000C1
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	mediaType "text/calendar"
}

attributeType "ats.Cancelled By" extends StringAttribute {
	uuid 0x10000000000000C2
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	mediaType "text/plain"
}

attributeType "ats.Cancelled Reason" extends StringAttribute {
	uuid 0x10000000000000C3
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	mediaType "text/plain"
}

attributeType "ats.Cancelled From State" extends StringAttribute {
	uuid 0x10000000000000C4
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	mediaType "text/plain"
}

attributeType "ats.Created Date" extends DateAttribute {
	uuid 0x10000000000000C5
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	mediaType "text/calendar"
}

attributeType "ats.Created By" extends StringAttribute {
	uuid 0x10000000000000C6
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	taggerId DefaultAttributeTaggerProvider
	mediaType "text/plain"
}

attributeType "ats.Release Date" extends DateAttribute {
	uuid 0x10000000000000C7
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	mediaType "text/calendar"
}

attributeType "ats.Start Date" extends DateAttribute {
	uuid 0x1000000000000196
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	mediaType "text/calendar"
}

attributeType "ats.End Date" extends DateAttribute {
	uuid 0x1000000000000197
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	mediaType "text/calendar"
}

oseeEnumType "enum.ats.review.blocks" {
	uuid 0x300000000000018A
	entry "None"
	entryGuid "CArJmR2JDn5DXT9FGPQA"
	entry "Transition"
	entryGuid "CArJmR3xrEmbw7zbyqgA"
	entry "Commit"
	entryGuid "CArJmR5WzHmG_n_OKhQA"
}

attributeType "ats.Review Blocks" extends EnumeratedAttribute {
	uuid 0x10000000000000C8
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	taggerId DefaultAttributeTaggerProvider
	enumType "enum.ats.review.blocks"
	mediaType "text/plain"
}

attributeType "ats.Review Formal Type" extends EnumeratedAttribute {
	uuid 0x10000000000000C9
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	taggerId DefaultAttributeTaggerProvider
	enumType "enum.ats.review.formalType"
	mediaType "text/plain"
}

oseeEnumType "enum.ats.review.formalType" {
	uuid 0x300000000000018B
	entry "InFormal"
	entryGuid "AOwhbvyBMHKCIuhSzwgA"
	entry "Formal"
	entryGuid "AOwiPVD_jCOHV4KnAQwA"
}

oseeEnumType "enum.ats.point" {
	uuid 0x300000000000018C
	entry "1"
	entryGuid "AYyqLF5WrgvoWwAJhb12"
	entry "2"
	entryGuid "AYyqLWfS+S+58gmCmOQA"
   entry "3" 
   entryGuid "APO730vh5yEB35DSIFgA"
	entry "4"
	entryGuid "AYyqLY8_ChxManvFc6QA"
   entry "5" 
   entryGuid "APO+W+I7NA3qcxQSdDwA"
	entry "8"
	entryGuid "AYyqLbRYXECHjlLzQ+QA"
	entry "13"
	entryGuid "AYyqLdkSvmy0XZECrRwA"
	entry "20"
	entryGuid "AYyqLfzfO20iUkZSilgA"
	entry "40"
	entryGuid "AYyqLiFHxD1XUanPXBwA"
	entry "80"
	entryGuid "AYyqLkUSERzIljDD4agA"
	entry "150"
	entryGuid "AYyqLmlTUi3u7Eg8CdgA"
	entry "Epic"
	entryGuid "AYyqLo2M7zr1nj1mFfQA"
}

attributeType "ats.Points" extends EnumeratedAttribute {
	uuid 0x10000000000000CA
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	enumType "enum.ats.point"
	mediaType "text/plain"
}

attributeType "ats.Points Numeric" extends FloatingPointAttribute {
	uuid 0x17FDE8592A26FCB3
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	defaultValue "0.0"
	mediaType "text/plain"
}

attributeType "ats.Points Attribute Type" extends StringAttribute {
	uuid 0x1000000FF0000001
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	mediaType "text/plain"
}

oseeEnumType "enum.ats.priority" {
	uuid 0x300000000000018D
	entry "1"
	entryGuid "CArJmPvK7mXFU4cMY3gA"
	entry "2"
	entryGuid "CArJmR7LQUYx7XRMnwQA"
	entry "3"
	entryGuid "CArJmR82AgY40rzzjagA"
	entry "4"
	entryGuid "CArJmR+dqR2jW6eRU1AA"
	entry "5"
	entryGuid "CArJmSAGIB9IRKqlKuAA"
}

attributeType "ats.Priority" extends EnumeratedAttribute {
	uuid 0x10000000000000CB
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	enumType "enum.ats.priority"
	mediaType "text/plain"
}

oseeEnumType "enum.ats.change.type" {
	uuid 0x300000000000018E
	entry "Improvement"
	entryGuid "CArJmSBzfx4jvQ5vEtAA"
	entry "Problem"
	entryGuid "CArJmPw6F3bP1V5B59gA"
	entry "Support"
	entryGuid "CArJmSDgGAG4aKsU+KAA"
	entry "Refinement"
	entryGuid "ADTfjCHhk0KoDVpUpagA"
}

attributeType "ats.Change Type" extends EnumeratedAttribute {
	uuid 0x10000000000000CC
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	taggerId DefaultAttributeTaggerProvider
	enumType "enum.ats.change.type"
	mediaType "text/plain"
}

attributeType "ats.Estimated Hours" extends FloatingPointAttribute {
	uuid 0x10000000000000CE
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	defaultValue "0.0"
	mediaType "text/plain"
}

attributeType "ats.Percent Complete" extends IntegerAttribute {
	uuid 0x10000000000000CF
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	defaultValue "0"
	mediaType "text/plain"
}

attributeType "ats.Numeric1" extends FloatingPointAttribute {
	uuid 0x10000000000000D0
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	defaultValue "0.0"
	mediaType "text/plain"
}

attributeType "ats.Numeric2" extends FloatingPointAttribute {
	uuid 0x10000000000000D1
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	defaultValue "0.0"
	mediaType "text/plain"
}

attributeType "ats.Weekly Benefit" extends FloatingPointAttribute {
	uuid 0x10000000000000D2
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	defaultValue "0"
	mediaType "text/plain"
}

attributeType "ats.Hours Per Work Day" extends FloatingPointAttribute {
	uuid 0x10000000000000D3
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	defaultValue "0.0"
	mediaType "text/plain"
}

attributeType "ats.Meeting Length" extends FloatingPointAttribute {
	uuid 0x10000000000000D4
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	defaultValue "0.0"
	mediaType "text/plain"
}

attributeType "ats.Percent Rework" extends IntegerAttribute {
	uuid 0x10000000000000D5
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	mediaType "text/plain"
}

attributeType "ats.Branch Metrics" extends StringAttribute {
	uuid 0x10000000000000D6
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	mediaType "text/plain"
}

attributeType "ats.State" extends StringAttribute {
	uuid 0x10000000000000D7
	dataProvider DefaultAttributeDataProvider
	min 0
	max unlimited
	taggerId DefaultAttributeTaggerProvider
	mediaType "text/plain"
}

attributeType "ats.Current State" extends StringAttribute {
	uuid 0x10000000000000D8
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	taggerId DefaultAttributeTaggerProvider
	mediaType "text/plain"
}

attributeType "ats.Problem" extends StringAttribute {
	uuid 0x10000000000000D9
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	taggerId DefaultAttributeTaggerProvider
	fileExtension "txt"
	mediaType "text/plain"
}

attributeType "ats.Proposed Resolution" extends StringAttribute {
	uuid 0x10000000000000DA
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	taggerId DefaultAttributeTaggerProvider
	mediaType "text/plain"
}

attributeType "ats.Resolution" extends StringAttribute {
	uuid 0x10000000000000DB
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	taggerId DefaultAttributeTaggerProvider
	fileExtension "txt"
	mediaType "text/plain"
}

attributeType "ats.Description" extends StringAttribute {
	uuid 0x10000000000000DC
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	taggerId DefaultAttributeTaggerProvider
	fileExtension "txt"
	mediaType "text/plain"
}

attributeType "ats.DSL Sheet" extends StringAttribute {
	uuid 0x10000000000000DD
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	fileExtension "txt"
	mediaType "application/ats+dsl"
}

attributeType "ats.Full Name" extends StringAttribute {
	uuid 0x10000000000000DE
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	taggerId DefaultAttributeTaggerProvider
	mediaType "text/plain"
}

attributeType "ats.Action Details Format" extends StringAttribute {
	uuid 0x10000000000000DF
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	mediaType "text/plain"
}

attributeType "ats.Actionable Item" extends StringAttribute {
	uuid 0x10000000000000E0
	dataProvider DefaultAttributeDataProvider
	min 0
	max unlimited
	taggerId DefaultAttributeTaggerProvider
	mediaType "text/plain"
}

attributeType "ats.Team Definition" extends StringAttribute {
	uuid 0x10000000000000E1
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	taggerId DefaultAttributeTaggerProvider
	mediaType "text/plain"
}

attributeType "ats.Log" extends StringAttribute {
	uuid 0x10000000000000E2
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	taggerId DefaultAttributeTaggerProvider
	fileExtension "xml"
	mediaType "text/xml"
}

attributeType "ats.State Notes" extends StringAttribute {
	uuid 0x10000000000000E3
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	fileExtension "xml"
	mediaType "text/xml"
}

attributeType "ats.Related To State" extends StringAttribute {
	uuid 0x10000000000000E4
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	mediaType "text/plain"
}

attributeType "ats.SMA Note" extends StringAttribute {
	uuid 0x10000000000000E5
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	taggerId DefaultAttributeTaggerProvider
	mediaType "text/plain"
}

attributeType "ats.Work Package" extends StringAttribute {
	uuid 0x10000000000000E6
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	taggerId DefaultAttributeTaggerProvider
	mediaType "text/plain"
}

attributeType "ats.LOC Changed" extends IntegerAttribute {
	uuid 0x10000000000000E7
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	mediaType "text/plain"
}

attributeType "ats.LOC Reviewed" extends IntegerAttribute {
	uuid 0x10000000000000E8
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	mediaType "text/plain"
}

attributeType "ats.Pages Changed" extends IntegerAttribute {
	uuid 0x10000000000000E9
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
}

attributeType "ats.Pages Reviewed" extends IntegerAttribute {
	uuid 0x10000000000000EA
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	mediaType "text/plain"
}

attributeType "ats.Goal Order Vote" extends StringAttribute {
	uuid 0x10000000000000EB
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	taggerId DefaultAttributeTaggerProvider
	mediaType "text/plain"
}

attributeType "ats.Category" extends StringAttribute {
	uuid 0x10000000000000EC
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	taggerId DefaultAttributeTaggerProvider
	mediaType "text/plain"
}

attributeType "ats.Namespace" extends StringAttribute {
	uuid 0x40E507303063999E 
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	taggerId DefaultAttributeTaggerProvider
	mediaType "text/plain"
}

attributeType "ats.Operational Impact" extends StringAttribute {
	uuid 0x10000000000000ED
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	mediaType "text/plain"
}

attributeType "ats.Operational Impact Description" extends StringAttribute {
	uuid 0x10000000000000EE
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	taggerId DefaultAttributeTaggerProvider
	mediaType "text/plain"
}

attributeType "ats.Operational Impact Workaround" extends StringAttribute {
	uuid 0x10000000000000EF
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	mediaType "text/plain"
}

attributeType "ats.Operational Impact Workaround Description" extends StringAttribute {
	uuid 0x10000000000000F0
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	taggerId DefaultAttributeTaggerProvider
	mediaType "text/plain"
}

attributeType "ats.Category2" extends StringAttribute {
	uuid 0x10000000000000F1
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	taggerId DefaultAttributeTaggerProvider
	mediaType "text/plain"
}

attributeType "ats.Category3" extends StringAttribute {
	uuid 0x10000000000000F2
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	taggerId DefaultAttributeTaggerProvider
	mediaType "text/plain"
}

attributeType "ats.Legacy PCR Id" extends StringAttribute {
	uuid 0x10000000000000F3
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	taggerId DefaultAttributeTaggerProvider
	mediaType "text/plain"
}

attributeType "ats.Decision Review Options" extends StringAttribute {
	uuid 0x10000000000000F4
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	mediaType "text/plain"
}

attributeType "ats.Decision" extends StringAttribute {
	uuid 0x10000000000000F5
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	taggerId DefaultAttributeTaggerProvider
	mediaType "text/plain"
}

attributeType "ats.Review Defect" extends StringAttribute {
	uuid 0x10000000000000F6
	dataProvider DefaultAttributeDataProvider
	min 0
	max unlimited
	mediaType "text/plain"
}

attributeType "ats.Location" extends StringAttribute {
	uuid 0x10000000000000F7
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	taggerId DefaultAttributeTaggerProvider
	fileExtension "txt"
	mediaType "text/plain"
}

attributeType "ats.Meeting Location" extends StringAttribute {
	uuid 0x10000000000000F8
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	taggerId DefaultAttributeTaggerProvider
	fileExtension "txt"
	mediaType "text/plain"
}

attributeType "ats.Meeting Attendee" extends StringAttribute {
	uuid 0x10000000000000F9
	dataProvider DefaultAttributeDataProvider
	min 0
	max unlimited
	fileExtension "txt"
	mediaType "text/plain"
}

attributeType "ats.Role" extends StringAttribute {
	uuid 0x10000000000000FA
	dataProvider DefaultAttributeDataProvider
	min 0
	max unlimited
	mediaType "text/plain"
}

attributeType "ats.SW Enhancement" extends StringAttribute {
	uuid 0x10000000000000FB
	dataProvider DefaultAttributeDataProvider
	min 0
	max unlimited
	taggerId DefaultAttributeTaggerProvider
	mediaType "text/plain"
}

relationType "Country To Program" {
	uuid 0x2000033300000169
	sideAName "Country"
	sideAArtifactType "Country"
	sideBName "Program"
	sideBArtifactType "Program"
	defaultOrderType Unordered
	multiplicity ONE_TO_MANY
}

relationType "Work Package" {
	uuid 0x200000000000017E
	sideAName "Work Package"
	sideAArtifactType "Work Package"
	sideBName "ATS Team Def or AI"
	sideBArtifactType "ats.Ats Team Definition or AI"
	defaultOrderType Unordered
	multiplicity MANY_TO_MANY
}

relationType "TeamLead" {
	uuid 0x2000000000000169
	sideAName "Team Definition"
	sideAArtifactType "Team Definition"
	sideBName "User"
	sideBArtifactType "User"
	defaultOrderType Unordered
	multiplicity MANY_TO_MANY
}

relationType "ActionableItemLead" {
	uuid 0x2000000000000179
	sideAName "Actionable Item"
	sideAArtifactType "Actionable Item"
	sideBName "User"
	sideBArtifactType "User"
	defaultOrderType Unordered
	multiplicity MANY_TO_MANY
}

relationType "TeamMember" {
	uuid 0x200000000000016A
	sideAName "Team Definition"
	sideAArtifactType "Team Definition"
	sideBName "User"
	sideBArtifactType "User"
	defaultOrderType Unordered
	multiplicity MANY_TO_MANY
}

relationType "PrivilegedMember" {
	uuid 0x200000000000016B
	sideAName "Team Definition"
	sideAArtifactType "Team Definition"
	sideBName "User"
	sideBArtifactType "User"
	defaultOrderType Unordered
	multiplicity MANY_TO_MANY
}

relationType "TeamActionableItem" {
	uuid 0x200000000000016C
	sideAName "Team Definition"
	sideAArtifactType "Team Definition"
	sideBName "Actionable Item"
	sideBArtifactType "Actionable Item"
	defaultOrderType Unordered
	multiplicity ONE_TO_MANY
}

relationType "Program To Insertion" {
	uuid 0x7BD0963A0F884A2B
	sideAName "Program"
	sideAArtifactType "Program"
	sideBName "Insertion"
	sideBArtifactType "Insertion"
	defaultOrderType Unordered
	multiplicity ONE_TO_MANY
}

relationType "Insertion To Insertion Activity" {
	uuid 0x128D9B3123EADEB1
	sideAName "Insertion"
	sideAArtifactType "Insertion"
	sideBName "Insertion Activity"
	sideBArtifactType "Insertion Activity"
	defaultOrderType Unordered
	multiplicity ONE_TO_MANY
}

relationType "Insertion Activity To Work Package" {
	uuid 0x7B681B61D762880F
	sideAName "Insertion Activity"
	sideAArtifactType "Insertion Activity"
	sideBName "Work Package"
	sideBArtifactType "Work Package"
	defaultOrderType Unordered
	multiplicity ONE_TO_MANY
}

relationType "AgileFeatureToItem" {
	uuid 0x5380F48A35225D71  
	sideAName "Agile Feature Group"
	sideAArtifactType "Agile Feature Group"
	sideBName "ATS Item"
	sideBArtifactType "ats.State Machine"
	defaultOrderType Lexicographical_Ascending
	multiplicity ONE_TO_MANY
}

relationType "AgileSprintToItem" {
	uuid 0x0DB6D78253FE8AB1
	sideAName "Agile Sprint"
	sideAArtifactType "Agile Sprint"
	sideBName "ATS Item"
	sideBArtifactType "ats.Ats Artifact"
	defaultOrderType Lexicographical_Ascending
	multiplicity ONE_TO_MANY
}

relationType "AgileTeamToFeatureGroup" {
	uuid 0x0ECF8D3CF97C9112 
	sideAName "Agile Team"
	sideAArtifactType "Agile Team"
	sideBName "Agile Feature Group"
	sideBArtifactType "Agile Feature Group"
	defaultOrderType Lexicographical_Ascending
	multiplicity ONE_TO_MANY
}

relationType "AgileTeamToAtsTeam" {
	uuid 0x7CED0706F811126C 
	sideAName "Agile Team"
	sideAArtifactType "Agile Team"
	sideBName "ATS Team"
	sideBArtifactType "Team Definition"
	defaultOrderType Lexicographical_Ascending
	multiplicity ONE_TO_MANY
}

relationType "AgileTeamToBacklog" {
	uuid 0x7A5A06AAB20398F2  
	sideAName "Agile Team"
	sideAArtifactType "Agile Team"
	sideBName "Backlog"
	sideBArtifactType "Goal"
	defaultOrderType Lexicographical_Ascending
	multiplicity ONE_TO_ONE
}

relationType "AgileTeamToSprint" {
	uuid 0x61C047A5D52830F5  
	sideAName "Agile Team"
	sideAArtifactType "Agile Team"
	sideBName "Sprint"
	sideBArtifactType "Agile Sprint"
	defaultOrderType Lexicographical_Ascending
	multiplicity ONE_TO_MANY
}

relationType "ActionToWorkflow" {
	uuid 0x200000000000016D
	sideAName "Action"
	sideAArtifactType "Action"
	sideBName "Team Workflow"
	sideBArtifactType "Team Workflow"
	defaultOrderType Unordered
	multiplicity ONE_TO_MANY
}

relationType "Port" {
	uuid 0x200000000000017A
	sideAName "From"
	sideAArtifactType "Team Workflow"
	sideBName "To"
	sideBArtifactType "Team Workflow"
	defaultOrderType Unordered
	multiplicity MANY_TO_MANY
}

relationType "Derive" {
	uuid 0x200000000000017B
	sideAName "From"
	sideAArtifactType "Team Workflow"
	sideBName "To"
	sideBArtifactType "Team Workflow"
	defaultOrderType Unordered
	multiplicity ONE_TO_MANY
}

relationType "TeamWfToTask" {
	uuid 0x200000000000016E
	sideAName "Team Workflow"
	sideAArtifactType "Team Workflow"
	sideBName "Task"
	sideBArtifactType "Task"
	defaultOrderType Lexicographical_Ascending
	multiplicity ONE_TO_MANY
}

relationType "TeamWorkflowTargetedForVersion" {
	uuid 0x200000000000016F
	sideAName "Team Workflow"
	sideAArtifactType "Team Workflow"
	sideBName "Version"
	sideBArtifactType "Version"
	defaultOrderType Unordered
	multiplicity MANY_TO_ONE
}

relationType "TeamDefinitionToVersion" {
	uuid 0x2000000000000170
	sideAName "Team Definition"
	sideAArtifactType "Team Definition"
	sideBName "Version"
	sideBArtifactType "Version"
	defaultOrderType Lexicographical_Ascending
	multiplicity ONE_TO_MANY
}

relationType "TeamWorkflowToReview" {
	uuid 0x2000000000000171
	sideAName "Team Workflow"
	sideAArtifactType "Team Workflow"
	sideBName "Review"
	sideBArtifactType "ats.Review"
	defaultOrderType Unordered
	multiplicity MANY_TO_MANY
}

relationType "SubscribedUser" {
	uuid 0x2000000000000172
	sideAName "Artifact"
	sideAArtifactType "Artifact"
	sideBName "User"
	sideBArtifactType "User"
	defaultOrderType Unordered
	multiplicity MANY_TO_MANY
}

relationType "FavoriteUser" {
	uuid 0x2000000000000173
	sideAName "Artifact"
	sideAArtifactType "Artifact"
	sideBName "User"
	sideBArtifactType "User"
	defaultOrderType Unordered
	multiplicity MANY_TO_MANY
}

relationType "ParallelVersion" {
	uuid 0x2000000000000174
	sideAName "Parent"
	sideAArtifactType "Version"
	sideBName "Child"
	sideBArtifactType "Version"
	defaultOrderType Lexicographical_Ascending
	multiplicity MANY_TO_MANY
}

relationType "Owner" {
	uuid 0x2000000000000178
	sideAName "Actionable Item"
	sideAArtifactType "Actionable Item"
	sideBName "Owner"
	sideBArtifactType "User"
	defaultOrderType Lexicographical_Ascending
	multiplicity MANY_TO_MANY
}

relationType "Goal" {
	uuid 0x2000000000000175
	sideAName "Goal"
	sideAArtifactType "Goal"
	sideBName "Member"
	sideBArtifactType "ats.Ats Artifact"
	defaultOrderType Lexicographical_Ascending
	multiplicity MANY_TO_MANY
}

relationType "AutoAddActionToGoal" {
	uuid 0x200000000000017D
	sideAName "Goal"
	sideAArtifactType "Goal"
	sideBName "Ats Config Object"
	sideBArtifactType "ats.Ats Config Artifact"
	defaultOrderType Lexicographical_Ascending
	multiplicity MANY_TO_MANY
}

attributeType "ats.Id" extends StringAttribute {
	uuid 0x1000000000000385
	dataProvider DefaultAttributeDataProvider
	min 1
	max 1
	taggerId DefaultAttributeTaggerProvider
	defaultValue "0"
	mediaType "text/plain"
}

attributeType "ats.Id Prefix" extends StringAttribute {
	uuid 0x1023000000000385
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	taggerId DefaultAttributeTaggerProvider
	mediaType "text/plain"
}

attributeType "ats.Id Sequence Name" extends StringAttribute {
	uuid 0x1024000000000385
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	taggerId DefaultAttributeTaggerProvider
	mediaType "text/plain"
}

attributeType "ats.TestRunToSourceLocator" extends StringAttribute {
	uuid 0x01CFF7A4EBCA599C
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	mediaType "text/plain"
}

attributeType "ats.closure.Active" extends BooleanAttribute {
	uuid 0x10000056457000BB
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	taggerId DefaultAttributeTaggerProvider
	mediaType "text/plain"
}

oseeEnumType "ats.closure.states" {
	uuid 0x300000000000019C
	entry "Closed"
	entryGuid "CArJmR2JDn5DXT9FGRQB"
	entry "Closing"
	entryGuid "CArJmR3xrEmbw7zbyzhA"
	entry "Open"
	entryGuid "CArJmR5WzHmGBBBOKhQA"
}

attributeType "ats.closure.Closure State" extends EnumeratedAttribute {
	uuid 0x10000000000001DC
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	taggerId DefaultAttributeTaggerProvider
	enumType "ats.closure.states"
	mediaType "text/plain"
}

Back to the top