pyegeria 5.3.10__py3-none-any.whl → 5.4.0.dev2__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (69) hide show
  1. commands/cat/debug_log.2025-06-05_20-24-18_123924.log.zip +0 -0
  2. commands/cat/debug_log.2025-06-10_08-45-03_929921.log.zip +0 -0
  3. commands/cat/debug_log.2025-06-11_09-57-21_247890.log.zip +0 -0
  4. commands/cat/debug_log.2025-06-12_16-14-31_212042.log.zip +0 -0
  5. commands/cat/dr_egeria_md.py +32 -5
  6. commands/cat/list_collections.py +10 -4
  7. commands/cat/list_data_designer.py +171 -0
  8. md_processing/__init__.py +7 -2
  9. md_processing/data/commands.json +4666 -848
  10. md_processing/md_commands/data_designer_commands.py +840 -557
  11. md_processing/md_commands/solution_architect_commands.py +985 -0
  12. md_processing/md_processing_utils/common_md_proc_utils.py +262 -89
  13. md_processing/md_processing_utils/common_md_utils.py +11 -4
  14. md_processing/md_processing_utils/md_processing_constants.py +18 -16
  15. pyegeria/_client.py +39 -0
  16. pyegeria/classification_manager_omvs.py +1 -1
  17. pyegeria/collection_manager_omvs.py +248 -188
  18. pyegeria/data_designer_omvs.py +217 -9
  19. pyegeria/governance_officer_omvs.py +2349 -0
  20. pyegeria/output_formatter.py +24 -12
  21. pyegeria/solution_architect_omvs.py +4219 -1084
  22. pyegeria/utils.py +15 -2
  23. {pyegeria-5.3.10.dist-info → pyegeria-5.4.0.dev2.dist-info}/METADATA +2 -1
  24. {pyegeria-5.3.10.dist-info → pyegeria-5.4.0.dev2.dist-info}/RECORD +27 -62
  25. {pyegeria-5.3.10.dist-info → pyegeria-5.4.0.dev2.dist-info}/entry_points.txt +3 -0
  26. commands/cat/.DS_Store +0 -0
  27. md_processing/dr_egeria_inbox/archive/dr_egeria_intro.md +0 -254
  28. md_processing/dr_egeria_inbox/archive/dr_egeria_intro_more_terms.md +0 -696
  29. md_processing/dr_egeria_inbox/archive/dr_egeria_intro_part1.md +0 -254
  30. md_processing/dr_egeria_inbox/archive/dr_egeria_intro_part2.md +0 -298
  31. md_processing/dr_egeria_inbox/archive/dr_egeria_intro_part3.md +0 -608
  32. md_processing/dr_egeria_inbox/archive/dr_egeria_intro_part4.md +0 -94
  33. md_processing/dr_egeria_inbox/archive/freddie_intro.md +0 -284
  34. md_processing/dr_egeria_inbox/archive/freddie_intro_orig.md +0 -275
  35. md_processing/dr_egeria_inbox/archive/test-term.md +0 -110
  36. md_processing/dr_egeria_inbox/cat_test.md +0 -100
  37. md_processing/dr_egeria_inbox/data_field.md +0 -54
  38. md_processing/dr_egeria_inbox/data_spec.md +0 -77
  39. md_processing/dr_egeria_inbox/data_spec_test.md +0 -2406
  40. md_processing/dr_egeria_inbox/data_test.md +0 -86
  41. md_processing/dr_egeria_inbox/dr_egeria_intro_categories.md +0 -168
  42. md_processing/dr_egeria_inbox/dr_egeria_intro_part1.md +0 -280
  43. md_processing/dr_egeria_inbox/dr_egeria_intro_part2.md +0 -313
  44. md_processing/dr_egeria_inbox/dr_egeria_intro_part3.md +0 -1073
  45. md_processing/dr_egeria_inbox/dr_egeria_isc1.md +0 -44
  46. md_processing/dr_egeria_inbox/glossary_test1.md +0 -324
  47. md_processing/dr_egeria_inbox/rel.md +0 -8
  48. md_processing/dr_egeria_inbox/sb.md +0 -119
  49. md_processing/dr_egeria_inbox/search_test.md +0 -39
  50. md_processing/dr_egeria_inbox/solution-components.md +0 -154
  51. md_processing/dr_egeria_inbox/solution_blueprints.md +0 -118
  52. md_processing/dr_egeria_inbox/synonym_test.md +0 -42
  53. md_processing/dr_egeria_inbox/t1.md +0 -0
  54. md_processing/dr_egeria_inbox/t2.md +0 -268
  55. md_processing/dr_egeria_outbox/processed-2025-05-15 19:52-data_test.md +0 -94
  56. md_processing/dr_egeria_outbox/processed-2025-05-16 07:39-data_test.md +0 -88
  57. md_processing/dr_egeria_outbox/processed-2025-05-17 16:01-data_field.md +0 -56
  58. md_processing/dr_egeria_outbox/processed-2025-05-18 15:51-data_test.md +0 -103
  59. md_processing/dr_egeria_outbox/processed-2025-05-18 16:47-data_test.md +0 -94
  60. md_processing/dr_egeria_outbox/processed-2025-05-19 07:14-data_test.md +0 -96
  61. md_processing/dr_egeria_outbox/processed-2025-05-19 07:20-data_test.md +0 -100
  62. md_processing/dr_egeria_outbox/processed-2025-05-19 07:22-data_test.md +0 -88
  63. md_processing/dr_egeria_outbox/processed-2025-05-19 09:26-data_test.md +0 -91
  64. md_processing/dr_egeria_outbox/processed-2025-05-19 10:27-data_test.md +0 -91
  65. md_processing/dr_egeria_outbox/processed-2025-05-19 14:04-data_test.md +0 -91
  66. md_processing/md_commands/blueprint_commands.py +0 -303
  67. pyegeria/.DS_Store +0 -0
  68. {pyegeria-5.3.10.dist-info → pyegeria-5.4.0.dev2.dist-info}/LICENSE +0 -0
  69. {pyegeria-5.3.10.dist-info → pyegeria-5.4.0.dev2.dist-info}/WHEEL +0 -0
@@ -1,2406 +0,0 @@
1
-
2
-
3
-
4
-
5
-
6
- "Data Structure Folder"
7
- ___
8
-
9
- # pFolder
10
-
11
- ## pFolder
12
-
13
- Data Structure Folder
14
-
15
-
16
-
17
-
18
-
19
-
20
- ___
21
-
22
- TBDF-Incoming Weekly Measurement Data
23
- ___
24
-
25
- # Create Data Structure
26
-
27
- ## Data Structure
28
-
29
- TBDF-Incoming Weekly Measurement Data
30
-
31
- ## Description
32
- This describes the weekly measurement data for each patient for the Teddy Bear drop foot clinical trial
33
-
34
- ## In Data Specification
35
- Data Specification for Teddy Bear Drop Foot Clinical Trial
36
-
37
-
38
- ## Qualified Name
39
-
40
-
41
- ___
42
-
43
- WWT-Incoming Weekly Measurement Data
44
- ___
45
-
46
- # Create Data Structure
47
-
48
- ## Data Structure
49
-
50
- WWT-Incoming Weekly Measurement Data
51
-
52
-
53
- ## Description
54
- A collection of data fields that form a data structure.
55
-
56
-
57
- ## In Data Specification
58
-
59
-
60
-
61
- ## Qualified Name
62
-
63
-
64
-
65
- # Create Data Structure
66
-
67
- ## Name
68
-
69
- WWT-Incoming Weekly Measurement Data
70
-
71
- ## Description
72
-
73
- This describes the weekly measurement data for each patient for the Werewolf Transformation clinical trial
74
-
75
- ## In Data Spec
76
-
77
- Data Specification for Werewolf Transformation Clinical Trial
78
-
79
-
80
- ___
81
-
82
-
83
-
84
-
85
- "Data Specifications Folder"
86
- ___
87
-
88
- # pFolder
89
-
90
- ## pFolder
91
-
92
- Data Specifications Folder
93
-
94
-
95
-
96
-
97
-
98
-
99
- ___
100
-
101
- Data Specification for the Teddy Bear Drop Foot Clinical Trial
102
- ___
103
-
104
- # Create Data Specification
105
-
106
- ## Data Specification
107
-
108
- Data Specification for the Teddy Bear Drop Foot Clinical Trial
109
-
110
- ## Description
111
- Principle data requirements for this clinical trial.
112
-
113
-
114
- ## Is Own Anchor
115
- true
116
-
117
-
118
- ## Parent Relationship Type
119
-
120
-
121
-
122
- ## Parent at End1
123
- false
124
-
125
-
126
- ## Qualified Name
127
-
128
-
129
-
130
-
131
-
132
-
133
-
134
- ## Anchor Scope Name
135
-
136
-
137
-
138
-
139
- ## GUID
140
-
141
-
142
-
143
- ## Anchor ID
144
-
145
-
146
-
147
- ## Parent ID
148
-
149
-
150
-
151
-
152
-
153
-
154
-
155
-
156
- ___
157
-
158
- Data Specification for the Werewolf Transformation Clinical Trial
159
- ___
160
-
161
- # Create Data Specification
162
-
163
- ## Data Specification
164
-
165
- Data Specification for the Werewolf Transformation Clinical Trial
166
-
167
- ## Description
168
- A collection of data fields that for a data specification for a data source.
169
-
170
-
171
- ## Is Own Anchor
172
- true
173
-
174
-
175
- ## Parent Relationship Type
176
-
177
-
178
-
179
- ## Parent at End1
180
- false
181
-
182
-
183
- ## Qualified Name
184
-
185
-
186
-
187
-
188
-
189
-
190
-
191
- ## Anchor Scope Name
192
-
193
-
194
-
195
-
196
- ## GUID
197
-
198
-
199
-
200
- ## Anchor ID
201
-
202
-
203
-
204
- ## Parent ID
205
-
206
-
207
-
208
- # Create Data Spec
209
-
210
- ## Data Spec
211
-
212
- Data Specification for the Werewolf Transformation Clinical Trial
213
-
214
- ## Description
215
-
216
- Data collection requirements for the Werewolf Transformation Clinical Trial
217
-
218
-
219
-
220
- ___
221
-
222
-
223
-
224
-
225
- "Data Dictionary Folder"
226
- ___
227
-
228
- # pFolder
229
-
230
- ## pFolder
231
-
232
- Data Dictionary Folder
233
-
234
-
235
-
236
-
237
-
238
-
239
- ___
240
-
241
- Clinical Trials Data Dictionary
242
- ___
243
-
244
- # Create Data Dictionary
245
-
246
- ## Data Dictionary
247
-
248
- Clinical Trials Data Dictionary
249
-
250
- ## Description
251
- A collection of data fields that for a data specification for a data source.
252
-
253
-
254
- ## Is Own Anchor
255
- false
256
-
257
-
258
- ## Parent Relationship Type
259
-
260
-
261
-
262
- ## Anchor Scope Name
263
-
264
-
265
-
266
- ## Parent at End1
267
- false
268
-
269
-
270
- ## Qualified Name
271
-
272
-
273
-
274
-
275
-
276
-
277
-
278
-
279
- ## GUID
280
-
281
-
282
-
283
- ## Anchor ID
284
-
285
-
286
-
287
- ## Parent ID
288
-
289
- ___
290
-
291
-
292
-
293
-
294
- "Data Class Folder"
295
- ___
296
-
297
- # pFolder
298
-
299
- ## pFolder
300
-
301
- Data Class Folder
302
-
303
-
304
-
305
-
306
-
307
-
308
- ___
309
-
310
- Angle-Class
311
- ___
312
-
313
- # Create Data Class
314
-
315
- ## Data Class
316
-
317
- Angle-Class
318
-
319
-
320
- ## Description
321
- Classification criteria for data fields
322
-
323
-
324
- ## Namespace
325
-
326
-
327
-
328
- ## Match Property Names
329
-
330
-
331
-
332
- ## Match Threshold
333
- 0
334
-
335
-
336
- ## IsCaseSensitive
337
- false
338
-
339
-
340
- ## Specification
341
-
342
-
343
-
344
- ## Specification Details
345
-
346
-
347
-
348
- ## Data Type
349
-
350
-
351
-
352
- ## Allow Duplicate Values
353
- false
354
-
355
-
356
- ## IsNullable
357
- false
358
-
359
-
360
- ## Default Value
361
-
362
-
363
-
364
- ## Average Value
365
- 0
366
-
367
-
368
- ## Value List
369
-
370
-
371
-
372
- ## Value Range From
373
- 0
374
-
375
-
376
- ## Value Range To:
377
-
378
-
379
-
380
-
381
- ## Sample Values
382
-
383
-
384
-
385
- ## Data Patterns
386
-
387
-
388
-
389
- ## Name Patterns
390
-
391
-
392
-
393
- ## In Data Dictionary
394
-
395
-
396
-
397
- ## Qualified Name
398
-
399
-
400
-
401
-
402
-
403
-
404
- ## GUID
405
-
406
-
407
-
408
-
409
-
410
- # Create Data Class
411
- ## Name
412
- Angle-Class
413
- ## Description
414
- An integer representing the measurement of an angle.
415
-
416
- ## namespace
417
-
418
- ## matchPropertyNames - Dr.E can set - name of the properties that are set
419
-
420
- ## matchThreshold - % of values that match the data class specification
421
-
422
-
423
- ## specification - rules language - skip?
424
-
425
- ## specification details - values for a rule - skip?
426
-
427
- ## data type
428
- Integer
429
-
430
- ## allowsDuplicateValues - boolean
431
- true
432
- ## isNullable
433
- false
434
- ## defaultValue
435
-
436
- ## average value
437
-
438
- ## valueList
439
-
440
- ## valueRangeFrom
441
- 0
442
- ## valueRangeTo
443
- 359
444
- ## sample values
445
-
446
- ## dataPatterns
447
-
448
- ## namePatterns
449
-
450
- ## In Data Dictionary
451
- Clinical Trials Data Dictionary
452
-
453
-
454
-
455
-
456
-
457
-
458
-
459
- ___
460
-
461
- Minutes - Class
462
- ___
463
-
464
- # Create Data Class
465
-
466
- ## Data Class
467
-
468
- Minutes - Class
469
-
470
-
471
- ## Description
472
- Classification criteria for data fields
473
-
474
-
475
- ## Namespace
476
-
477
-
478
-
479
- ## Match Property Names
480
-
481
-
482
-
483
- ## Match Threshold
484
- 0
485
-
486
-
487
- ## IsCaseSensitive
488
- false
489
-
490
-
491
- ## Specification
492
-
493
-
494
-
495
- ## Specification Details
496
-
497
-
498
-
499
- ## Data Type
500
-
501
-
502
-
503
- ## Allow Duplicate Values
504
- false
505
-
506
-
507
- ## IsNullable
508
- false
509
-
510
-
511
- ## Default Value
512
-
513
-
514
-
515
- ## Average Value
516
- 0
517
-
518
-
519
- ## Value List
520
-
521
-
522
-
523
- ## Value Range From
524
- 0
525
-
526
-
527
- ## Value Range To:
528
- versionId: Version Identifier
529
- 0
530
-
531
-
532
- ## Sample Values
533
-
534
-
535
-
536
- ## Data Patterns
537
-
538
-
539
-
540
- ## Name Patterns
541
-
542
-
543
-
544
- ## In Data Dictionary
545
-
546
-
547
-
548
- ## Qualified Name
549
-
550
-
551
-
552
-
553
-
554
-
555
- ## GUID
556
-
557
-
558
-
559
-
560
-
561
- # Create Data Class
562
- ## Name
563
- Minutes-Class
564
- ## Description
565
- A number representing time in minutes.
566
-
567
- ## namespace
568
-
569
- ## matchPropertyNames - Dr.E can set - name of the properties that are set
570
-
571
- ## matchThreshold - % of values that match the data class specification
572
-
573
-
574
- ## specification - rules language - skip?
575
-
576
- ## specification details - values for a rule - skip?
577
-
578
- ## data type
579
- Integer
580
- ## allowsDuplicateValues - boolean
581
- True
582
- ## isNullable
583
-
584
- ## defaultValue
585
-
586
- ## average value
587
-
588
- ## valueList
589
-
590
- ## valueRangeFrom
591
- 0
592
- ## valueRangeTo
593
-
594
- ## sample values
595
-
596
- ## dataPatterns
597
-
598
- ## namePatterns
599
-
600
- ## In Data Dictionary
601
- Clinical Trials Data Dictionary
602
-
603
-
604
-
605
-
606
-
607
-
608
-
609
- ___
610
-
611
- Percent - Class
612
- ___
613
-
614
- # Create Data Class
615
-
616
- ## Data Class
617
-
618
- Percent - Class
619
-
620
-
621
- ## Description
622
- Classification criteria for data fields
623
-
624
-
625
- ## Namespace
626
-
627
-
628
-
629
- ## Match Property Names
630
-
631
-
632
-
633
- ## Match Threshold
634
- 0
635
-
636
-
637
- ## IsCaseSensitive
638
- false
639
-
640
-
641
- ## Specification
642
-
643
-
644
-
645
- ## Specification Details
646
-
647
-
648
-
649
- ## Data Type
650
-
651
-
652
-
653
- ## Allow Duplicate Values
654
- false
655
-
656
-
657
- ## IsNullable
658
- false
659
-
660
-
661
- ## Default Value
662
-
663
-
664
-
665
- ## Average Value
666
- 0
667
-
668
-
669
- ## Value List
670
-
671
-
672
-
673
- ## Value Range From
674
- 0
675
-
676
-
677
- ## Value Range To:
678
- versionId: Version Identifier
679
- 0
680
-
681
-
682
- ## Sample Values
683
-
684
-
685
-
686
- ## Data Patterns
687
-
688
-
689
-
690
- ## Name Patterns
691
-
692
-
693
-
694
- ## In Data Dictionary
695
-
696
-
697
-
698
- ## Qualified Name
699
-
700
-
701
-
702
-
703
-
704
-
705
- ## GUID
706
-
707
-
708
-
709
-
710
-
711
- # Create Data Class
712
- ## Name
713
- Percent-Class
714
- ## Description
715
- An integer representing a percentage.
716
-
717
- ## namespace
718
-
719
- ## matchPropertyNames - Dr.E can set - name of the properties that are set
720
-
721
- ## matchThreshold - % of values that match the data class specification
722
-
723
-
724
- ## specification - rules language - skip?
725
-
726
- ## specification details - values for a rule - skip?
727
-
728
- ## data type
729
- Integer
730
- ## allowsDuplicateValues - boolean
731
- True
732
-
733
- ## isNullable
734
-
735
- ## defaultValue
736
-
737
- ## average value
738
-
739
- ## valueList
740
-
741
- ## valueRangeFrom
742
- 0
743
- ## valueRangeTo
744
- 100
745
- ## sample values
746
-
747
- ## dataPatterns
748
-
749
- ## namePatterns
750
-
751
- ## In Data Dictionary
752
- Clinical Trials Data Dictionary
753
-
754
-
755
-
756
-
757
-
758
-
759
- ___
760
-
761
- Date-Class
762
- ___
763
-
764
- # Create Data Class
765
-
766
- ## Data Class
767
-
768
- Date-Class
769
-
770
-
771
- ## Description
772
- Classification criteria for data fields
773
-
774
-
775
- ## Namespace
776
-
777
-
778
-
779
- ## Match Property Names
780
-
781
-
782
-
783
- ## Match Threshold
784
- 0
785
-
786
-
787
- ## IsCaseSensitive
788
- false
789
-
790
-
791
- ## Specification
792
-
793
-
794
-
795
- ## Specification Details
796
-
797
-
798
-
799
- ## Data Type
800
-
801
-
802
-
803
- ## Allow Duplicate Values
804
- false
805
-
806
-
807
- ## IsNullable
808
- false
809
-
810
-
811
- ## Default Value
812
-
813
-
814
-
815
- ## Average Value
816
- 0
817
-
818
-
819
- ## Value List
820
-
821
-
822
-
823
- ## Value Range From
824
- 0
825
-
826
-
827
- ## Value Range To:
828
- versionId: Version Identifier
829
- 0
830
-
831
-
832
- ## Sample Values
833
-
834
-
835
-
836
- ## Data Patterns
837
-
838
-
839
-
840
- ## Name Patterns
841
-
842
-
843
-
844
- ## In Data Dictionary
845
- Clinical Trials Data Dictionary
846
-
847
-
848
- ## Qualified Name
849
-
850
-
851
-
852
-
853
-
854
-
855
- ## GUID
856
-
857
-
858
-
859
-
860
-
861
- # Create Data Class
862
- ## Name
863
- Date-Class
864
-
865
- ## Description
866
- A field of type date
867
-
868
- ## namespace
869
-
870
- ## data type
871
- Date
872
-
873
- ## allowsDuplicateValues - boolean
874
- True
875
-
876
- ## isNullable
877
-
878
- ## defaultValue
879
-
880
- ## average value
881
-
882
- ## valueList
883
-
884
- ## valueRangeFrom
885
-
886
- ## valueRangeTo
887
-
888
- ## sample values
889
-
890
- ## dataPatterns
891
-
892
- ## namePatterns
893
-
894
- ## In Data Dictionary
895
- Clinical Trials Data Dictionary
896
-
897
-
898
-
899
-
900
-
901
- ___
902
-
903
- patientId-Class
904
- ___
905
-
906
- # Create Data Class
907
-
908
- ## Data Class
909
-
910
- patientId-Class
911
-
912
-
913
- ## Description
914
- Classification criteria for data fields
915
-
916
-
917
- ## Namespace
918
-
919
-
920
-
921
- ## Match Property Names
922
-
923
-
924
-
925
- ## Match Threshold
926
- 0
927
-
928
-
929
- ## IsCaseSensitive
930
- false
931
-
932
-
933
- ## Specification
934
-
935
-
936
-
937
- ## Specification Details
938
-
939
-
940
-
941
- ## Data Type
942
-
943
-
944
-
945
- ## Allow Duplicate Values
946
- false
947
-
948
-
949
- ## IsNullable
950
- false
951
-
952
-
953
- ## Default Value
954
-
955
-
956
-
957
- ## Average Value
958
- 0
959
-
960
-
961
- ## Value List
962
-
963
-
964
-
965
- ## Value Range From
966
- 0
967
-
968
-
969
- ## Value Range To:
970
- versionId: Version Identifier
971
- 0
972
-
973
-
974
- ## Sample Values
975
-
976
-
977
-
978
- ## Data Patterns
979
-
980
-
981
-
982
- ## Name Patterns
983
-
984
-
985
-
986
- ## In Data Dictionary
987
-
988
-
989
-
990
- ## Qualified Name
991
-
992
-
993
-
994
-
995
-
996
-
997
- ## GUID
998
-
999
-
1000
-
1001
-
1002
-
1003
-
1004
-
1005
-
1006
-
1007
-
1008
- ___
1009
-
1010
- date-Class
1011
- ___
1012
-
1013
- # Create Data Class
1014
-
1015
- ## Data Class
1016
-
1017
- date-Class
1018
-
1019
-
1020
- ## Description
1021
- Classification criteria for data fields
1022
-
1023
-
1024
- ## Namespace
1025
-
1026
-
1027
-
1028
- ## Match Property Names
1029
-
1030
-
1031
-
1032
- ## Match Threshold
1033
- 0
1034
-
1035
-
1036
- ## IsCaseSensitive
1037
- false
1038
-
1039
-
1040
- ## Specification
1041
-
1042
-
1043
-
1044
- ## Specification Details
1045
-
1046
-
1047
-
1048
- ## Data Type
1049
-
1050
-
1051
-
1052
- ## Allow Duplicate Values
1053
- false
1054
-
1055
-
1056
- ## IsNullable
1057
- false
1058
-
1059
-
1060
- ## Default Value
1061
-
1062
-
1063
-
1064
- ## Average Value
1065
- 0
1066
-
1067
-
1068
- ## Value List
1069
-
1070
-
1071
-
1072
- ## Value Range From
1073
- 0
1074
-
1075
-
1076
- ## Value Range To:
1077
- versionId: Version Identifier
1078
- 0
1079
-
1080
-
1081
- ## Sample Values
1082
-
1083
-
1084
-
1085
- ## Data Patterns
1086
-
1087
-
1088
-
1089
- ## Name Patterns
1090
-
1091
-
1092
-
1093
- ## In Data Dictionary
1094
-
1095
-
1096
-
1097
- ## Qualified Name
1098
-
1099
-
1100
-
1101
-
1102
-
1103
-
1104
- ## GUID
1105
-
1106
-
1107
-
1108
-
1109
-
1110
-
1111
-
1112
-
1113
-
1114
-
1115
- ___
1116
-
1117
- Measurement-Date-Class
1118
- ___
1119
-
1120
- # Create Data Class
1121
-
1122
- ## Data Class
1123
-
1124
- Measurement-Date-Class
1125
-
1126
-
1127
- ## Description
1128
- Classification criteria for data fields
1129
-
1130
-
1131
- ## Namespace
1132
-
1133
-
1134
-
1135
- ## Match Property Names
1136
-
1137
-
1138
-
1139
- ## Match Threshold
1140
- 0
1141
-
1142
-
1143
- ## IsCaseSensitive
1144
- false
1145
-
1146
-
1147
- ## Specification
1148
-
1149
-
1150
-
1151
- ## Specification Details
1152
-
1153
-
1154
-
1155
- ## Data Type
1156
-
1157
-
1158
-
1159
- ## Allow Duplicate Values
1160
- false
1161
-
1162
-
1163
- ## IsNullable
1164
- false
1165
-
1166
-
1167
- ## Default Value
1168
-
1169
-
1170
-
1171
- ## Average Value
1172
- 0
1173
-
1174
-
1175
- ## Value List
1176
-
1177
-
1178
-
1179
- ## Value Range From
1180
- 0
1181
-
1182
-
1183
- ## Value Range To:
1184
- versionId: Version Identifier
1185
- 0
1186
-
1187
-
1188
- ## Sample Values
1189
-
1190
-
1191
-
1192
- ## Data Patterns
1193
-
1194
-
1195
-
1196
- ## Name Patterns
1197
-
1198
-
1199
-
1200
- ## In Data Dictionary
1201
-
1202
-
1203
-
1204
- ## Qualified Name
1205
-
1206
-
1207
-
1208
-
1209
-
1210
-
1211
- ## GUID
1212
-
1213
-
1214
- ___
1215
-
1216
-
1217
-
1218
-
1219
-
1220
- "Data Fields Folder"
1221
- ___
1222
-
1223
- # pFolder
1224
-
1225
- ## pFolder
1226
-
1227
- Data Fields Folder
1228
-
1229
-
1230
-
1231
-
1232
-
1233
-
1234
- ___
1235
-
1236
- PatientId
1237
- ___
1238
-
1239
- # Create Data Field
1240
-
1241
- ## Data Field
1242
-
1243
- PatientId
1244
-
1245
-
1246
- ## Description
1247
- The unique identifier for a patient.
1248
-
1249
-
1250
- ## Data Type
1251
- String
1252
-
1253
-
1254
- ## Position
1255
- 0
1256
-
1257
-
1258
- ## Parent Data Field
1259
-
1260
-
1261
-
1262
- ## Minimum Cardinality
1263
-
1264
-
1265
-
1266
-
1267
- ## In Data Structure
1268
- TBDF-Incoming Weekly Measurement Data;WWT-Incoming Weekly Measurement Data
1269
-
1270
-
1271
-
1272
- ## Glossary Term
1273
- GlossaryTerm::PatientID
1274
-
1275
-
1276
- ## In Data Dictionary
1277
- Clinical Trials Data Dictionary
1278
-
1279
-
1280
- ## Aliases
1281
-
1282
-
1283
-
1284
- ## Name Patterns
1285
-
1286
-
1287
-
1288
- ## IsNullable
1289
- false
1290
-
1291
-
1292
-
1293
- ## Length
1294
- 0
1295
-
1296
-
1297
- ## Precision
1298
-
1299
-
1300
-
1301
- ## Ordered Values
1302
- false
1303
-
1304
-
1305
- ## Units
1306
-
1307
-
1308
-
1309
- ## Sort Order
1310
-
1311
-
1312
-
1313
- ## Default Value
1314
-
1315
-
1316
-
1317
- ## Additional Properties
1318
-
1319
-
1320
-
1321
-
1322
- ## Namespace
1323
-
1324
-
1325
-
1326
- ## Qualified Name
1327
- DataField::PatientId
1328
-
1329
-
1330
-
1331
-
1332
- # Create Data Field
1333
-
1334
- ## Data Field
1335
-
1336
- PatientId
1337
-
1338
- ## Description
1339
- The unique identifier for a patient.
1340
-
1341
-
1342
- ## Data Type
1343
- String
1344
-
1345
-
1346
- ## Position
1347
- 0
1348
-
1349
-
1350
- ## Parent Data Field
1351
-
1352
-
1353
-
1354
- ## Minimum Cardinality
1355
-
1356
-
1357
-
1358
- ## In Data Structure
1359
- TBDF-Incoming Weekly Measurement Data;WWT-Incoming Weekly Measurement Data
1360
-
1361
-
1362
- ## Glossary Term
1363
- GlossaryTerm::PatientID
1364
-
1365
-
1366
- ## In Data Dictionary
1367
- Clinical Trials Data Dictionary
1368
-
1369
-
1370
- ## Aliases
1371
-
1372
-
1373
-
1374
- ## Name Patterns
1375
-
1376
-
1377
-
1378
- ## IsNullable
1379
- false
1380
-
1381
-
1382
- ## Length
1383
- 0
1384
-
1385
-
1386
- ## Precision
1387
-
1388
-
1389
-
1390
- ## Ordered Values
1391
- false
1392
-
1393
-
1394
- ## Units
1395
-
1396
-
1397
-
1398
- ## Sort Order
1399
-
1400
-
1401
-
1402
- ## Default Value
1403
-
1404
-
1405
-
1406
- ## Additional Properties
1407
-
1408
-
1409
-
1410
- ## Namespace
1411
-
1412
-
1413
-
1414
- ## Qualified Name
1415
- DataField::PatientId
1416
-
1417
-
1418
-
1419
-
1420
-
1421
-
1422
- ___
1423
-
1424
- Zip Code
1425
- ___
1426
-
1427
- # Create Data Field
1428
-
1429
- ## Data Field
1430
-
1431
- Zip Code
1432
-
1433
-
1434
- ## Description
1435
- A zip code is a US Postal Code
1436
-
1437
-
1438
- ## Data Type
1439
- String
1440
-
1441
-
1442
- ## Position
1443
- 0
1444
-
1445
-
1446
- ## Parent Data Field
1447
- Postal Code
1448
-
1449
-
1450
- ## Minimum Cardinality
1451
-
1452
-
1453
-
1454
-
1455
- ## In Data Structure
1456
-
1457
-
1458
-
1459
-
1460
- ## Glossary Term
1461
-
1462
-
1463
-
1464
- ## In Data Dictionary
1465
-
1466
-
1467
-
1468
- ## Aliases
1469
-
1470
-
1471
-
1472
- ## Name Patterns
1473
-
1474
-
1475
-
1476
- ## IsNullable
1477
- false
1478
-
1479
-
1480
-
1481
- ## Length
1482
- 0
1483
-
1484
-
1485
- ## Precision
1486
-
1487
-
1488
-
1489
- ## Ordered Values
1490
- false
1491
-
1492
-
1493
- ## Units
1494
-
1495
-
1496
-
1497
- ## Sort Order
1498
-
1499
-
1500
-
1501
- ## Default Value
1502
-
1503
-
1504
-
1505
- ## Additional Properties
1506
-
1507
-
1508
-
1509
-
1510
- ## Namespace
1511
-
1512
-
1513
-
1514
- ## Qualified Name
1515
-
1516
-
1517
-
1518
-
1519
-
1520
-
1521
-
1522
-
1523
-
1524
-
1525
-
1526
-
1527
- ___
1528
-
1529
- Postal Code
1530
- ___
1531
-
1532
- # Create Data Field
1533
-
1534
- ## Data Field
1535
-
1536
- Postal Code
1537
-
1538
-
1539
- ## Description
1540
- A collection of data fields that for a data specification for a data source.
1541
-
1542
-
1543
- ## Data Type
1544
-
1545
-
1546
-
1547
- ## Position
1548
- 0
1549
-
1550
-
1551
- ## Parent Data Field
1552
- Address
1553
-
1554
-
1555
- ## Minimum Cardinality
1556
-
1557
-
1558
-
1559
-
1560
- ## In Data Structure
1561
- Address;TBDF-Incoming Weekly Measurement Data
1562
-
1563
-
1564
-
1565
- ## Glossary Term
1566
-
1567
-
1568
-
1569
- ## In Data Dictionary
1570
-
1571
-
1572
-
1573
- ## Aliases
1574
-
1575
-
1576
-
1577
- ## Name Patterns
1578
-
1579
-
1580
-
1581
- ## IsNullable
1582
- false
1583
-
1584
-
1585
-
1586
- ## Length
1587
- 0
1588
-
1589
-
1590
- ## Precision
1591
-
1592
-
1593
-
1594
- ## Ordered Values
1595
- false
1596
-
1597
-
1598
- ## Units
1599
-
1600
-
1601
-
1602
- ## Sort Order
1603
-
1604
-
1605
-
1606
- ## Default Value
1607
-
1608
-
1609
-
1610
- ## Additional Properties
1611
-
1612
-
1613
-
1614
-
1615
- ## Namespace
1616
-
1617
-
1618
-
1619
- ## Qualified Name
1620
-
1621
-
1622
-
1623
-
1624
-
1625
-
1626
-
1627
-
1628
-
1629
-
1630
- ___
1631
-
1632
- Address
1633
- ___
1634
-
1635
- # Create Data Field
1636
-
1637
- ## Data Field
1638
-
1639
- Address
1640
-
1641
-
1642
- ## Description
1643
- A collection of data fields that for a data specification for a data source.
1644
-
1645
-
1646
- ## Data Type
1647
-
1648
-
1649
-
1650
- ## Position
1651
- 0
1652
-
1653
-
1654
- ## Parent Data Field
1655
-
1656
-
1657
-
1658
- ## Minimum Cardinality
1659
-
1660
-
1661
-
1662
-
1663
- ## In Data Structure
1664
-
1665
-
1666
-
1667
-
1668
- ## Glossary Term
1669
-
1670
-
1671
-
1672
- ## In Data Dictionary
1673
-
1674
-
1675
-
1676
- ## Aliases
1677
-
1678
-
1679
-
1680
- ## Name Patterns
1681
-
1682
-
1683
-
1684
- ## IsNullable
1685
- false
1686
-
1687
-
1688
-
1689
- ## Length
1690
- 0
1691
-
1692
-
1693
- ## Precision
1694
-
1695
-
1696
-
1697
- ## Ordered Values
1698
- false
1699
-
1700
-
1701
- ## Units
1702
-
1703
-
1704
-
1705
- ## Sort Order
1706
-
1707
-
1708
-
1709
- ## Default Value
1710
-
1711
-
1712
-
1713
- ## Additional Properties
1714
-
1715
-
1716
-
1717
-
1718
- ## Namespace
1719
-
1720
-
1721
-
1722
- ## Qualified Name
1723
-
1724
-
1725
-
1726
-
1727
-
1728
-
1729
-
1730
-
1731
-
1732
-
1733
- ___
1734
-
1735
- Date
1736
- ___
1737
-
1738
- # Create Data Field
1739
-
1740
- ## Data Field
1741
-
1742
- Date
1743
-
1744
-
1745
- ## Description
1746
- A collection of data fields that for a data specification for a data source.
1747
-
1748
-
1749
- ## Data Type
1750
- Date
1751
-
1752
-
1753
- ## Position
1754
- 0
1755
-
1756
-
1757
- ## Parent Data Field
1758
-
1759
-
1760
-
1761
- ## Minimum Cardinality
1762
-
1763
-
1764
-
1765
-
1766
- ## In Data Structure
1767
- TBDF-Incoming Weekly Measurement Data;WWT-Incoming Weekly Measurement Data
1768
-
1769
-
1770
-
1771
- ## Glossary Term
1772
-
1773
-
1774
-
1775
- ## In Data Dictionary
1776
- Clinical Trials Data Dictionary
1777
-
1778
-
1779
- ## Aliases
1780
-
1781
-
1782
-
1783
- ## Name Patterns
1784
-
1785
-
1786
-
1787
- ## IsNullable
1788
- false
1789
-
1790
-
1791
-
1792
- ## Length
1793
- 0
1794
-
1795
-
1796
- ## Precision
1797
-
1798
-
1799
-
1800
- ## Ordered Values
1801
- false
1802
-
1803
-
1804
- ## Units
1805
-
1806
-
1807
-
1808
- ## Sort Order
1809
-
1810
-
1811
-
1812
- ## Default Value
1813
-
1814
-
1815
-
1816
- ## Additional Properties
1817
-
1818
-
1819
-
1820
-
1821
- ## Namespace
1822
-
1823
-
1824
-
1825
- ## Qualified Name
1826
-
1827
-
1828
-
1829
-
1830
-
1831
-
1832
-
1833
-
1834
-
1835
-
1836
- ___
1837
-
1838
- AngleLeft
1839
- ___
1840
-
1841
- # Create Data Field
1842
-
1843
- ## Data Field
1844
-
1845
- AngleLeft
1846
-
1847
-
1848
- ## Description
1849
- Angle rotation of the left leg from vertical
1850
-
1851
-
1852
- ## Data Type
1853
- Integer
1854
-
1855
-
1856
- ## Position
1857
- 0
1858
-
1859
-
1860
- ## Parent Data Field
1861
-
1862
-
1863
-
1864
- ## Minimum Cardinality
1865
-
1866
-
1867
-
1868
-
1869
- ## In Data Structure
1870
- TBDF-Incoming Weekly Measurement Data
1871
-
1872
-
1873
-
1874
- ## Glossary Term
1875
- Leg Angle Measurement
1876
-
1877
-
1878
- ## In Data Dictionary
1879
- Clinical Trials Data Dictionary
1880
-
1881
-
1882
- ## Aliases
1883
-
1884
-
1885
-
1886
- ## Name Patterns
1887
-
1888
-
1889
-
1890
- ## IsNullable
1891
- false
1892
-
1893
-
1894
-
1895
- ## Length
1896
- 0
1897
-
1898
-
1899
- ## Precision
1900
-
1901
-
1902
-
1903
- ## Ordered Values
1904
- false
1905
-
1906
-
1907
- ## Units
1908
-
1909
-
1910
-
1911
- ## Sort Order
1912
-
1913
-
1914
-
1915
- ## Default Value
1916
-
1917
-
1918
-
1919
- ## Additional Properties
1920
-
1921
-
1922
-
1923
-
1924
- ## Namespace
1925
-
1926
-
1927
-
1928
- ## Qualified Name
1929
-
1930
-
1931
-
1932
-
1933
-
1934
-
1935
-
1936
-
1937
-
1938
-
1939
- ___
1940
-
1941
- AngleRight
1942
- ___
1943
-
1944
- # Create Data Field
1945
-
1946
- ## Data Field
1947
-
1948
- AngleRight
1949
-
1950
-
1951
- ## Description
1952
- Angle rotation of the left leg from vertical
1953
-
1954
-
1955
-
1956
- ## Data Type
1957
- Integer
1958
-
1959
-
1960
- ## Position
1961
- 0
1962
-
1963
-
1964
- ## Parent Data Field
1965
-
1966
-
1967
-
1968
- ## Minimum Cardinality
1969
-
1970
-
1971
-
1972
-
1973
- ## In Data Structure
1974
- TBDF-Incoming Weekly Measurement Data
1975
-
1976
-
1977
-
1978
- ## Glossary Term
1979
-
1980
-
1981
-
1982
- ## In Data Dictionary
1983
- Clinical Trials Data Dictionary
1984
-
1985
-
1986
- ## Aliases
1987
-
1988
-
1989
-
1990
- ## Name Patterns
1991
-
1992
-
1993
-
1994
- ## IsNullable
1995
- false
1996
-
1997
-
1998
-
1999
- ## Length
2000
- 0
2001
-
2002
-
2003
- ## Precision
2004
-
2005
-
2006
-
2007
- ## Ordered Values
2008
- false
2009
-
2010
-
2011
- ## Units
2012
-
2013
-
2014
-
2015
- ## Sort Order
2016
-
2017
-
2018
-
2019
- ## Default Value
2020
-
2021
-
2022
-
2023
- ## Additional Properties
2024
-
2025
-
2026
-
2027
-
2028
- ## Namespace
2029
-
2030
-
2031
-
2032
- ## Qualified Name
2033
-
2034
-
2035
-
2036
-
2037
-
2038
-
2039
-
2040
-
2041
-
2042
-
2043
- ___
2044
-
2045
- Transformation Completeness
2046
- ___
2047
-
2048
- # Create Data Field
2049
-
2050
- ## Data Field
2051
-
2052
- Transformation Completeness
2053
-
2054
-
2055
- ## Description
2056
- Percent completeness of the werewolf transformation
2057
-
2058
-
2059
- ## Data Type
2060
- Integer
2061
-
2062
-
2063
- ## Position
2064
- 0
2065
-
2066
-
2067
- ## Parent Data Field
2068
-
2069
-
2070
-
2071
- ## Minimum Cardinality
2072
-
2073
-
2074
-
2075
-
2076
- ## In Data Structure
2077
- TBDF-Incoming Weekly Measurement Data
2078
-
2079
-
2080
-
2081
- ## Glossary Term
2082
-
2083
-
2084
-
2085
- ## In Data Dictionary
2086
- Clinical Trials Data Dictionary
2087
-
2088
-
2089
- ## Aliases
2090
-
2091
-
2092
-
2093
- ## Name Patterns
2094
-
2095
-
2096
-
2097
- ## IsNullable
2098
- false
2099
-
2100
-
2101
-
2102
- ## Length
2103
- 0
2104
-
2105
-
2106
- ## Precision
2107
-
2108
-
2109
-
2110
- ## Ordered Values
2111
- false
2112
-
2113
-
2114
- ## Units
2115
- percent
2116
-
2117
-
2118
- ## Sort Order
2119
-
2120
-
2121
-
2122
- ## Default Value
2123
-
2124
-
2125
-
2126
- ## Additional Properties
2127
-
2128
-
2129
-
2130
-
2131
- ## Namespace
2132
-
2133
-
2134
-
2135
- ## Qualified Name
2136
-
2137
-
2138
-
2139
-
2140
-
2141
-
2142
-
2143
-
2144
-
2145
-
2146
- ___
2147
-
2148
- Transformation Speed
2149
- ___
2150
-
2151
- # Create Data Field
2152
-
2153
- ## Data Field
2154
-
2155
- Transformation Speed
2156
-
2157
-
2158
- ## Description
2159
- Speed of the werewolf transformation in minutes.
2160
-
2161
-
2162
-
2163
- ## Data Type
2164
- Integer
2165
-
2166
-
2167
- ## Position
2168
- 0
2169
-
2170
-
2171
- ## Parent Data Field
2172
-
2173
-
2174
-
2175
- ## Minimum Cardinality
2176
-
2177
-
2178
-
2179
-
2180
- ## In Data Structure
2181
- TBDF-Incoming Weekly Measurement Data
2182
-
2183
-
2184
-
2185
- ## Glossary Term
2186
-
2187
-
2188
-
2189
- ## In Data Dictionary
2190
- Clinical Trials Data Dictionary
2191
-
2192
-
2193
- ## Aliases
2194
-
2195
-
2196
-
2197
- ## Name Patterns
2198
-
2199
-
2200
-
2201
- ## IsNullable
2202
- false
2203
-
2204
-
2205
-
2206
- ## Length
2207
- 0
2208
-
2209
-
2210
- ## Precision
2211
-
2212
-
2213
-
2214
- ## Ordered Values
2215
- false
2216
-
2217
-
2218
- ## Units
2219
- minutes
2220
-
2221
-
2222
- ## Sort Order
2223
-
2224
-
2225
-
2226
- ## Default Value
2227
-
2228
-
2229
-
2230
- ## Additional Properties
2231
-
2232
-
2233
-
2234
-
2235
- ## Namespace
2236
-
2237
-
2238
-
2239
- ## Qualified Name
2240
-
2241
-
2242
-
2243
-
2244
-
2245
-
2246
-
2247
-
2248
-
2249
-
2250
- ___
2251
-
2252
- Transformation Duration
2253
- ___
2254
-
2255
- # Create Data Field
2256
-
2257
- ## Data Field
2258
-
2259
- Transformation Duration
2260
-
2261
-
2262
- ## Description
2263
- Duration of the werewolf transformation, in minutes.
2264
-
2265
-
2266
- ## Data Type
2267
- Integer
2268
-
2269
-
2270
- ## Position
2271
- 0
2272
-
2273
-
2274
- ## Parent Data Field
2275
-
2276
-
2277
-
2278
- ## Minimum Cardinality
2279
-
2280
-
2281
-
2282
-
2283
- ## In Data Structure
2284
- WWT-Incoming Weekly Measurement Data
2285
-
2286
-
2287
-
2288
- ## Glossary Term
2289
-
2290
-
2291
-
2292
- ## In Data Dictionary
2293
- Clinical Trials Data Dictionary
2294
-
2295
-
2296
- ## Aliases
2297
-
2298
-
2299
-
2300
- ## Name Patterns
2301
-
2302
-
2303
-
2304
- ## IsNullable
2305
- false
2306
-
2307
-
2308
-
2309
- ## Length
2310
- 0
2311
-
2312
-
2313
- ## Precision
2314
-
2315
-
2316
-
2317
- ## Ordered Values
2318
- false
2319
-
2320
-
2321
- ## Units
2322
- Minutes
2323
-
2324
-
2325
- ## Sort Order
2326
-
2327
-
2328
-
2329
- ## Default Value
2330
-
2331
-
2332
-
2333
- ## Additional Properties
2334
-
2335
-
2336
-
2337
-
2338
- ## Namespace
2339
-
2340
-
2341
-
2342
- ## Qualified Name
2343
-
2344
-
2345
-
2346
-
2347
-
2348
-
2349
-
2350
-
2351
-
2352
-
2353
-
2354
-
2355
-
2356
-
2357
-
2358
-
2359
-
2360
-
2361
-
2362
-
2363
-
2364
-
2365
-
2366
- ___
2367
-
2368
-
2369
- # Create Data Field
2370
- ## Name
2371
- Patient Country
2372
- ## Description
2373
- Country of the patient
2374
- ## Data Type
2375
- String
2376
- ## Position
2377
- 0
2378
- ## Min Cardinality
2379
- 1
2380
- ## Max Cardinality
2381
- 1
2382
-
2383
- ## In Data Structure
2384
-
2385
-
2386
- ## Data Class
2387
- ## Glossary Term
2388
-
2389
- ## Namespace
2390
- > forms part of qualified name
2391
-
2392
- ## Version
2393
-
2394
- ## Parent
2395
- DataField::PatientId
2396
- ## In Data Dictionary
2397
-
2398
- ## Qualified Name
2399
-
2400
-
2401
-
2402
-
2403
-
2404
-
2405
-
2406
-