Skip to main content
summaryrefslogtreecommitdiffstats
blob: 5737a67b9e14c94f58b67b624a3e3a96aed8ba0c (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
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
import "platform:/plugin/org.eclipse.osee.framework.skynet.core/support/OseeTypes_Framework.osee"
abstract artifactType "ats.Release Artifact" extends "Artifact" {
	id 61
	attribute "ats.Released"
}

artifactType "Insertion" extends "ats.Ats Config Artifact" {
	id 1735587136604728792
	attribute "ats.Description"
}

artifactType "Insertion Activity" extends "ats.Ats Config Artifact" {
	id 3943415539127781884
	attribute "ats.Description"
}

artifactType "Agile Team" extends "ats.Ats Config Artifact" {
	id 7553778770333667393
	attribute "ats.Description"
	attribute "ats.Points Attribute Type"
}

artifactType "Agile Feature Group" extends "ats.Ats Config Artifact" {
	id 560322181883393633
	attribute "ats.Description"
}

artifactType "Agile Sprint" extends "ats.State Machine" {
	id 9088615648290692675
	attribute "ats.Holiday"
	attribute "ats.Planned Points"
	attribute "ats.Un-Planned Points"
}

artifactType "Work Definition" extends "Artifact" {
	id 62
	attribute "ats.DSL Sheet"
}

artifactType "Rule Definition" extends "Artifact" {
	id 6370402109038303278
	attribute "ats.DSL Sheet"
}

abstract artifactType "ats.Ats Artifact" extends "Artifact" {
	id 63
	attribute "ats.Description"
	attribute "ats.Goal Order Vote"
}

abstract artifactType "ats.Ats Team Definition or AI" extends "ats.Ats Config Artifact" {
	id 803
	attribute "ats.Actionable"
	attribute "ats.Rule Definition"
}

artifactType "Country" extends "ats.Ats Config Artifact" {
	id 4955822638391722788
	attribute "ats.Description"
}

artifactType "Program" extends "ats.Ats Config Artifact" {
	id 52374361342017540
	attribute "ats.Team Definition"
	attribute "ats.Namespace"
	attribute "ats.Description"
   attribute "ats.closure.Closure State"
   attribute "ats.CSCI"
}

abstract artifactType "ats.Review" extends "ats.State Machine" {
	id 64
	attribute "ats.Actionable Item"
	attribute "ats.Related To State"
	attribute "ats.Review Blocks"
}

artifactType "PeerToPeer Review" extends "ats.Review" {
	id 65
	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"
	attribute "ats.Meeting Date"
	attribute "ats.Verification Code Inspection"
   attribute "ats.CSCI"
}

artifactType "Decision Review" extends "ats.Review" {
	id 66
	attribute "ats.Decision Review Options"
	attribute "ats.Decision"
}

artifactType "Action" extends "ats.Ats Artifact" {
	id 67
	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" {
	id 801
	attribute "ats.Active"
}

artifactType "Team Definition" extends "ats.Ats Team Definition or AI" , "Abstract Access Controlled" {
	id 68
	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"
	attribute "ats.Work Type"
	attribute "ats.CSCI"
	attribute "ats.Program Uuid"
}

artifactType "Actionable Item" extends "ats.Ats Team Definition or AI" , "Abstract Access Controlled" {
	id 69
	attribute "ats.Allow User Action Creation"
	attribute "ats.Work Type"
	attribute "ats.CSCI"
	attribute "ats.Program Uuid"
}

artifactType "Version" extends "ats.Ats Artifact" {
	id 70
	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" {
	id 71
	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" {
	id 72
	attribute "ats.Change Type"
	attribute "ats.Need By"
	attribute "ats.Priority"
}

artifactType "Team Workflow" extends "ats.State Machine" , "Abstract Access Controlled" {
	id 73
	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" {
	id 802
	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.CAM"
   attribute "ats.Color Team"
}

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

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

artifactType "Task" extends "ats.State Machine" {
	id 74
	attribute "ats.Related To State"
	attribute "ats.Uses Resolution Options"
	attribute "ats.Task To Changed Artifact Reference"
}

artifactType "Configuration" extends "Artifact" {
	id 93802085744703
	attribute "ats.Description"
	attribute "ats.ATS Configured Branch"
	attribute "ats.Default"
}

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

oseeEnumType "enum.color.team" {
   id 5000740273963153015
   entry "Blood Red Team" entryGuid "74310723"
   entry "Blue Crew Team" entryGuid "74310724"
   entry "Mean Green Team" entryGuid "74310725"
   entry "Purple Team" entryGuid "74310726"
   entry "Burnt Orange Team" entryGuid "74319302"
   entry "Bronze Team" entryGuid "74319303"
   entry "Silver Team" entryGuid "74319304"
   entry "Pirate Black Team" entryGuid "74319305"
   entry "Gold Team" entryGuid "74319306"
   entry "Plaid Team" entryGuid "74319307"
   entry "Unspecified" entryGuid "74319308"
}

attributeType "ats.Holiday" extends DateAttribute {
	id 72064629481881851
	dataProvider DefaultAttributeDataProvider
	min 0
	max unlimited
	mediaType "text/calendar"
}

attributeType "ats.Planned Points" extends IntegerAttribute {
	id 232851836925913430
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	mediaType "text/plain"
}

attributeType "ats.Un-Planned Points" extends IntegerAttribute {
	id 284254492767020802
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	mediaType "text/plain"
}

attributeType "ats.Work Type" extends StringAttribute {
	id 72063456955810043
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	taggerId DefaultAttributeTaggerProvider
	mediaType "text/plain"
}

attributeType "ats.CSCI" extends StringAttribute {
	id 72063457007112443
	dataProvider DefaultAttributeDataProvider
	min 0
	max unlimited
	taggerId DefaultAttributeTaggerProvider
	mediaType "text/plain"
}

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

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

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

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

oseeEnumType "enum.ats.applicability.to.program" {
	id 1152921949229285546
	entry "Yes"
	entryGuid "CArJmR2JDn5DXT8FGPQA"
	entry "No"
	entryGuid "CArJmR3xrEmbw8zbyqgA"
}

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

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

attributeType "ats.Program Uuid" extends ArtifactReferenceAttribute {
	id 1152922093377028266
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	taggerId DefaultAttributeTaggerProvider
	mediaType "text/plain"
}

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

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

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

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

attributeType "ats.Artifact Reference" extends ArtifactReferenceAttribute {
	id 1153126013769613561
	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 {
	id 1153126013769613562
	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 {
	id 1152921504606847872
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	taggerId DefaultAttributeTaggerProvider
	mediaType "text/plain"
}

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

oseeEnumType "enum.ats.work.package.type" {
	id 3458764513820541333
	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 {
	id 72057594037928065
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	taggerId DefaultAttributeTaggerProvider
	enumType "enum.ats.work.package.type"
	mediaType "text/plain"
}

oseeEnumType "enum.ats.ipt" {
	id 2695446918879429118
	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 {
	id 6025996821081174931
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	taggerId DefaultAttributeTaggerProvider
	enumType "enum.ats.ipt"
	mediaType "text/plain"
}

attributeType "ats.CAM" extends StringAttribute {
	id 1152921596009727571
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	taggerId DefaultAttributeTaggerProvider
	mediaType "text/plain"
}

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

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

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

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

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

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

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

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

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

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

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

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


attributeType "ats.Active" extends BooleanAttribute {
	id 1152921504606847153
	dataProvider DefaultAttributeDataProvider
	min 1
	max 1
	taggerId DefaultAttributeTaggerProvider
	defaultValue "true"
	mediaType "text/plain"
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

oseeEnumType "enum.ats.review.blocks" {
	id 3458764513820541322
	entry "None"
	entryGuid "CArJmR2JDn5DXT9FGPQA"
	entry "Transition"
	entryGuid "CArJmR3xrEmbw7zbyqgA"
	entry "Commit"
	entryGuid "CArJmR5WzHmG_n_OKhQA"
}

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

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

oseeEnumType "enum.ats.review.formalType" {
	id 3458764513820541323
	entry "InFormal"
	entryGuid "AOwhbvyBMHKCIuhSzwgA"
	entry "Formal"
	entryGuid "AOwiPVD_jCOHV4KnAQwA"
}

oseeEnumType "enum.ats.point" {
	id 3458764513820541324
	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 {
	id 1152921504606847178
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	enumType "enum.ats.point"
	mediaType "text/plain"
}

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

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

oseeEnumType "enum.ats.priority" {
	id 3458764513820541325
	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 {
	id 1152921504606847179
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	enumType "enum.ats.priority"
	mediaType "text/plain"
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

attributeType "ats.Meeting Date"  extends DateAttribute {
	id 5605018543870805270
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	mediaType "text/calendar"	
}

attributeType "ats.Verification Code Inspection" extends BooleanAttribute {
	id 3454966334779726518
	dataProvider DefaultAttributeDataProvider
	min 0
	max 1
	taggerId DefaultAttributeTaggerProvider
	mediaType "text/plain"
}

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

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

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

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

relationType "Country To Program" {
	id 2305846526791909737
	sideAName "Country"
	sideAArtifactType "Country"
	sideBName "Program"
	sideBArtifactType "Program"
	defaultOrderType Unordered
	multiplicity ONE_TO_MANY
}

relationType "Work Package" {
	id 2305843009213694334
	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" {
	id 2305843009213694313
	sideAName "Team Definition"
	sideAArtifactType "Team Definition"
	sideBName "User"
	sideBArtifactType "User"
	defaultOrderType Unordered
	multiplicity MANY_TO_MANY
}

relationType "ActionableItemLead" {
	id 2305843009213694329
	sideAName "Actionable Item"
	sideAArtifactType "Actionable Item"
	sideBName "User"
	sideBArtifactType "User"
	defaultOrderType Unordered
	multiplicity MANY_TO_MANY
}

relationType "TeamMember" {
	id 2305843009213694314
	sideAName "Team Definition"
	sideAArtifactType "Team Definition"
	sideBName "User"
	sideBArtifactType "User"
	defaultOrderType Unordered
	multiplicity MANY_TO_MANY
}

relationType "PrivilegedMember" {
	id 2305843009213694315
	sideAName "Team Definition"
	sideAArtifactType "Team Definition"
	sideBName "User"
	sideBArtifactType "User"
	defaultOrderType Unordered
	multiplicity MANY_TO_MANY
}

relationType "TeamActionableItem" {
	id 2305843009213694316
	sideAName "Team Definition"
	sideAArtifactType "Team Definition"
	sideBName "Actionable Item"
	sideBArtifactType "Actionable Item"
	defaultOrderType Unordered
	multiplicity ONE_TO_MANY
}

relationType "Program To Insertion" {
	id 8921796037933812267
	sideAName "Program"
	sideAArtifactType "Program"
	sideBName "Insertion"
	sideBArtifactType "Insertion"
	defaultOrderType Unordered
	multiplicity ONE_TO_MANY
}

relationType "Insertion To Insertion Activity" {
	id 1336895299757203121
	sideAName "Insertion"
	sideAArtifactType "Insertion"
	sideBName "Insertion Activity"
	sideBArtifactType "Insertion Activity"
	defaultOrderType Unordered
	multiplicity ONE_TO_MANY
}

relationType "Insertion Activity To Work Package" {
	id 8892387571282380815
	sideAName "Insertion Activity"
	sideAArtifactType "Insertion Activity"
	sideBName "Work Package"
	sideBArtifactType "Work Package"
	defaultOrderType Unordered
	multiplicity ONE_TO_MANY
}

relationType "AgileFeatureToItem" {
	id 6017077976601091441
	sideAName "Agile Feature Group"
	sideAArtifactType "Agile Feature Group"
	sideBName "ATS Item"
	sideBArtifactType "ats.State Machine"
	defaultOrderType Lexicographical_Ascending
	multiplicity MANY_TO_MANY
}

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

relationType "AgileTeamToFeatureGroup" {
	id 1067226929733341458
	sideAName "Agile Team"
	sideAArtifactType "Agile Team"
	sideBName "Agile Feature Group"
	sideBArtifactType "Agile Feature Group"
	defaultOrderType Lexicographical_Ascending
	multiplicity ONE_TO_MANY
}

relationType "AgileTeamToAtsTeam" {
	id 9001858956696556140
	sideAName "Agile Team"
	sideAArtifactType "Agile Team"
	sideBName "ATS Team"
	sideBArtifactType "Team Definition"
	defaultOrderType Lexicographical_Ascending
	multiplicity ONE_TO_MANY
}

relationType "AgileTeamToBacklog" {
	id 8816366550731954418
	sideAName "Agile Team"
	sideAArtifactType "Agile Team"
	sideBName "Backlog"
	sideBArtifactType "Goal"
	defaultOrderType Lexicographical_Ascending
	multiplicity ONE_TO_ONE
}

relationType "AgileTeamToSprint" {
	id 7043708594778812661
	sideAName "Agile Team"
	sideAArtifactType "Agile Team"
	sideBName "Sprint"
	sideBArtifactType "Agile Sprint"
	defaultOrderType Lexicographical_Ascending
	multiplicity ONE_TO_MANY
}

relationType "ActionToWorkflow" {
	id 2305843009213694317
	sideAName "Action"
	sideAArtifactType "Action"
	sideBName "Team Workflow"
	sideBArtifactType "Team Workflow"
	defaultOrderType Unordered
	multiplicity ONE_TO_MANY
}

relationType "Port" {
	id 2305843009213694330
	sideAName "From"
	sideAArtifactType "Team Workflow"
	sideBName "To"
	sideBArtifactType "Team Workflow"
	defaultOrderType Unordered
	multiplicity MANY_TO_MANY
}

relationType "Derive" {
	id 2305843009213694331
	sideAName "From"
	sideAArtifactType "Team Workflow"
	sideBName "To"
	sideBArtifactType "Team Workflow"
	defaultOrderType Unordered
	multiplicity ONE_TO_MANY
}

relationType "TeamWfToTask" {
	id 2305843009213694318
	sideAName "Team Workflow"
	sideAArtifactType "Team Workflow"
	sideBName "Task"
	sideBArtifactType "Task"
	defaultOrderType Lexicographical_Ascending
	multiplicity ONE_TO_MANY
}

relationType "TeamWorkflowTargetedForVersion" {
	id 2305843009213694319
	sideAName "Team Workflow"
	sideAArtifactType "Team Workflow"
	sideBName "Version"
	sideBArtifactType "Version"
	defaultOrderType Unordered
	multiplicity MANY_TO_ONE
}

relationType "TeamDefinitionToVersion" {
	id 2305843009213694320
	sideAName "Team Definition"
	sideAArtifactType "Team Definition"
	sideBName "Version"
	sideBArtifactType "Version"
	defaultOrderType Lexicographical_Ascending
	multiplicity ONE_TO_MANY
}

relationType "TeamWorkflowToReview" {
	id 2305843009213694321
	sideAName "Team Workflow"
	sideAArtifactType "Team Workflow"
	sideBName "Review"
	sideBArtifactType "ats.Review"
	defaultOrderType Unordered
	multiplicity MANY_TO_MANY
}

relationType "SubscribedUser" {
	id 2305843009213694322
	sideAName "Artifact"
	sideAArtifactType "Artifact"
	sideBName "User"
	sideBArtifactType "User"
	defaultOrderType Unordered
	multiplicity MANY_TO_MANY
}

relationType "FavoriteUser" {
	id 2305843009213694323
	sideAName "Artifact"
	sideAArtifactType "Artifact"
	sideBName "User"
	sideBArtifactType "User"
	defaultOrderType Unordered
	multiplicity MANY_TO_MANY
}

relationType "ParallelVersion" {
	id 2305843009213694324
	sideAName "Parent"
	sideAArtifactType "Version"
	sideBName "Child"
	sideBArtifactType "Version"
	defaultOrderType Lexicographical_Ascending
	multiplicity MANY_TO_MANY
}

relationType "Owner" {
	id 2305843009213694328
	sideAName "Actionable Item"
	sideAArtifactType "Actionable Item"
	sideBName "Owner"
	sideBArtifactType "User"
	defaultOrderType Lexicographical_Ascending
	multiplicity MANY_TO_MANY
}

relationType "Goal" {
	id 2305843009213694325
	sideAName "Goal"
	sideAArtifactType "Goal"
	sideBName "Member"
	sideBArtifactType "ats.Ats Artifact"
	defaultOrderType Lexicographical_Ascending
	multiplicity MANY_TO_MANY
}

relationType "AutoAddActionToGoal" {
	id 2305843009213694333
	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 {
	id 1152921504606847877
	dataProvider DefaultAttributeDataProvider
	min 1
	max 1
	taggerId DefaultAttributeTaggerProvider
	defaultValue "0"
	mediaType "text/plain"
}

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

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

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

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

oseeEnumType "ats.closure.states" {
	id 3458764513820541340
	entry "Closed"
	entryGuid "CArJmR2JDn5DXT9FGRQB"
	entry "Closing"
	entryGuid "CArJmR3xrEmbw7zbyzhA"
	entry "Open"
	entryGuid "CArJmR5WzHmGBBBOKhQA"
}

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

Back to the top