-
Notifications
You must be signed in to change notification settings - Fork 0
/
JIRA.html
6161 lines (6063 loc) · 563 KB
/
JIRA.html
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
<!DOCTYPE html>
<meta charset="utf-8">
<style>
body {font-family: Arial;}
/* -------------------LINKS------------------------ */
.links line {
}
.RAWG {
stroke-width: 15px;
stroke:#8f753c;
stroke-opacity: 0.5;
}
.EpicRel {
stroke:#9050DF;
stroke-width: 10px;
stroke-opacity: 0.1;
}
.EpicRelDup {
stroke:#9050DF;
stroke-width: 15px;
stroke-opacity: 0.9;
}
/* -------------------NODES------------------------ */
.nodes polygon {
stroke-width: 2.5px;
}
text {
font-family: sans-serif;
font-size: 1px;
font-weight: bold;
}
.BoardText {
font-size: 20px;
text-anchor:middle;
fill: #aaaaaa;
r: 60px;
z-index: 41
}
.Board {
fill: #FFF;
r: 60px;
z-index: 40;
}
.EpicText {
font-size: 10px;
text-anchor:middle;
fill: #5312A8;
r: 20px;
z-index: 41
}
.Epic {
fill: #9050DF;
r: 20px;
z-index: 40;
}
.StoryText {
font-size: 8px;
text-anchor:middle;
fill: #3E722A;
r: 20px;
z-index: 41
}
.Story {
fill: #64BA43;
r: 20px;
z-index: 40;
}
.TaskText {
font-size: 6px;
text-anchor:middle;
fill: #3A55A5;
r: 20px;
z-index: 41
}
.Task {
fill: #4FAEE6;
r: 20px;
z-index: 40;
}
.Template {
font-size: 8px;
fill: #0a17a9;
r: 8px;
}
.TemplateText {
font-size: 5px;
fill: #000000;
r: 8px;
}
.RA {
fill: #f6a901;
r: 20px;
z-index: 40;
}
.RAText {
font-size: 10px;
text-anchor:middle;
fill: #8f753c;
r: 20px;
z-index: 41
}
.WG {
font-size: 9px;
fill: #e6c57d;
z-index: 40
}
.WGText {
font-size: 9px;
fill: #f6a901;
text-anchor:middle;
z-index: 41
}
.Class {
font-size: 1px;
fill: #dddddd;
stroke-opacity: 0.1;
fill-opacity: 0.1;
z-index: -41
}
.ClassText {
font-size: 1px;
fill-opacity: 0.1;
fill: #dddddd;
}
.TemplateType {
font-size: 1px;
fill: #ffffff;
}
</style>
<h3>JIRA - TEM</h3>
<div style="text-align:center;">
<svg id="r2" width="1940" height="1020" ></svg>
</div>
<script src="https://d3js.org/d3.v4.min.js"></script>
<script id="datasource">var graph = {
"nodes": [
{"id": "Engagement", "label": "Engagement", "group": 1, "status":"","type": "Board"},
{"id": "LEXiCON Accel", "label": "LEXiCON Accel", "group": 1, "status":"","type": "Board"},
{"id": "Software Development", "label": "Software Development", "group": 1, "status":"","type": "Board"},
{"id": "TEM-337", "label": "WP1- A collection of wishlist items that require Stakeholder input and prioritisation.", "group": 1, "status":"To Do","type": "Epic"},
{"id": "TEM-525", "label": "WP2 - The production of material that contributes to creating a set of report(s) detailing the work we have done. or informs the work that others will need to pursue further.", "group": 1, "status":"To Do","type": "Epic"},
{"id": "TEM-661", "label": "WP4 - The creation of industry templates", "group": 1, "status":"To Do","type": "Epic"},
{"id": "TEM-873", "label": "PL-MS Marketting Strategy for product", "group": 1, "status":"To Do","type": "Epic"},
{"id": "TEM-1039", "label": "WP4-HADG-demonstrator tasks", "group": 1, "status":"In Progress","type": "Epic"},
{"id": "TEM-1045", "label": "PL-DEMO-GH- Grasshopper Plugin", "group": 1, "status":"To Do","type": "Epic"},
{"id": "TEM-1046", "label": "PL-DEMO-XL- Excel OfficeJs Script Lab Development Plugin", "group": 1, "status":"To Do","type": "Epic"},
{"id": "TEM-1348", "label": "WP4-DFE-DFE Demonstrator Tasks", "group": 1, "status":"In Progress","type": "Epic"},
{"id": "TEM-1350", "label": "WP4-B4W-B4W demonstrator tasks", "group": 1, "status":"In Progress","type": "Epic"},
{"id": "TEM-1343", "label": "WP4-SBD-SBD demonstrator tasks", "group": 1, "status":"In Progress","type": "Epic"},
{"id": "TEM-1344", "label": "WP4-TATA-TATA demonstrator tasks", "group": 1, "status":"In Progress","type": "Epic"},
{"id": "TEM-1345", "label": "WP4-PLT-Platform demonstrator tasks", "group": 1, "status":"In Progress","type": "Epic"},
{"id": "TEM-1894", "label": "WP4-IMF-IMF Demonstrator tasks", "group": 1, "status":"To Do","type": "Epic"},
{"id": "TEM-2636", "label": "WP1- Interested Party", "group": 1, "status":"To Do","type": "Epic"},
{"id": "TEM-2637", "label": "WP1- LEXiCON Secretariat", "group": 1, "status":"To Do","type": "Epic"},
{"id": "TEM-2633", "label": "WP1- Relevant Authority", "group": 1, "status":"To Do","type": "Epic"},
{"id": "TEM-2634", "label": "WP1- Template Working Group", "group": 1, "status":"To Do","type": "Epic"},
{"id": "TEM-2647", "label": "WP1- Working Group Lead", "group": 1, "status":"To Do","type": "Epic"},
{"id": "TEM-2654", "label": "WP1- Other", "group": 1, "status":"To Do","type": "Epic"},
{"id": "TEM-2780", "label": "WP1- Early Adopter", "group": 1, "status":"To Do","type": "Epic"},
{"id": "TEM-2838", "label": "WP1- Properties Producer", "group": 1, "status":"To Do","type": "Epic"},
{"id": "TEM-2839", "label": "WP1- Properties Consumer", "group": 1, "status":"To Do","type": "Epic"},
{"id": "TEM-2840", "label": "WP1- Template Producer", "group": 1, "status":"To Do","type": "Epic"},
{"id": "TEM-2841", "label": "WP1- Template Consumer", "group": 1, "status":"To Do","type": "Epic"},
{"id": "TEM-2842", "label": "WP1- Datasheet Producer", "group": 1, "status":"To Do","type": "Epic"},
{"id": "TEM-2843", "label": "WP1- Datasheet Consumer", "group": 1, "status":"To Do","type": "Epic"},
{"id": "TEM-2848", "label": "WP1- Relevant Authority Arbitrator", "group": 1, "status":"To Do","type": "Epic"},
{"id": "TEM-4", "label": "PL_DsAu - Design Related Actions needed for Templater and Lexicon System.", "group": 1, "status":"In Progress","type": "Epic"},
{"id": "TEM-6", "label": "PL_EUSL - End user service on the system", "group": 1, "status":"In Progress","type": "Epic"},
{"id": "TEM-7", "label": "UI_DEMO - Down stream applications that consume Templater", "group": 1, "status":"To Do","type": "Epic"},
{"id": "TEM-8", "label": "PL_MISC - Miscellaneous", "group": 1, "status":"To Do","type": "Epic"},
{"id": "TEM-142", "label": "TM_PU - [Public User] Public users that interested in Templater", "group": 1, "status":"In Progress","type": "Epic"},
{"id": "TEM-143", "label": "TM_RU - [Registered User] - Public users that have log in account on Templater", "group": 1, "status":"In Progress","type": "Epic"},
{"id": "TEM-144", "label": "TM_DE - [Data Engineer] - Registered user that have accessibility to modify data model", "group": 1, "status":"In Progress","type": "Epic"},
{"id": "TEM-145", "label": "TM_DA - [Data Engineer Administrator] - Data engineer that has full capability on allocation of the whole system", "group": 1, "status":"To Do","type": "Epic"},
{"id": "TEM-146", "label": "TM_LXU - [Client Side System as a user] - Registered user that is representing an external system", "group": 1, "status":"In Progress","type": "Epic"},
{"id": "TEM-147", "label": "TM_CA - [Secretariat-Role] Customer Admin - Registered User that has the ability to allocate other registered users except data engineer", "group": 1, "status":"To Do","type": "Epic"},
{"id": "TEM-148", "label": "LX_PU - [Public user] Public users that interested in LEXiCON", "group": 1, "status":"In Progress","type": "Epic"},
{"id": "TEM-149", "label": "LX_RU - [Registered User] -Public users that have log in account on LEXiCON", "group": 1, "status":"In Progress","type": "Epic"},
{"id": "TEM-150", "label": "LX_IP - [Interested Party] -LEXiCON user that contribute in Templater related actions.", "group": 1, "status":"To Do","type": "Epic"},
{"id": "TEM-151", "label": "LX_RA - [Relevant Authority] LEXiCON Template Author that publish consensus on Tempate related actions.", "group": 1, "status":"To Do","type": "Epic"},
{"id": "TEM-152", "label": "LX_CA - [Secretariat Role] Customer Admin - LEXiCON Registered User that has the ability to allocate other registered users and are neutral secretariat of their areas of the template authoring system.", "group": 1, "status":"In Progress","type": "Epic"},
{"id": "TEM-1054", "label": "PL_GA - General Application Libraries (e.g the production of general components that aren't directly consumed by end users)", "group": 1, "status":"To Do","type": "Epic"},
{"id": "TEM-1483", "label": "Stakeholder Engagement with HACT in Sprint 15", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-1270", "label": "Excel UI 'Tube Map'", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-204", "label": "GUID and naming convention methodology", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-208", "label": "Establish GUID Integration", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-706", "label": "GUID Integration - Part 2", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-707", "label": "Build on GUID webservice - Part 1", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-536", "label": "BIM4 water demonstrator - Part 1 ", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-695", "label": "Specify additional information for each type of contribution ", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-906", "label": "Revise Endpoint - Contribution", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-1320", "label": "Revise Endpoint - User Database Table and API", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-1340", "label": "Revise Endpoint - Contribution for Comment", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-1346", "label": "API - Contribution process with comments", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-1349", "label": "Revise Endpoint - Team Database Table and API", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-247", "label": "Establish Definition Content Concepts to begin work on database and APIs", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-285", "label": "Establish Categories entity database table and API", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-286", "label": "Establish Common Property entity database table and API", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-287", "label": "Establish Base Unit entity database table and API", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-288", "label": "Establish Derived Unit entity database table and API", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-343", "label": "Build on Category Database Table and API", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-344", "label": "Build on Common Property Database Table and API", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-345", "label": "Establish Taxonomy Classification Database Table and API", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-346", "label": "Establish Generic Unit Database Table and API", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-347", "label": "Establish Generic Property Database Table and API", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-348", "label": "Establish Specific Property Database Table and API", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-349", "label": "Establish Method of Measurement Database Table and API", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-350", "label": "Establish Master Template Database Table and API", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-351", "label": "Establish Actor Database Table and API", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-352", "label": "Establish Activity Database Table and API", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-353", "label": "Establish Subject Matter Database Table and API", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-445", "label": "Build on Base/Derived Unit Database Table and API", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-527", "label": "Build on Generic Unit Database Table and API", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-545", "label": "Build on Generic Property Database Table and API", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-603", "label": "Establish Partonomy API", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-604", "label": "Build on Taxonomy Database Table and API ", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-607", "label": "Build on Actor Database Table and API", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-608", "label": "Build on Activity Database Table and API", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-620", "label": "Build on Master Template Database Table and API", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-639", "label": "Establish Stage Database Table and API", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-662", "label": "Establish UI Prototype for Taxonomy Classification ", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-667", "label": "Establish UI Prototype for Subject Matter", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-646", "label": "Review Templater 1 current functionality for Taxonomy", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-734", "label": "Build on Stage Database Table and API", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-735", "label": "Build on Subject Matter Database Table and API", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-769", "label": "Build on Method Of Measurement Database Table and API", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-894", "label": "Build on Specific Property Database Table and API", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-1256", "label": "API - Contribution Process", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-1386", "label": "API - Other Entities Modelling Process", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-1440", "label": "API - Contribution to content creation", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-54", "label": "Create and organise registered users into Teams (aka Council)", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-11", "label": "Satelite Client User Story", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-158", "label": "Finalise membership elements started in Sprint 1", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-180", "label": "Organisation User Story", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-198", "label": "Request for new registered user", "group": 1, "status":"Aborted","type": "Story"},
{"id": "TEM-231", "label": "Create new contributions", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-232", "label": "API - Update status of the contribution", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-233", "label": "Retrieve Contribution Comments", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-234", "label": "API - Add Comment about a Contribution", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-235", "label": "Retrieve Contribution", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-236", "label": "Retrieve Contributions", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-237", "label": "Update Contribution Detail", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-238", "label": "API - Link Contribution", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-239", "label": "API - Retrieve related Contribution", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-240", "label": "API - Breakdown Contribution", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-289", "label": "Build on Authorisation Request Database and API", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-378", "label": "Identify corresponding APIs in Contribution Postman Collection for UI prototype.", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-1228", "label": "Team Functionality", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-1347", "label": "Time-boxed Meeting on Notification System", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-1443", "label": "Time-boxed Meeting on Notification System with Andrew", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-2738", "label": "As a System Admin, no other claims/roles should be able to change my credentials", "group": 1, "status":"To Do","type": "Story"},
{"id": "TEM-677", "label": "Establish UI Prototype for Specific Property UI", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-720", "label": "Establish UI Prototype for Method of Measurement", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-755", "label": "Establish UI Prototype for Partonomy", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-514", "label": "Establish template compilation features", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-1016", "label": "Establish Group of Properties Database Table and API", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-1016", "label": "Establish Group of Properties Database Table and API", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-682", "label": "Establish UI Prototype for Stage", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-2790", "label": "LX As a buildingSMART UKI member I want to use LEXiCON alongside the bSDD so that I won’t have two different data dictionaries to use which may conflict.", "group": 1, "status":"To Do","type": "Story"},
{"id": "TEM-2799", "label": "LX As a [manufacturer] I would like to [align my PDTs to LEXiCON] so that [users can find them]", "group": 1, "status":"To Do","type": "Story"},
{"id": "TEM-2804", "label": "LX As a consumer of PDS's I would like to be able to tell which PDT my PDS comes from", "group": 1, "status":"To Do","type": "Story"},
{"id": "TEM-2808", "label": "LX As a designer, how do I find the performance characteristics of a set of products?", "group": 1, "status":"To Do","type": "Story"},
{"id": "TEM-2809", "label": "LX As a constructor, how do I find products that meet a generic product specification?", "group": 1, "status":"To Do","type": "Story"},
{"id": "TEM-2810", "label": "LX As a maintainer, how do I find maintenance tasks for a specific product that has already been installed? (May be a historic product line).", "group": 1, "status":"To Do","type": "Story"},
{"id": "TEM-2811", "label": "LX As a designer, how do I provide a PDT to a manufacturer and ask them to provide data in the relevant format?", "group": 1, "status":"To Do","type": "Story"},
{"id": "TEM-2812", "label": "LX As a Relevant Authority how do I find the experts/cover the requirements in PDT’s of future MHCLG, Golden thread, all other safety requirements, environmental & recycling regulations and industry recognised initiatives, European standards/technical spe", "group": 1, "status":"To Do","type": "Story"},
{"id": "TEM-9", "label": "BIM Team User Story", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-10", "label": "BRE System Admin User Story", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-12", "label": "Software Developer User Story", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-141", "label": "DoD refinement - Epic and Whole", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-156", "label": "User concept developed and agreed for required Personas/Users", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-157", "label": "Managing Authorisations/Permissions", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-194", "label": " Establish Authorisation Requests Database & API Features", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-202", "label": "Establish Contributions (formerly known as Request)/Process Concepts", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-203", "label": "Broaden organisation details captured", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-211", "label": "Establish Definition Request Database & API Features", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-212", "label": "Explore Using Membership service to enable conditional in other services", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-273", "label": "Change Application to use Guid format Identifiers instead of Numerical Identifiers", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-284", "label": "Establish XSLT Extensible HTTPTransformation Functionality", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-457", "label": "Establish XML Response and investigate post process XSLT functionality", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-459", "label": "Investigate API Gateway Layer", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-636", "label": "Establish alternative Ui for Client Side Data Template Creation", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-692", "label": "Optimize UI Components and layout for better delivery", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-945", "label": "Create deployment scenarios ", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-948", "label": "Preparation for Ahmed's Meeting", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-1238", "label": "Establish Home Page index.html", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-1459", "label": "Time-boxed meeting on deployment url covention ", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-1549", "label": "Discussion on source code management", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-1551", "label": "Evaluation Framework for Templater 2", "group": 1, "status":"Aborted","type": "Story"},
{"id": "TEM-444", "label": "Review Ontology Overview Report", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-160", "label": "Establish definition of Legal requirements", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-278", "label": "GDPR Functionality", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-199", "label": "Definition Request Simulation_1 ", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-458", "label": "Strategise the engagement activities", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-649", "label": "Stakeholder engagement in Sprint 9", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-803", "label": "Stakeholder engagement in Sprint 10", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-49", "label": "As the Project Manager in the CIH (acting as Product Owner), I need to report time scales to others who don't care about the granularity of a backlog and the regularity of a sprint.", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-519", "label": "Draft Ontology Overview Report", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-672", "label": "Establish UI Prototype for Template Compilation", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-687", "label": "Link UI prototype links to Process mapping", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-964", "label": "Establish UI for Client Side Registration ", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-984", "label": "[Learning] Excel ScritptLab UI bring stuff to life.", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-1070", "label": "[Learning] Excel JavaScript for Templater", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-1389", "label": "Complete - The template creation UIUX in Adobe XD", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-1484", "label": "Improve tube map in scriptlab", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-1485", "label": "Establish Content for alpha release - Part 1", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-1528", "label": "Register as a system user", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-1558", "label": "Establish Content for alpha release - Part 2", "group": 1, "status":"Done","type": "Story"},
{"id": "TEM-1750", "label": "Temp / Delete", "group": 1, "status":"Aborted","type": "Story"},
{"id": "TEM-2644", "label": "test", "group": 1, "status":"To Do","type": "Story"},
{"id": "TEM-2645", "label": "test", "group": 1, "status":"To Do","type": "Story"},
{"id": "TEM-2787", "label": "LX As a specifier I want to be able to look up consistent object characteristics so that I can cite something recognizable to suppliers and installers.", "group": 1, "status":"To Do","type": "Story"},
{"id": "TEM-2788", "label": "LX As an information manager I want to be able to restrict what properties my project team can use so that their information can be more easily integrated.", "group": 1, "status":"To Do","type": "Story"},
{"id": "TEM-2789", "label": "LX As an officer IT champion I want to be able to set up templates/objects using industry agree properties so that I won’t need to configure my templates/objects on a project by project basis.", "group": 1, "status":"To Do","type": "Story"},
{"id": "TEM-2791", "label": "LX As an [RA] I would like to [search for PDT titles] so that [I can determine new ones]", "group": 1, "status":"To Do","type": "Story"},
{"id": "TEM-2792", "label": "LX As LEXiCON Sec, how do I onboard an RA to bring in sector specific expertise?", "group": 1, "status":"To Do","type": "Story"},
{"id": "TEM-2793", "label": "LX As an RA, how do I create a Working Group to assign PDT titles to?", "group": 1, "status":"To Do","type": "Story"},
{"id": "TEM-2794", "label": "LX As a Relevant Authority for Fenestration I want to create a number of PDTs such as doorsets and hardware so that we can provide industry with Templates to enable creation of Product Data Sheets ", "group": 1, "status":"To Do","type": "Story"},
{"id": "TEM-2795", "label": "LX As a WG, how do I bring RA members into WG?", "group": 1, "status":"To Do","type": "Story"},
{"id": "TEM-2796", "label": "LX As a WG, how do I bring in Interested Parties from outside of the RA?", "group": 1, "status":"To Do","type": "Story"},
{"id": "TEM-2797", "label": "LX As an [WG] I would like [an easily searchable database] so that [I can create new PDTs]", "group": 1, "status":"To Do","type": "Story"},
{"id": "TEM-2798", "label": "LX How do I create a base PDT to start the authoring process?", "group": 1, "status":"To Do","type": "Story"},
{"id": "TEM-2800", "label": "LX As an [WG] I would like to [push a PDT for approval] so that [it can be published]", "group": 1, "status":"To Do","type": "Story"},
{"id": "TEM-2801", "label": "LX As an object specifier, I want to be able to search through a library of PDTs to inform my model element library for (insert design modelling software here) and the parameters therein", "group": 1, "status":"To Do","type": "Story"},
{"id": "TEM-2802", "label": "LX As a product manufacturer i want to utilise PDTs to create my own set of Product Data Sheets ", "group": 1, "status":"To Do","type": "Story"},
{"id": "TEM-2803", "label": "LX As a manufacturer, how do I find out who to contact to obtain the PDTs for my different products?", "group": 1, "status":"To Do","type": "Story"},
{"id": "TEM-2805", "label": "LX As a Relevant Authority I want to keep out commercial content and white noise from PDT’s how do I manage this.", "group": 1, "status":"To Do","type": "Story"},
{"id": "TEM-2806", "label": "LX As a manufacturer, how do i ask for a property in a PDT to be changed or removed?", "group": 1, "status":"To Do","type": "Story"},
{"id": "TEM-2807", "label": "LX As a manufacturer, how do I add a property to a PDT if I think it is relevant?", "group": 1, "status":"To Do","type": "Story"},
{"id": "TEM-1852", "label": "A working Demonstrator for HADG", "group": 1, "status":"Content : Done","type": "Story"},
{"id": "TEM-1292", "label": "Data Dictionary Reference App for Word", "group": 1, "status":"To Do","type": "Story"},
{"id": "TEM-1861", "label": "A working Demonstrator for SBD", "group": 1, "status":"Testing : Done","type": "Story"},
{"id": "TEM-2144", "label": "A working demonstrator for Platform", "group": 1, "status":"Content : Done","type": "Story"},
{"id": "TEM-892", "label": "Product image storing in template", "group": 1, "status":"To Do","type": "Story"},
{"id": "TEM-1362", "label": "Search functionality ", "group": 1, "status":"To Do","type": "Story"},
{"id": "TEM-1243", "label": "Reactivate feature for archived entities", "group": 1, "status":"To Do","type": "Story"},
{"id": "TEM-1451", "label": "Implement Hiding feature in Method Of Measurement, Stage and Taxonomy", "group": 1, "status":"To Do","type": "Story"},
{"id": "TEM-173", "label": "Ability to review and publish the data model, search and access the published data model.", "group": 1, "status":"In Progress","type": "Story"},
{"id": "TEM-1254", "label": "Include Governance Ontology ", "group": 1, "status":"To Do","type": "Story"},
{"id": "TEM-174", "label": "Configurable pre-filter of Type1 responses ", "group": 1, "status":"In Progress","type": "Story"},
{"id": "TEM-1439", "label": "collective reporting dashboard ", "group": 1, "status":"To Do","type": "Story"},
{"id": "TEM-1801", "label": "A Contribution Interface", "group": 1, "status":"Research and Scoping : To Do","type": "Story"},
{"id": "TEM-1815", "label": "A Template Download Interface", "group": 1, "status":"To Do","type": "Story"},
{"id": "TEM-1843", "label": "A Working GUI of a Type 2 system", "group": 1, "status":"To Do","type": "Story"},
{"id": "TEM-159", "label": "Registration invitation feature", "group": 1, "status":"To Do","type": "Story"},
{"id": "TEM-1954", "label": "Governance of Organisations Membership Details", "group": 1, "status":"To Do","type": "Story"},
{"id": "TEM-58", "label": "Client Side Workflow Feature", "group": 1, "status":"In Progress","type": "Story"},
{"id": "TEM-1011", "label": "UI - Sort Order on Specific Properties", "group": 1, "status":"To Do","type": "Story"},
{"id": "TEM-1014", "label": "Add Defintion Sensitivity as an additional parameter to Contribution inputs", "group": 1, "status":"In Progress","type": "Story"},
{"id": "TEM-1015", "label": "Add criticality to the submission of a property contribution", "group": 1, "status":"To Do","type": "Story"},
{"id": "TEM-1825", "label": "Managing a Contribution in Excel", "group": 1, "status":"Content : Done","type": "Story"},
{"id": "TEM-1834", "label": "Managing Consensus in MS Teams", "group": 1, "status":"To Do","type": "Story"},
{"id": "TEM-520", "label": "Technical Specification for Data Dictionary", "group": 1, "status":"To Do","type": "Story"},
{"id": "TEM-521", "label": "Technical Specification for Data Template Solution", "group": 1, "status":"To Do","type": "Story"},
{"id": "TEM-524", "label": "Evaluation Report for Researching Alternative Technologies (Triple Store vs SQL)", "group": 1, "status":"To Do","type": "Story"},
{"id": "TEM-1883", "label": "Integrate Type 1 into National Digital Twin", "group": 1, "status":"Content : Done","type": "Story"},
{"id": "TEM-1897", "label": "Scope for the Data we share", "group": 1, "status":"In Progress","type": "Story"},
{"id": "TEM-2155", "label": "OpenAPI Documentation", "group": 1, "status":"To Do","type": "Story"},
{"id": "TEM-793", "label": "GUID report", "group": 1, "status":"Design : Done","type": "Story"},
{"id": "TEM-1872", "label": "A Working Demonstrator for D-COM", "group": 1, "status":"Design : Done","type": "Story"},
{"id": "TEM-1908", "label": "LEXiCON Report", "group": 1, "status":"Research and Scoping : Done","type": "Story"},
{"id": "TEM-1919", "label": "DfE Template Demonstrator", "group": 1, "status":"Research and Scoping : Done","type": "Story"},
{"id": "TEM-1930", "label": "Ontology Overview Report", "group": 1, "status":"Content : In Progress","type": "Story"},
{"id": "TEM-2116", "label": "The Production and Implementation of Legal Content", "group": 1, "status":"Testing : To Do","type": "Story"},
{"id": "TEM-2122", "label": "A working Demonstrator for Circular Building Assessment (CBA, aka BAMB 2)", "group": 1, "status":"Deployment to PRD: Done","type": "Story"},
{"id": "TEM-2133", "label": "A working Demonstrator for Circuit", "group": 1, "status":"Deployment to PRD: Done","type": "Story"},
{"id": "TEM-2217", "label": "A Working Demonstration of Type1", "group": 1, "status":"To Do","type": "Story"},
{"id": "TEM-2412", "label": "LEXiCON Process and Interface Requirements", "group": 1, "status":"Design : Done","type": "Story"},
{"id": "TEM-1044", "label": "Guideline for each industry stakeholder type", "group": 1, "status":"To Do","type": "Story"},
{"id": "TEM-779", "label": "Engage with HACT in Sprint 9", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-809", "label": "Engage with HACT", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-843", "label": "Classification Mapping Exercise -HACT sprint 10", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-849", "label": "[Content] Property Accumulation Exercise", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-926", "label": "Technical meeting with HACT", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-927", "label": "Licencing followup with HACT", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-928", "label": "Followup meeting with HACT", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-972", "label": "HACT Spill over meeting", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-1271", "label": "Prepare contributions file to be added to added to Templater 1 ", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-1272", "label": "COBie category consensus", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-1273", "label": "Lookup functionality for L&Q Uniclass list", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-1394", "label": "Seed file HADG", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-1403", "label": "Finalise L&Q Uniclass X-reference", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-1409", "label": "Meeting HADG", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-1557", "label": "Meeting with HADG", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-1694", "label": "[Content] Create demo video for HADG", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-1722", "label": "HADG template data for ActiveTemplates", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-1855", "label": "[Research and Scoping] A working Demonstrator for HADG", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-1856", "label": "[Design] HADG in Templater 2 - Part 1", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-1857", "label": "[Software Development] A working Demonstrator for HADG", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-1858", "label": "[Deploy UAT] A working Demonstrator for HADG - Sprint 18", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-1859", "label": "[Testing] A working Demonstrator for HADG", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2282", "label": "[Deploy UAT] A working Demonstrator for HADG - Sprint 19", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-2281", "label": "[Deploy to UAT] Make HADG's Templater-1 site available via https://templater-hadd.bim4housing.com", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-2287", "label": "[Design] HADG in Templater 2 - Part 2", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2351", "label": "HADD Templater development", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-2355", "label": "[Content] Preparation of CIBSE information", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-2365", "label": "[Content] HADG Template Creation and mis.", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-2395", "label": "Changes to HADD Templater", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-2449", "label": "[Design] HADD Process", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-2466", "label": "[Software Development] Additional HTML tweaks to HADG's Templater-1 environment", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-2471", "label": "[Design] GTI Working Group Demonstration ", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-2497", "label": "[Software Development] Additional HTML tweaks to HADG's Templater-1 environment - Part 2", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-2505", "label": "Library Property Form Preview", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2519", "label": " [Content] Preparation of CIBSE information - Part 2", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-2521", "label": "[Software Development] Additional HTML tweaks to HADG's Templater-1 environment - Part 3", "group": 1, "status":"In Progress","type": "Task"},
{"id": "TEM-2526", "label": "[Stakeholder Engagement] Provide Access to WP and CL in HADD Templater 1", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-2534", "label": "[Deploy to UAT] HADD Templater 1 deploy changes", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-2537", "label": "[Software Development] Templater-1 tweak re alternative to the 'userIsInEditorGroup' check for enabling the 'include' checkbox", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2524", "label": "[Content] Update HADD Templater HTML", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-2539", "label": "Send HADG databases to Jason", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-2540", "label": "[Software Development] Additional HADG Templater-1 tweaks", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-2609", "label": "Webconfig for the variable state id on the Inclusion Tickbox", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-2610", "label": "Create Logical Constant UserIsIn[LibraryAuthor]", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2611", "label": "[Research] Understand Logic of constant to display action buttons and migrate hard coded to workflow where feasible - Part 1", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-2571", "label": "[Content] HADG videos - LibraryAuthor", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-2574", "label": "[Software Development] Assign Classification Button added", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-2575", "label": "[Software Development] Workflow Button (particularly the comment Action) added to pages", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-2578", "label": "[Software Development] Simplify Create Template Page", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-2586", "label": "[Stakeholder Engagement] HACT Meeting - Sprint 24-2 ", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-2599", "label": "[Content] HADG videos - TemplateAuthor", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-2600", "label": "[Content] HADG videos - Adminstration", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-2623", "label": "HADG tweaks to HTML - User Profile Page - Part 1", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-2612", "label": "[Content] Update BIMHawk information", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-2616", "label": "[Content] Workflows Tidy up", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-2639", "label": "[Content] Add videos within process map", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-2643", "label": "[Deploy to UAT] Consolidate Templater-1 source code - Part 1", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-2761", "label": "WP - [Stakeholder Engagement] HADG Templater - Sprint 25-1", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-2743", "label": "Determine in templater 1 code where Guid is added to an entity", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2746", "label": "[Stakeholder Engagement] HADG Templater - Sprint 25-1", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-2765", "label": "Update workflow diagram", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-2767", "label": "Update workflow diagram", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-2771", "label": "Change HADG db login credentials (without impacting other T1 envs!)", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-2816", "label": "[Research] Understand Logic of constant to display action buttons and migrate hard coded to workflow where feasible - Part 2", "group": 1, "status":"In Progress","type": "Task"},
{"id": "TEM-2818", "label": "Update workflow page", "group": 1, "status":"In Progress","type": "Task"},
{"id": "TEM-2833", "label": "HADG tweaks to HTML - User Profile Page - Part 2", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-2845", "label": "[Stakeholder Engagement] GTI related Meeting - Sprint 25-2", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-2860", "label": "[Content] HADG videos - Library Level", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-2886", "label": "[Stakeholder] Practice run through of role action transition", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2887", "label": "[Deploy to UAT] Consolidate Templater-1 source code - Part 2", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2890", "label": "[Research] Understand Logic of constant to display action buttons and migrate hard coded to workflow where feasible - Part 3", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-825", "label": "[Software Development] Develop Grasshopper C# Nodes for endpoints", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-827", "label": "Download Gh Visual c# Studio Environment", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-916", "label": "[Learning] Grasshopper UI bring stuff to life.", "group": 1, "status":"Aborted","type": "Task"},
{"id": "TEM-976", "label": "Investigate Office Add-In development - Part 1", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-1202", "label": "Optimised UI for Excel Plugin", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-1204", "label": "Apply Table Record filtering function", "group": 1, "status":"Aborted","type": "Task"},
{"id": "TEM-1205", "label": "Potential Http call function placeholder", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-1278", "label": "Investigate Office Add-In development - Part 2", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-1364", "label": "[Research & Scoping] Investigate responsive Screen size thought about for Excel Task Pane", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-1578", "label": "[Design] User Journey of Excel Markup and contribution", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-1582", "label": "[Design] Offline session handling", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2209", "label": "[Research and Scoping] Data Dictionary Reference App for Word", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2210", "label": "[Design] Data Dictionary Reference App for Word", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2211", "label": "[Software Development] Data Dictionary Reference App for Word", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2212", "label": "[Deploy UAT] Data Dictionary Reference App for Word", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2213", "label": "[Testing] Data Dictionary Reference App for Word", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2215", "label": "[Content] Data Dictionary Reference App for Word", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2216", "label": "[Deploy to PRD] Data Dictionary Reference App for Word", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-409", "label": "Review GUID methods with Paul", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-1382", "label": "Review GUID DLL and any differences to currently supplied dll", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-2168", "label": "[Research and Scoping] GUID report", "group": 1, "status":"In Progress","type": "Task"},
{"id": "TEM-2169", "label": "[Design] GUID report", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-2170", "label": "[Software Development] GUID report", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2171", "label": "[Deploy UAT] GUID report", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2172", "label": "[Testing] GUID report", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2174", "label": "[Content] GUID report", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2175", "label": "[Deploy to PRD] GUID report", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2240", "label": "Mutual Mentoring - Part 1", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-2309", "label": "Mutual Mentoring - Part 2", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-2356", "label": "[Content] Documenting SVN Branching Strategy for AP", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2579", "label": "[Software Development] Templater-2: Changes to some DLLs to use single interfaces - Part-1", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-2739", "label": "[Software Development] Templater-2: Changes to some DLLs to use single interfaces - Part-2", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-2817", "label": "[Software Development] Templater-2: Changes to some DLLs to use single interfaces - Part-3", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-836", "label": "Engagement with SBD Team in Sprint 13", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-845", "label": "Classification Mapping Exercise", "group": 1, "status":"Aborted","type": "Task"},
{"id": "TEM-846", "label": "Property Accumulation Exercise", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-1338", "label": "Engagement with SBD Team in Sprint 14", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-1460", "label": "Engagement with SBD Team in Sprint 15", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-1517", "label": "Engagement with SBD Team in Sprint 16", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-1623", "label": "Engagement with SBD Team in Sprint 17", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-1868", "label": "[Testing] Product Data Sheet Integration Part 1", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-1870", "label": "[Content] A working Demonstrator for SBD", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2239", "label": "[Testing] SBD Product Data Sheet Integration Part 2", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-2305", "label": "[Testing] SBD Product Data Sheet Integration Part 3", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-2372", "label": "[Testing] SBD Product Data Sheet Integration Part 4", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-2455", "label": "[Testing] SBD Product Data Sheet Integration Part 5", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-2844", "label": "[Stakeholder Engagement] SBD Catch Up - Sprint 25-2", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-1048", "label": "Consolidate TATA with B4W Templates", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-1049", "label": "Draw Sankey diagram ", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-1258", "label": "B4W and TATA XSLT property contribution ", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-811", "label": "Engage with DFMA", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-842", "label": "[Content] Classification Mapping Exercise - DfMA Sprint 10", "group": 1, "status":"Aborted","type": "Task"},
{"id": "TEM-850", "label": "Property Accumulation Exercise", "group": 1, "status":"Aborted","type": "Task"},
{"id": "TEM-935", "label": "Meeting on Platform", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-936", "label": "[Research and Scoping] Scoping for Platform demonstrator", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-2147", "label": "[Research and Scoping] A working demonstrator for Platform", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2148", "label": "[Design] A working demonstrator for Platform", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-2149", "label": "[Software Development] A working demonstrator for Platform", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2150", "label": "[Deploy UAT] A working demonstrator for Platform", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2151", "label": "[Testing] A working demonstrator for Platform", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2153", "label": "[Content] A working demonstrator for Platform - Part 1", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-2154", "label": "[Deploy to PRD] A working demonstrator for Platform", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2434", "label": "[Stakeholder Engagement] Platform Demonstrator - Pete", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-2532", "label": "[Stakeholder Engagement] Meeting with Pete in Platform", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-2562", "label": "[Deploy to UAT] Deploy a new instance of Templater-1, i.e. templater-platform", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-2584", "label": "[Stakeholder Engagement] Meeting With PF - Sprint 24-2", "group": 1, "status":"Suspended","type": "Task"},
{"id": "TEM-2713", "label": "[Content] Workflows Tidy up", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-2701", "label": "Workflows testing ", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2762", "label": "PF - [Stakeholder Engagement] Platform - Product Data Demonstrator", "group": 1, "status":"Aborted","type": "Task"},
{"id": "TEM-2745", "label": "[Stakeholder Engagement] PDP Village Hall - Platform Design", "group": 1, "status":"Aborted","type": "Task"},
{"id": "TEM-2749", "label": "[Stakeholder Engagement] Platform POC-RV - Product Data Demonstrator", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-2846", "label": "[Stakeholder Engagement] Platform Meeting - Sprint 25-2", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-840", "label": "Download SEISMIC models and extract parameters", "group": 1, "status":"Suspended","type": "Task"},
{"id": "TEM-844", "label": "[Content] Classification Mapping Exercise -DfE Sprint 10", "group": 1, "status":"Aborted","type": "Task"},
{"id": "TEM-848", "label": "Property Accumulation Exercise", "group": 1, "status":"Aborted","type": "Task"},
{"id": "TEM-1410", "label": "Meeting DfE", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-1922", "label": "[Research and Scoping] DfE Template Demonstrator - Part 2", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-1923", "label": "[Design] DfE Template Demonstrator", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-1924", "label": "[Software Development] DfE Template Demonstrator", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-1925", "label": "[Deploy UAT] DfE Template Demonstrator", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-1926", "label": "[Testing] DfE Template Demonstrator", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-1928", "label": "[Content] DfE Template Demonstrator", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-1929", "label": "[Deploy to PRD] DfE Template Demonstrator", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2299", "label": "[Research and Scoping] DfE Template Demonstrator - Part 1", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-814", "label": "Engage with BIM4 water", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-847", "label": "Property Accumulation Exercise - B4W Sprint 10", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-931", "label": "Detailed review and discussion around B4W exercise", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-934", "label": "Meeting with CoBuilder", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-1012", "label": "Look at what was completed for TEM-957 ", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-1047", "label": "Share Uniclass 2 information with B4W", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-1052", "label": "Property contribution", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-1067", "label": "Resolve Enumerator Problem along with actors and life cycle stages", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-1411", "label": "Enumerator correction", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-2098", "label": "[Research and Scoping] Product image storing in template", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2099", "label": "[Design] Product image storing in template", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2100", "label": "[Software Development] Product image storing in template", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2101", "label": "[Deploy UAT] Product image storing in template", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2102", "label": "[Testing] Product image storing in template", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2104", "label": "[Content] Product image storing in template", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2105", "label": "[Deploy to PRD] Product image storing in template", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-1020", "label": "Establish a landing page for Hub users to understand the tool that will be built", "group": 1, "status":"Aborted","type": "Task"},
{"id": "TEM-1020", "label": "Establish a landing page for Hub users to understand the tool that will be built", "group": 1, "status":"Aborted","type": "Task"},
{"id": "TEM-1021", "label": "Establish a page where API Documentation can be place for software developers to build features to communicate with the data dictionary/template repository", "group": 1, "status":"Aborted","type": "Task"},
{"id": "TEM-1021", "label": "Establish a page where API Documentation can be place for software developers to build features to communicate with the data dictionary/template repository", "group": 1, "status":"Aborted","type": "Task"},
{"id": "TEM-2058", "label": "[Research and Scoping] Search functionality ", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2059", "label": "[Design] Search functionality ", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2060", "label": "[Software Development] Search functionality ", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2061", "label": "[Deploy UAT] Search functionality ", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2062", "label": "[Testing] Search functionality ", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2064", "label": "[Content] Search functionality ", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2065", "label": "[Deploy to PRD] Search functionality ", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-20", "label": "API - Get User Details ", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-32", "label": "API - Edit contribution Request", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-39", "label": "API - Create contribution Request for a given Request Type", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-1305", "label": "Revise Organisation Database Table and API", "group": 1, "status":"Aborted","type": "Task"},
{"id": "TEM-30", "label": "API - Change contribution Request Status", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-31", "label": "API - Get All contribution Requests", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-37", "label": "API - Manage Property", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-40", "label": "API - Manage Classification", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-42", "label": "API - Assign Properties to Category", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-45", "label": "[Research and Scoping] Triple Store testing - Definition Model", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-201", "label": "Request for Definition Status Modification", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-371", "label": "Re-engineering external ontology, ISO 12006-3 to BS EN ISO 12006-3 which can be reasoned with content structure", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-761", "label": "[Software development] Build on Partonomy API Extension", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-1988", "label": "[Research and Scoping] Reactivate feature for archived entities", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-1989", "label": "[Design] Reactivate feature for archived entities", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-1990", "label": "[Software Development] Reactivate feature for archived entities", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-1991", "label": "[Deploy UAT] Reactivate feature for archived entities", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-1992", "label": "[Testing] Reactivate feature for archived entities", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-1994", "label": "[Content] Reactivate feature for archived entities", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-1995", "label": "[Deploy to PRD] Reactivate feature for archived entities", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-1998", "label": "[Research and Scoping] Implement Hiding feature in Method Of Measurement, Stage and Taxonomy", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-1999", "label": "[Design] Implement Hiding feature in Method Of Measurement, Stage and Taxonomy", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2000", "label": "[Software Development] Implement Hiding feature in Method Of Measurement, Stage and Taxonomy", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2001", "label": "[Deploy UAT] Implement Hiding feature in Method Of Measurement, Stage and Taxonomy", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2002", "label": "[Testing] Implement Hiding feature in Method Of Measurement, Stage and Taxonomy", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2004", "label": "[Content] Implement Hiding feature in Method Of Measurement, Stage and Taxonomy", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2005", "label": "[Deploy to PRD] Implement Hiding feature in Method Of Measurement, Stage and Taxonomy", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-24", "label": "API - Assign Role To User", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-28", "label": "API - Assign Category to Team", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-1223", "label": "Review Bsdd Data Model against Our current data model", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-1224", "label": "Investigate - Add ability to capture illustration to data model", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-2048", "label": "[Research and Scoping] Ability to review and publish the data model, search and access the published data model.", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2049", "label": "[Design] Ability to review and publish the data model, search and access the published data model.", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2050", "label": "[Software Development] Ability to review and publish the data model, search and access the published data model.", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2051", "label": "[Deploy UAT] Ability to review and publish the data model, search and access the published data model.", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2052", "label": "[Testing] Ability to review and publish the data model, search and access the published data model.", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2054", "label": "[Content] Ability to review and publish the data model, search and access the published data model.", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2055", "label": "[Deploy to PRD] Ability to review and publish the data model, search and access the published data model.", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2108", "label": "[Research and Scoping] Include Governance Ontology ", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2109", "label": "[Design] Include Governance Ontology ", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2110", "label": "[Software Development] Include Governance Ontology ", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2111", "label": "[Deploy UAT] Include Governance Ontology ", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2112", "label": "[Testing] Include Governance Ontology ", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2114", "label": "[Content] Include Governance Ontology ", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2115", "label": "[Deploy to PRD] Include Governance Ontology ", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-38", "label": "API - Manage Property Set", "group": 1, "status":"Aborted","type": "Task"},
{"id": "TEM-43", "label": "API - API Gateway", "group": 1, "status":"Aborted","type": "Task"},
{"id": "TEM-1567", "label": "[Research and Scoping] Begin to configure the setup using what has been deployed the purple system as a user on the yellow system.", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-1659", "label": "[Design] Tube Map to represent the 'missing bridge' between Type 2 to type 1 contribution", "group": 1, "status":"In Progress","type": "Task"},
{"id": "TEM-2018", "label": "[Research and Scoping] collective reporting dashboard ", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2019", "label": "[Design] collective reporting dashboard ", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2020", "label": "[Software Development] collective reporting dashboard ", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2021", "label": "[Deploy UAT] collective reporting dashboard ", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2022", "label": "[Testing] collective reporting dashboard ", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2024", "label": "[Content] collective reporting dashboard ", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2025", "label": "[Deploy to PRD] collective reporting dashboard ", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2231", "label": "[Research and Scoping] Configurable pre-filter of Type1 responses ", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2232", "label": "[Design] Configurable pre-filter of Type1 responses ", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2233", "label": "[Software Development] Configurable pre-filter of Type1 responses ", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2234", "label": "[Deploy UAT] Configurable pre-filter of Type1 responses ", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2235", "label": "[Testing] Configurable pre-filter of Type1 responses ", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2237", "label": "[Content] Configurable pre-filter of Type1 responses ", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2238", "label": "[Deploy to PRD] Configurable pre-filter of Type1 responses ", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2323", "label": "Workflow for UI/UX design", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-19", "label": "API - Create User", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-195", "label": "UIUX - Request for further authorisation", "group": 1, "status":"Suspended","type": "Task"},
{"id": "TEM-200", "label": "[Design] - Request for GDPR Action", "group": 1, "status":"Suspended","type": "Task"},
{"id": "TEM-1216", "label": "[Software Development] Implement Notification System ", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-1225", "label": "Detail/Update user capability in the API", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-1229", "label": "Data Template Compilation feature", "group": 1, "status":"Aborted","type": "Task"},
{"id": "TEM-1420", "label": "Establish what the Sign up process is going to be", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-41", "label": "[Software Development] Serialized Format for Template download features", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-889", "label": "A Working GUI when going to CPA and market", "group": 1, "status":"Aborted","type": "Task"},
{"id": "TEM-1802", "label": "[Research and Scoping] A Contribution Excel Interface", "group": 1, "status":"In Progress","type": "Task"},
{"id": "TEM-1803", "label": "[Design] A Contribution Excel Interface", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-1804", "label": "[Software Development] A Contribution Excel Interface", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-1805", "label": "[Deploy UAT] A Contribution Excel Interface", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-1806", "label": "[Testing] A Contribution Excel Interface", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-1816", "label": "[Research and Scoping] A Template Download Interface", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-1817", "label": "[Design] A Template Download Interface", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-1818", "label": "[Software Development] A Template Download Interface", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-1819", "label": "[Deploy UAT] A Template Download Interface", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-1820", "label": "[Testing] A Template Download Interface", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-1846", "label": "[Research and Scoping] A Working GUI of a Type 2 system", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-1847", "label": "[Design] A Working GUI of a Type 2 system", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-1848", "label": "[Software Development] A Working GUI of a Type 2 system", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-1849", "label": "[Deploy UAT] A Working GUI of a Type 2 system", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-1850", "label": "[Testing] A Working GUI of a Type 2 system", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-641", "label": "Initiate work on authorisation/permission concept - Part 2 (Cs) ", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-782", "label": "Initiate work on authorisation/permission concept - Part 3 (Cs Registration)", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-1032", "label": "Create new items in this epic as clones from WP1 epic", "group": 1, "status":"Aborted","type": "Task"},
{"id": "TEM-1206", "label": "[Design] Establish UI Prototype for Consensus In Excel", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-1756", "label": "A user interface in Excel", "group": 1, "status":"Aborted","type": "Task"},
{"id": "TEM-1783", "label": "[Research and Scoping] Test 3", "group": 1, "status":"Aborted","type": "Task"},
{"id": "TEM-1784", "label": "[Design] Test 3", "group": 1, "status":"Aborted","type": "Task"},
{"id": "TEM-1785", "label": "[Software Development] Test 3", "group": 1, "status":"Aborted","type": "Task"},
{"id": "TEM-1786", "label": "[Deploy UAT] Test 3", "group": 1, "status":"Aborted","type": "Task"},
{"id": "TEM-1787", "label": "[Testing] Test 3", "group": 1, "status":"Aborted","type": "Task"},
{"id": "TEM-1789", "label": "[Deploy to PRD] Test 3", "group": 1, "status":"Aborted","type": "Task"},
{"id": "TEM-1957", "label": "[Research and Scoping] Governance of Organisations Membership Details", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-1958", "label": "[Design] Governance of Organisations Membership Details", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-1959", "label": "[Software Development] Governance of Organisations Membership Details", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-1960", "label": "[Deploy UAT] Governance of Organisations Membership Details", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-1961", "label": "[Testing] Governance of Organisations Membership Details", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-1963", "label": "[Content] Governance of Organisations Membership Details", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-1964", "label": "[Deploy to PRD] Governance of Organisations Membership Details", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2199", "label": "[Research and Scoping] Registration invitation feature", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2200", "label": "[Design] Registration invitation feature", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2201", "label": "[Software Development] Registration invitation feature", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2202", "label": "[Deploy UAT] Registration invitation feature", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2203", "label": "[Testing] Registration invitation feature", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2205", "label": "[Content] Registration invitation feature", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2206", "label": "[Deploy to PRD] Registration invitation feature", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-1244", "label": "[Software Development] Build on Group Of Properties Database and API", "group": 1, "status":"In Progress","type": "Task"},
{"id": "TEM-1828", "label": "[Research and Scoping] Managing a Contribution in Excel", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-1829", "label": "[Design] Managing a Contribution in Excel", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-1830", "label": "[Software Development] Managing a Contribution in Excel", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-1831", "label": "[Deploy UAT] Managing a Contribution in Excel", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-1832", "label": "[Testing] Managing a Contribution in Excel", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2008", "label": "[Research and Scoping] UI - Sort Order on Specific Properties", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2009", "label": "[Design] UI - Sort Order on Specific Properties", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2010", "label": "[Software Development] UI - Sort Order on Specific Properties", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2011", "label": "[Deploy UAT] UI - Sort Order on Specific Properties", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2012", "label": "[Testing] UI - Sort Order on Specific Properties", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2014", "label": "[Content] UI - Sort Order on Specific Properties", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2015", "label": "[Deploy to PRD] UI - Sort Order on Specific Properties", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2028", "label": "[Research and Scoping] Add criticality to the submission of a property contribution", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2029", "label": "[Design] Add criticality to the submission of a property contribution", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2030", "label": "[Software Development] Add criticality to the submission of a property contribution", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2031", "label": "[Deploy UAT] Add criticality to the submission of a property contribution", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2032", "label": "[Testing] Add criticality to the submission of a property contribution", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2034", "label": "[Content] Add criticality to the submission of a property contribution", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2035", "label": "[Deploy to PRD] Add criticality to the submission of a property contribution", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2038", "label": "[Research and Scoping] Add Defintion Sensitivity as an additional parameter to Contribution inputs", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2039", "label": "[Design] Add Defintion Sensitivity as an additional parameter to Contribution inputs", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2040", "label": "[Software Development] Add Defintion Sensitivity as an additional parameter to Contribution inputs", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2041", "label": "[Deploy UAT] Add Defintion Sensitivity as an additional parameter to Contribution inputs", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2042", "label": "[Testing] Add Defintion Sensitivity as an additional parameter to Contribution inputs", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2044", "label": "[Content] Add Defintion Sensitivity as an additional parameter to Contribution inputs", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2045", "label": "[Deploy to PRD] Add Defintion Sensitivity as an additional parameter to Contribution inputs", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2179", "label": "[Research and Scoping] Client Side Workflow Feature", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2180", "label": "[Design] Client Side Workflow Feature", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2181", "label": "[Software Development] Client Side Workflow Feature", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2182", "label": "[Deploy UAT] Client Side Workflow Feature", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2183", "label": "[Testing] Client Side Workflow Feature", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2185", "label": "[Content] Client Side Workflow Feature", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2186", "label": "[Deploy to PRD] Client Side Workflow Feature", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2390", "label": "[Software Development] Investigating building on Group of properties feature", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-2813", "label": "[Software Development] Investigating building on Group of properties feature - Part 2", "group": 1, "status":"In Progress","type": "Task"},
{"id": "TEM-1017", "label": "Establish Acceptability of Creative Commons being the main licensing for definition", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-1017", "label": "Establish Acceptability of Creative Commons being the main licensing for definition", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-1018", "label": "Establish what the Sign up process is going to be", "group": 1, "status":"Aborted","type": "Task"},
{"id": "TEM-1018", "label": "Establish what the Sign up process is going to be", "group": 1, "status":"Aborted","type": "Task"},
{"id": "TEM-1837", "label": "[Research and Scoping] Managing Consensus in MS Teams", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-1838", "label": "[Design] Managing Consensus in MS Teams", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-1839", "label": "[Software Development] Managing Consensus in MS Teams", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-1840", "label": "[Deploy UAT] Managing Consensus in MS Teams", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-1841", "label": "[Testing] Managing Consensus in MS Teams", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2740", "label": "[Design] Establish concepts (detail) in process component", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-1886", "label": "[Research and Scoping] Integrate Type 1 into National Digital Twin", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-1887", "label": "[Design] Integrate Type 1 into National Digital Twin", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-1888", "label": "[Software Development] Integrate Type 1 into National Digital Twin", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-1889", "label": "[Deploy UAT] Integrate Type 1 into National Digital Twin", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-1890", "label": "[Testing] Integrate Type 1 into National Digital Twin", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-1892", "label": "[Content] Integrate Type 1 into National Digital Twin - Part 1", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-1893", "label": "[Deploy to PRD] Integrate Type 1 into National Digital Twin", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-1900", "label": "[Research and Scoping] Scope for the Data we share", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-1901", "label": "[Design] Scope for the Data we share", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-1906", "label": "[Content] Scope for the Data we share", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2068", "label": "[Research and Scoping] Technical Specification for Data Dictionary", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2069", "label": "[Design] Technical Specification for Data Dictionary", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2070", "label": "[Software Development] Technical Specification for Data Dictionary", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2071", "label": "[Deploy UAT] Technical Specification for Data Dictionary", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2072", "label": "[Testing] Technical Specification for Data Dictionary", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2074", "label": "[Content] Technical Specification for Data Dictionary", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2075", "label": "[Deploy to PRD] Technical Specification for Data Dictionary", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2078", "label": "[Research and Scoping] Technical Specification for Data Template Solution", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2079", "label": "[Design] Technical Specification for Data Template Solution", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2080", "label": "[Software Development] Technical Specification for Data Template Solution", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2081", "label": "[Deploy UAT] Technical Specification for Data Template Solution", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2082", "label": "[Testing] Technical Specification for Data Template Solution", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2084", "label": "[Content] Technical Specification for Data Template Solution", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2085", "label": "[Deploy to PRD] Technical Specification for Data Template Solution", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2088", "label": "[Research and Scoping] Evaluation Report for Researching Alternative Technologies (Triple Store vs SQL)", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2089", "label": "[Design] Evaluation Report for Researching Alternative Technologies (Triple Store vs SQL)", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2090", "label": "[Software Development] Evaluation Report for Researching Alternative Technologies (Triple Store vs SQL)", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2091", "label": "[Deploy UAT] Evaluation Report for Researching Alternative Technologies (Triple Store vs SQL)", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2092", "label": "[Testing] Evaluation Report for Researching Alternative Technologies (Triple Store vs SQL)", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2094", "label": "[Content] Evaluation Report for Researching Alternative Technologies (Triple Store vs SQL)", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2095", "label": "[Deploy to PRD] Evaluation Report for Researching Alternative Technologies (Triple Store vs SQL)", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2285", "label": "[Content] Integrate Type 1 into National Digital Twin - Part 2", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-2317", "label": "[Content] Integrate Type 1 into National Digital Twin - Part 3", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-2463", "label": "[Stakeholder Engagement] National Digital Twin - 4D Working Group Discussion", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-2748", "label": "[Stakeholder Engagement] 4D SIG Workshop", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-282", "label": "Review PAS 14191", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-291", "label": "Prepare for external stakeholder engagement activities", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-293", "label": "Develop Options and Strategy for Delivery to the facilitator group (i.e CPA and CIH members) and Wider workgroup (Work group members/ CIH Partners / Others)", "group": 1, "status":"Aborted","type": "Task"},
{"id": "TEM-295", "label": "Identify value/priorisation approach - Collate The 'New Feature Items' related to PAS14191/ISO23886 in JIRA and get them ready for prioritisation exercises", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-338", "label": "Separate out new feature stories in the LEXiCON Working Group Epic that are assigned to multiple 'As a'.", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-339", "label": "Assign JIRA 'source' field to LEXiCON Working Group Epic items.", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-340", "label": "Modify language used within story card fields to suit terminology for the working group.", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-912", "label": "23386 second reading cross check against existing capability", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-1019", "label": "Working Group to define what a Relevant Authority is", "group": 1, "status":"Aborted","type": "Task"},
{"id": "TEM-1019", "label": "Working Group to define what a Relevant Authority is", "group": 1, "status":"Aborted","type": "Task"},
{"id": "TEM-1025", "label": "CLONE - 23386 second reading cross check against existing capability", "group": 1, "status":"Aborted","type": "Task"},
{"id": "TEM-1025", "label": "CLONE - 23386 second reading cross check against existing capability", "group": 1, "status":"Aborted","type": "Task"},
{"id": "TEM-1030", "label": "CLONE - Identify value/priorisation approach - Collate The 'New Feature Items' related to PAS14191/ISO23886 in JIRA and get them ready for prioritisation exercises", "group": 1, "status":"Aborted","type": "Task"},
{"id": "TEM-1031", "label": "Review status of these features and assess whether they have already been 'DONE' or not", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-1911", "label": "[Research and Scoping] LEXiCON Report", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-1912", "label": "[Design] LEXiCON Report", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-1913", "label": "[Software Development] LEXiCON Report", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-1914", "label": "[Deploy UAT] LEXiCON Report", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-1915", "label": "[Testing] LEXiCON Report", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-1917", "label": "[Content] LEXiCON Report", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-1918", "label": "[Deploy to PRD] LEXiCON Report", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2244", "label": "[Stakeholder Meeting] Lexicon Working Group - Sprint 18", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-2419", "label": "[Workshop] LEXiCON Process and Interface Requirements", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2420", "label": "[Feedback] LEXiCON Process and Interface Requirements", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2422", "label": "[Sign-off of requirement] LEXiCON Process and Interface Requirements", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2465", "label": "[Stakeholder Engagement] LEXiCON Workshop - Day 1", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-2470", "label": "[Deploy to UAT] Deploy new Templater-1 env, i.e. templater-empty", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-2482", "label": "[Research and Scoping] Interconnectivity between data dictionary ", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-2522", "label": "[Stakeholder Engagement] LEXiCON Workshop - Day 2", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-2529", "label": "[Stakeholder Engagement] Lexicon Workshop Finalising and Briefing", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-2598", "label": "Remove the AdobeXd Blocker", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-2821", "label": "Organise and complete LEXiCON Stories", "group": 1, "status":"In Progress","type": "Task"},
{"id": "TEM-2832", "label": "Review each WP1 story provided (managed in the LEXiCON sprint) and propose options that will be presentable in workshop 2 - Part1", "group": 1, "status":"In Progress","type": "Task"},
{"id": "TEM-2847", "label": "[Stakeholder Engagement] Lexicon Meeting 12 ", "group": 1, "status":"Suspended","type": "Task"},
{"id": "TEM-13", "label": "Setup Visual Studio Project Api with .netCORE", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-16", "label": "Persona Templates", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-29", "label": "API - Promote authorisation Requests", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-44", "label": "Create Personas", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-47", "label": "Review the SharePoint Document for Membership Database", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-48", "label": "Add Timescale Estimates to Items in TEM Sprint 1", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-50", "label": "Design a database model for MembershipService", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-51", "label": "Implement Token-Based Authentication", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-52", "label": "Implement Claim-Based Authorisation", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-166", "label": "[Software Development] API - Assign Contribution to team", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-167", "label": "Hosting Strategy - Initial concept", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-168", "label": "Security Considerations", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-172", "label": "Team understanding of ISO 12006-3, 23386 & 23387 ", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-175", "label": "Migration from .net core 2.2 to 3.1", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-176", "label": "Increment on creating user", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-226", "label": "Re-configure route for User expiry link / end point", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-227", "label": "Move authorisation policy into configuration file", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-228", "label": "Re-familiarise with BRE API Specification", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-229", "label": "Re-familiarise with BRE API Specification", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-241", "label": "Initialise Postman for User Story TEM 194 in preparation for Sprint 4 Planning", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-244", "label": "PO to define new User Story around Definition Content DB and API", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-252", "label": "Implement API versioning ", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-253", "label": "Implement pagination", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-272", "label": "Hosting Strategy - Decision preparation", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-274", "label": "Discover how validation errors and server errors are handled by the endpoints.", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-275", "label": "Discover how purple systems will authenticate with the yellow system", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-281", "label": "Break down TEM 247 in preparation for Sprint Planning Meeting", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-296", "label": "Security - Protection matters", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-298", "label": "Explore wireframe for currently implemented features", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-354", "label": "OWASP Top 10 Web Application Security Risks", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-485", "label": "Investigate Triplestore deployment for research purposes", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-512", "label": "[Research & Scoping] Review SHACL", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-537", "label": "Review API Gateway recommendations", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-538", "label": "[Software Development] OWASP follow up activities", "group": 1, "status":"In Progress","type": "Task"},
{"id": "TEM-539", "label": "Review XSLT recommendations", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-540", "label": "Initiate work on authorisation/permission concept", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-541", "label": "Explore UI intent and feasibility", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-592", "label": "Prepare code for future (micro)service separation", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-593", "label": "Investigate using Postman API Monitors for monitoring the *live* API Gateways", "group": 1, "status":"Aborted","type": "Task"},
{"id": "TEM-602", "label": "[Research & Scoping] Deploy Triple store solution", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-606", "label": "Revisit software architecture re new domain knowledge", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-644", "label": "SW Bug bucket Sprint 9", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-645", "label": "Deployment bucket Sprint 9", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-714", "label": "Implement software versioning & display within renamed endpoint", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-712", "label": "Investigate Templater 1 configurable workflows - potential for reuse as a separate service within CIH Templater?", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-715", "label": "Architecture Proposals Review", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-718", "label": "Appraisal of Lead-in times", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-719", "label": "Technical delivery of UI Strategy", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-762", "label": "[Testing] Review consumable template structure to ensure no personal data is present (GDPR)", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-763", "label": "Discuss code refactoring with Andrew", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-780", "label": "Define LOCAL/DEV/UAT/PRD environments/profiles, restructure appsettings.json accordingly, tweak SVN ignore ", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-781", "label": "Refresh source code inside SVN (technetium) after it's been refactored, rebuild local working copy", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-794", "label": "Stakeholder engagement - Meeting for Domain, Hosting, Storage, Security, etc.", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-787", "label": "[Software Development] OWASP and security follow up activities Hub Level", "group": 1, "status":"In Progress","type": "Task"},
{"id": "TEM-859", "label": "Peer review the refactored Code", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-865", "label": "SW Bug bucket Sprint 10", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-866", "label": "Deployment bucket Sprint 10", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-911", "label": "[Research and Scoping] Corrective Items as a result of new PAS 14191 information around interpretation of Roles", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-924", "label": "Rename BRE's deployment env (i.e. rmv 'membership') & create companion env (i.e. Type 2)", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-925", "label": "SW Bug bucket Sprint 11", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-938", "label": "Establish shared environment on DevOP ", "group": 1, "status":"Aborted","type": "Task"},
{"id": "TEM-1003", "label": "Implement Multiple Roles", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-1004", "label": "Decide workflow changes depending on authorisation", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-1005", "label": "[Software Development] Configure alternate endpoints for different roles.", "group": 1, "status":"In Progress","type": "Task"},
{"id": "TEM-1006", "label": "Review implementation of OWASP recommendations", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-1007", "label": "BRE to take over application-build responsibilites from ActivePlan", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-1008", "label": "Discuss implementation of API Gateway", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-1040", "label": "Current State Deliverable Discussion - BIM Team", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-1041", "label": "Current State Deliverable Discussion - Whole Team", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-1042", "label": "Discussion on future steps", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-1043", "label": "Discussion on NDA and Licensing ", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-1024", "label": "Cost Scenario Complete Spreadsheet and send", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-1024", "label": "Cost Scenario Complete Spreadsheet and send", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-1071", "label": "SW Bug bucket Sprint 12", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-1218", "label": "Postman Collection for XSLT Exporter", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-1239", "label": "Investigate creation of API Documentation", "group": 1, "status":"Suspended","type": "Task"},
{"id": "TEM-1227", "label": "Investigate Office Add-In development - Part 3", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-1237", "label": "[Research and Scoping] Migration strategy for alpha content to beta.", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-1264", "label": "Refactor Membership Service to act as a proof of concept", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-1280", "label": "Meeting with John to review modular refactoring", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-1281", "label": " SW Bug bucket Sprint 13", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-1304", "label": "Disable old cih-templater-membership.bregroup.com environment", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-1363", "label": "'Mickey Mouse' ASP.NET Core MVC UI", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-1352", "label": "[Research and Scoping] PostMan OpenAPI Documentation Investigate and propose workflow", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-1381", "label": "[Software Development] Technical Handover from Active Plan (Part 1)", "group": 1, "status":"In Progress","type": "Task"},
{"id": "TEM-1385", "label": "Implement registration via Web UI", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-1388", "label": "[Design] Review Script Lab", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-1393", "label": "Review latest code refactoring & investigate Autofac IoC", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-1427", "label": "[Software Development] Ensure SVN repository up-to-date re ActivePlan's code (and redundant branches deleted)", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-1437", "label": "[Software Development] Discuss UI authentication & authorisation with Andrew", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-1436", "label": "Deploy 'Mickey Mouse' UI and convert back-end to IIS sub-application (Type1 & Type2 sites)", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-1438", "label": "Confirm services only access db tables in their own db schema (no cross-schema FK constraints or joins allowed)", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-1454", "label": "Further code refactoring (Membership service and API Gateway)", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-1448", "label": "Add comments to code.", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-1457", "label": "Tidy up SVN repository", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-1492", "label": "Add reference to CIH.Templater.Core DLL within UI project", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-1467", "label": "[Software Development] Handover Scenarios for GUID DLL updates to be able to take on minor amendment and applying to entities post Nov", "group": 1, "status":"Aborted","type": "Task"},
{"id": "TEM-1468", "label": "[Software Development] Temporary GUID column against entities", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-1490", "label": "SW Bug bucket Sprint 15", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-1491", "label": "Check with Alastair (Deepthi? IT?) re production servers for alpha release", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-1510", "label": "Ensure alpha release's source code (backend & UI projects) is 'tagged' in SVN repository", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-1505", "label": "Tweak back-end routing, i.e. remove '/api' from path (?)", "group": 1, "status":"Aborted","type": "Task"},
{"id": "TEM-1519", "label": "Deploy alpha release to BRE production servers", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-1529", "label": "Scripts for initialising/seeding a new database deployment (users/content/contributions?) ", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-1536", "label": "Technical Handover from Active Plan (Part 2)", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-1556", "label": "Timeboxed meeting for ScriptLab", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-1566", "label": "SW Bug bucket Sprint 16", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-1586", "label": "[Software Development] Create Action Logger", "group": 1, "status":"In Progress","type": "Task"},
{"id": "TEM-1587", "label": "[Software Development] Create Access Limiter Framework", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-1612", "label": "[Software Development] Add guid project to subversion", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-1631", "label": "[Software Development] Refactor UI registration", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-1640", "label": "[Software Development] Continuation of data-dictionary backend code refactoring", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-1651", "label": "[Design] Establish Simulation of sequencing for workflows", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-1721", "label": "[Software Development] Add metadata to database?", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-1740", "label": "[Design] Add additional section in common response layout", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-1742", "label": "Redeploy DEV sites (from bregroup.com to transformingconstruction.co.uk)", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-1968", "label": "[Research and Scoping] Score card", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-1969", "label": "[Design] Score card", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-1970", "label": "[Software Development] Score card", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-1971", "label": "[Deploy UAT] Score card", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-1972", "label": "[Testing] Score card", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-1974", "label": "[Content] Score card", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-1975", "label": "[Deploy to PRD] Score card", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2158", "label": "[Research and Scoping] OpenAPI Documentation", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2159", "label": "[Design] OpenAPI Documentation", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2160", "label": "[Software Development] OpenAPI Documentation", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2161", "label": "[Deploy UAT] OpenAPI Documentation", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2162", "label": "[Testing] OpenAPI Documentation", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2164", "label": "[Content] OpenAPI Documentation", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2165", "label": "[Deploy to PRD] OpenAPI Documentation", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2290", "label": "[Research and Scoping] data-dictionary backend code refactoring - Part 1", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-2312", "label": "[Testing] Tweak and re-test clients re .AspNetCore.Identity.Application cookie removal", "group": 1, "status":"In Progress","type": "Task"},
{"id": "TEM-2332", "label": "[Software Development] Continuation of data-dictionary backend code refactoring (Dave)", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-2333", "label": "[Software Development] Continuation of data-dictionary backend code refactoring - Part 3", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2334", "label": "Refactoring code on Andrew's recommendation - Part 1", "group": 1, "status":"In Progress","type": "Task"},
{"id": "TEM-2367", "label": "[Software Development] Implement TEST API Gateway Endpoints - Continuation", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-2371", "label": "[Testing] Revisit postman collection to identify bug (logical) on data ", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-2391", "label": "[Software Development] Continuation of data-dictionary backend code refactoring - Part 4", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2448", "label": "[Deploy to UAT] Deployment of TEST API endpoints and UAT Testing", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-2552", "label": "[Deploy to PRD] Deployment of TEST API endpoints and PRD Testing - Part 1", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-2553", "label": "[Configuration Management] - Ensure that Templater-2 Repository is more Logically structured to better support current and future development activities", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-2576", "label": "[Design] Filtered Template Endpoints Design - Part 1 ", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-2577", "label": "[Research and Scoping] Preparation on Process component ", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-2594", "label": "[Deploy to PRD] Deployment of TEST API endpoints and PRD Testing - Part 2", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2786", "label": "[Design] Filtered Template Endpoints Design - Part 2", "group": 1, "status":"In Progress","type": "Task"},
{"id": "TEM-1933", "label": "[Research and Scoping] Ontology Overview Report", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-1934", "label": "[Design] Ontology Overview Report", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-1935", "label": "[Report Development] Ontology Overview Report", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-1936", "label": "[Deploy UAT] Ontology Overview Report", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-1937", "label": "[Review] Ontology Overview Report", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-1938", "label": "[Revise] Ontology Overview Report", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-1939", "label": "[Content] Ontology Overview Report", "group": 1, "status":"In Progress","type": "Task"},
{"id": "TEM-1940", "label": "[Deploy to PRD] Ontology Overview Report", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2533", "label": "[Content] GUID Report Refinement - Part 1", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-170", "label": "Privacy Policies for each product solution", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-595", "label": "Ensure Legal team are aware of our flexible deployment strategy", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-689", "label": "[Design] Add markup to swimlane diagrams for where legal interventions might occur within user journeys.", "group": 1, "status":"In Progress","type": "Task"},
{"id": "TEM-767", "label": "Complete Section 1 and 2 of DPIA for Ss-Type1 and Cs-Type2", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-874", "label": "Discussion on Data Protection Impact Assessment ", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-1010", "label": "Contribution submission must include questions that impact EULA oterms of use of the contribution they are submitting.", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-1023", "label": "Ensure that the System communicates the licensing and notices regardless of interface API, WebUI or GUI", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-1023", "label": "Ensure that the System communicates the licensing and notices regardless of interface API, WebUI or GUI", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-1232", "label": "[Content] Terms and Conditions for Alpha Stage", "group": 1, "status":"In Progress","type": "Task"},
{"id": "TEM-1458", "label": "[Research and Scoping] Discussion on Section 3 in DPIA", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-1605", "label": "Add validation to user registration endpoint to ensure T&Cs have been accepted", "group": 1, "status":"Aborted","type": "Task"},
{"id": "TEM-1736", "label": "[Content] Competition Law Notice", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2189", "label": "[Research and Scoping] The Production and Implementation of Legal Content", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2190", "label": "[Design] The Production and Implementation of Legal Content", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2191", "label": "[Software Development] The Production and Implementation of Legal Content", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2192", "label": "[Deploy UAT] The Production and Implementation of Legal Content", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2193", "label": "[Testing] The Production and Implementation of Legal Content", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2195", "label": "[Content] The Production and Implementation of Legal Content", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-2196", "label": "[Deploy to PRD] The Production and Implementation of Legal Content", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-493", "label": "Engage with PFV", "group": 1, "status":"Aborted","type": "Task"},
{"id": "TEM-730", "label": "Deliver BIM Workshop Presentation", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-807", "label": "Engage with CDDB", "group": 1, "status":"Aborted","type": "Task"},
{"id": "TEM-808", "label": "Engage with Technical Lead SMT", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-810", "label": "Engage with DFE", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-812", "label": "Engage with Smart Buildings Team - Sprint 10", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-813", "label": "Engage with 4DFDM (Data Seed)", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-815", "label": "Engage with Lexicon Working Group", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-816", "label": "Engage with CBA", "group": 1, "status":"Aborted","type": "Task"},
{"id": "TEM-795", "label": "Hub Templater 1 Preparation", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-914", "label": "COBieImporter, or transfer of demonstrator via SQL", "group": 1, "status":"Suspended","type": "Task"},
{"id": "TEM-918", "label": "Engagement with SBD Team in Sprint 11", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-1013", "label": "Attend Meeting", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-988", "label": "Platform Meeting Discussion", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-1069", "label": "Federate B16-01 Model for SBD Project", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-1607", "label": "Template 1 Master Classification category schema", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-1616", "label": "Meeting HADG", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-1617", "label": "HADG Attribute lists", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-1621", "label": "[Content] Make guidance/videos publicly available", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-1875", "label": "[Research and Scoping] A working demonstrator for D-COM", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-1876", "label": "[Design] A working demonstrator for D-COM", "group": 1, "status":"Done","type": "Task"},
{"id": "TEM-1877", "label": "[Software Development] A working demonstrator for D-COM", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-1878", "label": "[Deploy UAT] A working demonstrator for D-COM", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-1879", "label": "[Testing] A working demonstrator for D-COM", "group": 1, "status":"To Do","type": "Task"},
{"id": "TEM-1881", "label": "[Content] A working demonstrator for D-COM", "group": 1, "status":"To Do","type": "Task"},