-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgovernance_metadata.json
4074 lines (4074 loc) · 156 KB
/
governance_metadata.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"variables": {
"Patient_sex": {
"variable_name": "Sex",
"variable_description": "Describes biological sex as recorded in the patient's identity document or in the hospital record. In the absence of documentation, the one declared by the patient will be recorded",
"datatype": "Label",
"entity": "PATIENT",
"values": [
"Male",
"Female"
],
"dataset": [
"H&N",
"Sarc."
],
"id": "v_0"
},
"Patient_race": {
"variable_name": "Race",
"variable_description": "Describes race as recorded in the hospital record, the one declared by the patient,, otherwise, the onerecognized by the observer",
"datatype": "Label",
"entity": "PATIENT",
"values": [
"White",
"Black",
"Asian/Pacific Islanders",
"American Indian/Alaska Native",
"Hispanic or Latino"
],
"dataset": [
"H&N",
"Sarc."
],
"id": "v_1"
},
"Patient_birthYear": {
"variable_name": "Birth Year",
"variable_description": "Year of birth of the patient.",
"datatype": "Number",
"entity": "PATIENT",
"values": [],
"dataset": [
"H&N",
"Sarc."
],
"id": "v_2"
},
"Patient_countryOfResidence": {
"variable_name": "Country of Residence",
"variable_description": "Country of residence at the time of diagnosis",
"datatype": "Label",
"entity": "PATIENT",
"values": [],
"dataset": [
"H&N",
"Sarc."
],
"id": "v_3"
},
"Patient_smoking": {
"variable_name": "Smoking",
"variable_description": "Describes tobacco smoker habits within the options proposed",
"datatype": "Label",
"entity": "PATIENT",
"values": [
"Current smoker",
"Former smoker",
"Never smoker"
],
"dataset": [
"H&N",
"Sarc."
],
"id": "v_4"
},
"Patient_cigarettesPackYearsSmokedDuringLife": {
"variable_name": "Cigarettes pack years smoked during life",
"variable_description": "Calculates pack/ year by multiplying the number of packs of cigarettes smoked per day by the number of years the person has been smoking.\n",
"datatype": "Number",
"entity": "PATIENT",
"values": [],
"dataset": [
"H&N",
"Sarc."
],
"id": "v_5"
},
"Patient_alcohol": {
"variable_name": "Alcohol",
"variable_description": "Describes alcohol habits within the options proposed",
"datatype": "Label",
"entity": "PATIENT",
"values": [
"Current drinker"
],
"dataset": [
"H&N",
"Sarc."
],
"id": "v_6"
},
"Patient_height/weight": {
"variable_name": "Height/weight (BMI)\n",
"variable_description": "Body Mass Index information if weight and height are included. it is calculated as BMI = kg/m2 where kg is a person's weight in kilograms and m2 is their height in metres squared.",
"datatype": "Float",
"entity": "PATIENT",
"values": [],
"dataset": [
"H&N"
],
"id": "v_7"
},
"Patient_charlsonComorbidityIndex": {
"variable_name": "Charlson Comorbidity index",
"variable_description": "Provides the Charlson Comorbidity index for the patient",
"datatype": "Number",
"entity": "PATIENT",
"values": [],
"dataset": [
"H&N",
"Sarc."
],
"id": "v_8"
},
"Patient_comorbidity": {
"variable_name": "Comorbidity",
"variable_description": "Describes wherther the patient was diagnosed before treatment of at least one of the comorbidities listed or not. \nIt refers to any disease or medical condition that is simultaneously present with the cancer under study.",
"datatype": "Boolean",
"entity": "PATIENT",
"values": [],
"dataset": [
"H&N"
],
"id": "v_9"
},
"Patient_myocardialInfarction": {
"variable_name": "Myocardial infarction",
"variable_description": "Describes comorbidities reported or assesed before treatment. More than one choice is allowed. Please do not include the current cancer in this calculation, only the previous cancer.",
"datatype": "Boolean",
"entity": "PATIENT",
"values": [],
"dataset": [
"H&N"
],
"id": "v_10"
},
"Patient_congestiveHeartFailure": {
"variable_name": "Congestive heart failure",
"variable_description": "Previous cancer comorbidity related to Congestive heart failure",
"datatype": "Boolean",
"entity": "PATIENT",
"values": [],
"dataset": [
"H&N"
],
"id": "v_11"
},
"Patient_peripheralVascularDisease": {
"variable_name": "Peripheral vascular disease",
"variable_description": "Previous cancer comorbidity related to Peripheral vascular disease",
"datatype": "Boolean",
"entity": "PATIENT",
"values": [],
"dataset": [
"H&N"
],
"id": "v_12"
},
"Patient_cerebrovascularAccident": {
"variable_name": "Cerebrovascular accident (except hemiplegia)",
"variable_description": "Previous cancer comorbidity related to Cerebrovascular accident (except hemiplegia)",
"datatype": "Boolean",
"entity": "PATIENT",
"values": [],
"dataset": [
"H&N"
],
"id": "v_13"
},
"Patient_dementia": {
"variable_name": "Dementia",
"variable_description": "Previous cancer comorbidity related to Dementia",
"datatype": "Boolean",
"entity": "PATIENT",
"values": [],
"dataset": [
"H&N"
],
"id": "v_14"
},
"Patient_chronicPulmonaryDisease": {
"variable_name": "Chronic pulmonary disease",
"variable_description": "Previous cancer comorbidity related to Chronic pulmonary disease",
"datatype": "Boolean",
"entity": "PATIENT",
"values": [],
"dataset": [
"H&N"
],
"id": "v_15"
},
"Patient_connectiveTissueDisease": {
"variable_name": "Connective tissue disease",
"variable_description": "Previous cancer comorbidity related to Connective tissue disease",
"datatype": "Boolean",
"entity": "PATIENT",
"values": [],
"dataset": [
"H&N"
],
"id": "v_16"
},
"Patient_ulcer": {
"variable_name": "Ulcer",
"variable_description": "Previous cancer comorbidity related to Ulcer",
"datatype": "Boolean",
"entity": "PATIENT",
"values": [],
"dataset": [
"H&N"
],
"id": "v_17"
},
"Patient_mildLiverDisease": {
"variable_name": "Mild liver disease",
"variable_description": "Previous cancer comorbidity related to Mild liver disease",
"datatype": "Boolean",
"entity": "PATIENT",
"values": [],
"dataset": [
"H&N"
],
"id": "v_18"
},
"Patient_moderateToSevereLiverDisease": {
"variable_name": "Moderate to severe liver disease",
"variable_description": "Previous cancer comorbidity related to Moderate to severe liver disease",
"datatype": "Boolean",
"entity": "PATIENT",
"values": [],
"dataset": [
"H&N"
],
"id": "v_19"
},
"Patient_diabetes": {
"variable_name": "Diabetes (without complications)",
"variable_description": "Previous cancer comorbidity related to Diabetes (without complications)",
"datatype": "Boolean",
"entity": "PATIENT",
"values": [],
"dataset": [
"H&N"
],
"id": "v_20"
},
"Patient_diabetesWithEndOrganDamage": {
"variable_name": "Diabetes with end organ damage",
"variable_description": "Previous cancer comorbidity related to Diabetes with end organ damage",
"datatype": "Boolean",
"entity": "PATIENT",
"values": [],
"dataset": [
"H&N"
],
"id": "v_21"
},
"Patient_hemiplegia": {
"variable_name": "Hemiplegia",
"variable_description": "Previous cancer comorbidity related to Hemiplegia",
"datatype": "Boolean",
"entity": "PATIENT",
"values": [],
"dataset": [
"H&N"
],
"id": "v_22"
},
"Patient_moderateToSevereRenalDisease": {
"variable_name": "Moderate to severe renal disease",
"variable_description": "Previous cancer comorbidity related to Moderate to severe renal disease",
"datatype": "Boolean",
"entity": "PATIENT",
"values": [],
"dataset": [
"H&N"
],
"id": "v_23"
},
"Patient_solidTumor": {
"variable_name": "Solid tumor (non metastatic)",
"variable_description": "Previous cancer comorbidity related to Solid tumor (non metastatic)",
"datatype": "Boolean",
"entity": "PATIENT",
"values": [],
"dataset": [
"H&N"
],
"id": "v_24"
},
"Patient_metastaticSolidTumor": {
"variable_name": "Metastatic solid tumor",
"variable_description": "Previous cancer comorbidity related to Metastatic solid tumor",
"datatype": "Boolean",
"entity": "PATIENT",
"values": [],
"dataset": [
"H&N"
],
"id": "v_25"
},
"Patient_leukemia": {
"variable_name": "Leukemia",
"variable_description": "Previous cancer comorbidity related to Leukemia",
"datatype": "Boolean",
"entity": "PATIENT",
"values": [],
"dataset": [
"H&N"
],
"id": "v_26"
},
"Patient_lymphoma": {
"variable_name": "Lymphoma",
"variable_description": "Previous cancer comorbidity related to Lymphoma",
"datatype": "Boolean",
"entity": "PATIENT",
"values": [],
"dataset": [
"H&N"
],
"id": "v_27"
},
"Patient_multipleMyeloma": {
"variable_name": "Multiple myeloma",
"variable_description": "Previous cancer comorbidity related to Multiple myeloma",
"datatype": "Boolean",
"entity": "PATIENT",
"values": [],
"dataset": [
"H&N"
],
"id": "v_28"
},
"Patient_aids": {
"variable_name": "AIDS",
"variable_description": "Previous cancer comorbidity related to AIDS",
"datatype": "Boolean",
"entity": "PATIENT",
"values": [],
"dataset": [
"H&N"
],
"id": "v_29"
},
"Patient_easternCooperativeOncologyGroupPerformanceStatusAtDiagnosis": {
"variable_name": "Eastern Cooperative Oncology Group performance status (ECOG PS) at diagnosis",
"variable_description": "Eastern Cooperative Oncology Group performance status (ECOG PS) at diagnosis",
"datatype": "Number",
"entity": "PATIENT",
"values": [],
"dataset": [
"H&N"
],
"id": "v_30"
},
"Patient_ecogPsLabel": {
"variable_name": "ECOG PS label",
"variable_description": "Eastern Cooperative Oncology Group performance status (ECOG PS) at diagnosis",
"datatype": "Label",
"entity": "PATIENT",
"values": [
"Answers of ECOG Performance Status [Interpretation]"
],
"dataset": [
"H&N"
],
"id": "v_31"
},
"Patient_karnofsyIndexAtDiagnosis": {
"variable_name": "Karnofsy index at diagnosis",
"variable_description": "Karnofsy index at diagnosis. Consider only the first KI before any treatment available in the clinical record.",
"datatype": "Number",
"entity": "PATIENT",
"values": [],
"dataset": [
"H&N"
],
"id": "v_32"
},
"Patient_karnofsyIndexLabel": {
"variable_name": "Karnofsy index label",
"variable_description": "Karnofsy index at diagnosis. Consider only the first KI before any treatment available in the clinical record.",
"datatype": "Label",
"entity": "PATIENT",
"values": [
"Answers of Karnofsky Performance Status [Interpretation]"
],
"dataset": [
"H&N"
],
"id": "v_33"
},
"Patient_noGeneticSyndrome": {
"variable_name": "No Genetic syndrome",
"variable_description": "If no genetic syndrome was identified for the patient. based on WHO 2020.",
"datatype": "Boolean",
"entity": "PATIENT",
"values": [
"No evidence of"
],
"dataset": [
"Sarc."
],
"id": "v_34"
},
"Patient_olliersDisease": {
"variable_name": "Olliers disease",
"variable_description": "If patient presents Olliers disease",
"datatype": "Boolean",
"entity": "PATIENT",
"values": [
"Enchondromatosis"
],
"dataset": [
"Sarc."
],
"id": "v_35"
},
"Patient_maffuciSyndrome": {
"variable_name": "Maffuci syndrome",
"variable_description": "If patient presents Maffuci syndrome",
"datatype": "Boolean",
"entity": "PATIENT",
"values": [
"Maffucci syndrome"
],
"dataset": [
"Sarc."
],
"id": "v_36"
},
"Patient_liFraumeniSyndrome": {
"variable_name": "Li-Fraumeni syndrome",
"variable_description": "If patient presents Li-Fraumeni syndrome",
"datatype": "Boolean",
"entity": "PATIENT",
"values": [],
"dataset": [
"Sarc."
],
"id": "v_37"
},
"Patient_mccuneAlbrightSyndrome": {
"variable_name": "McCune-Albright syndrome",
"variable_description": "If patient presents McCune-Albright syndrome",
"datatype": "Boolean",
"entity": "PATIENT",
"values": [
"McCune Albright syndrome"
],
"dataset": [
"Sarc."
],
"id": "v_38"
},
"Patient_multipleOsteochondromas": {
"variable_name": "Multiple osteochondromas",
"variable_description": "If patient presents Multiple osteochondromas",
"datatype": "Boolean",
"entity": "PATIENT",
"values": [
"Multiple osteochondroma"
],
"dataset": [
"Sarc."
],
"id": "v_39"
},
"Patient_neurofibromatosisType1": {
"variable_name": "Neurofibromatosis type 1",
"variable_description": "If patient presents Neurofibromatosis type 1",
"datatype": "Boolean",
"entity": "PATIENT",
"values": [
"Neurofibromatosis type 1"
],
"dataset": [
"Sarc."
],
"id": "v_40"
},
"Patient_rothmundThomsonSyndrome": {
"variable_name": "Rothmund-Thomson syndrome",
"variable_description": "If patient presents Rothmund-Thomson syndrome",
"datatype": "Boolean",
"entity": "PATIENT",
"values": [],
"dataset": [
"Sarc."
],
"id": "v_41"
},
"Patient_wernerSyndrome": {
"variable_name": "Werner syndrome",
"variable_description": "If patient presents Werner syndrome",
"datatype": "Boolean",
"entity": "PATIENT",
"values": [
"Werner syndrome"
],
"dataset": [
"Sarc."
],
"id": "v_42"
},
"Patient_retinoblastoma": {
"variable_name": "Retinoblastoma",
"variable_description": "If patient presents Retinoblastoma",
"datatype": "Boolean",
"entity": "PATIENT",
"values": [
"Retinoblastoma"
],
"dataset": [
"Sarc."
],
"id": "v_43"
},
"Patient_pagetDisease": {
"variable_name": "Paget disease",
"variable_description": "If patient presents Paget disease",
"datatype": "Boolean",
"entity": "PATIENT",
"values": [
"Osteitis deformans"
],
"dataset": [
"Sarc."
],
"id": "v_44"
},
"Patient_otherGeneticSyndrome": {
"variable_name": "Other Genetic syndrome",
"variable_description": "If patient presents Other Genetic syndrome. According to WHO 2020",
"datatype": "Label",
"entity": "PATIENT",
"values": [
"History of event"
],
"dataset": [
"Sarc."
],
"id": "v_45"
},
"Patient_previousMalignantCancerSite": {
"variable_name": "Previous malignant cancer site",
"variable_description": "Describes the site of the malignant tumour reported or assesed before the cancer under study. Any type of of solid and haematological cancer is listed. To obtain the previous malignant cancer refer to the solid tumor (metastatic and non-metastatic) comorbidity",
"datatype": "Label",
"entity": "PATIENT",
"values": [],
"dataset": [
"H&N"
],
"id": "v_46"
},
"Patient_previousCancerTreatment": {
"variable_name": "Previous cancer treatment",
"variable_description": "Describes the type of treatment performed for the previous cancer",
"datatype": "Label",
"entity": "PATIENT",
"values": [
"Chemotherapy",
"Comprehensive medication therapy review",
"Immunological therapy"
],
"dataset": [
"Sarc."
],
"id": "v_47"
},
"PatientFollowUp_patient": {
"variable_name": "Patient",
"variable_description": "Patient element",
"datatype": "Patient",
"entity": "PATIENT FOLLOW UP",
"values": [],
"dataset": [
"H&N",
"Sarc."
],
"id": "v_48"
},
"PatientFollowUp_statusOfPatientAtLastFollowUp": {
"variable_name": "Status of patient at last follow-up",
"variable_description": "Describes the status at last follow-up",
"datatype": "Label",
"entity": "PATIENT FOLLOW UP",
"values": [
"Alive, No Evidence of Disease (NED)",
"Dead of Disease (DOD)",
"Dead of Other Cause (DOC)",
"Dead of Unknown Cause (DUC)",
"Alive With Disease (AWD)"
],
"dataset": [
"H&N",
"Sarc."
],
"id": "v_49"
},
"PatientFollowUp_statusOfDiseaseAtLastFollowUp": {
"variable_name": "Status of patient at last follow-up",
"variable_description": "Describes the disease status at the last follow-up. This value is redundant as it could be derived from the disease status in EpisodeEvent. If a Patient has 3 follow-ups, but the disease status (e.g., stable disease) did not change during those, the follow-ups will be grouped into a single one with the last date of the three of them.",
"datatype": "EpisodeEvent",
"entity": "PATIENT FOLLOW UP",
"values": [
"Complete Remission",
"Partial Remission",
"Stable Disease",
"Progression",
"Recurrence"
],
"dataset": [
"H&N",
"Sarc."
],
"id": "v_50"
},
"PatientFollowUp_patientFollowUpDate": {
"variable_name": "Patient Follow Up date",
"variable_description": "Date of the clinical follow-up",
"datatype": "Date",
"entity": "PATIENT FOLLOW UP",
"values": [],
"dataset": [
"H&N",
"Sarc."
],
"id": "v_51"
},
"PatientFollowUp_newCancerDiagnosis": {
"variable_name": "New cancer diagnosis",
"variable_description": "identifies whether the patient has developed a subsequent primary cancer",
"datatype": "Boolean",
"entity": "PATIENT FOLLOW UP",
"values": [
"Yes"
],
"dataset": [
"H&N"
],
"id": "v_52"
},
"PatientFollowUp_dateOfNewCancerDiagnosis": {
"variable_name": "Date of new cancer diagnosis",
"variable_description": "date of subsequent primary cancer diagnosis",
"datatype": "Date",
"entity": "PATIENT FOLLOW UP",
"values": [],
"dataset": [
"H&N"
],
"id": "v_53"
},
"PatientFollowUp_newCancerTopography": {
"variable_name": "New cancer topography",
"variable_description": "clarifies the site of the subsequent primary cancer (from a predefined list of sites)",
"datatype": "Label",
"entity": "PATIENT FOLLOW UP",
"values": [],
"dataset": [
"H&N"
],
"id": "v_54"
},
"Patient_lastContact": {
"variable_name": "Last Contact",
"variable_description": "Date of the last contact with the patient, of any kind.",
"datatype": "Date",
"entity": "PATIENT",
"values": [],
"dataset": [
"Sarc."
],
"id": "v_55"
},
"HospitalData_hospitalName": {
"variable_name": "Hospital Name",
"variable_description": "Hospital where the patients is included in the registry",
"datatype": "String",
"entity": "HOSPITAL DATA",
"values": [],
"dataset": [
"H&N"
],
"id": "v_56"
},
"HospitalPatientRecords_patient": {
"variable_name": "Patient",
"variable_description": "Patient element containing the data regarding the patient followed by the hospital",
"datatype": "ElementReference",
"entity": "PATIENT",
"values": [],
"dataset": [
"H&N"
],
"id": "v_57"
},
"HospitalPatientRecords_hospital": {
"variable_name": "Hospital",
"variable_description": "Hospital element containing the data regarding the patient followed by the hospital",
"datatype": "ElementReference",
"entity": "HOSPITAL DATA",
"values": [],
"dataset": [
"H&N"
],
"id": "v_58"
},
"HospitalPatientRecords_dateOfFirstContactWithTheHospital": {
"variable_name": "Date of first contact with the hospital",
"variable_description": "Date of the first contact of the patient with the hospital registering the data. The hospital will record information on the patient's entire disease trajectory, thus also on procedures and/or treatments performed in another hospital. The \u201cdate of first contact\u201d will be crossed with other dates to better understand which parts of the disease path were managed by the hospital that registered the patient.",
"datatype": "Date",
"entity": "HOSPITAL PATIENT RECORDS",
"values": [],
"dataset": [
"H&N"
],
"id": "v_59"
},
"CancerEpisode_patient": {
"variable_name": "Patient",
"variable_description": "Patient element containing the data regarding the patient followed by the hospital",
"datatype": "ElementReference",
"entity": "CANCER EPISODE",
"values": [],
"dataset": [
"H&N",
"Sarc."
],
"id": "v_60"
},
"CancerEpisode_cancerStartDate": {
"variable_name": "Cancer start date",
"variable_description": "Date when the cancer was detected. Must match the date of the first diagnosis. It works as the \"overarching\" episode",
"datatype": "Date",
"entity": "CANCER EPISODE",
"values": [],
"dataset": [
"H&N",
"Sarc."
],
"id": "v_61"
},
"Diagnosis_cancerepisode": {
"variable_name": "CancerEpisode",
"variable_description": "CancerEpisode reference where the diagnosis was performed",
"datatype": "ElementReference",
"entity": "DIAGNOSIS",
"values": [],
"dataset": [
"H&N",
"Sarc."
],
"id": "v_62"
},
"Diagnosis_dateOfDiagnosis": {
"variable_name": "Date of diagnosis (biopsy or surgical piece)",
"variable_description": "Date of the procedure performed to obtain the specimen for the histological diagnosis, regardless of the institution that performed it.",
"datatype": "Date",
"entity": "DIAGNOSIS",
"values": [],
"dataset": [
"H&N",
"Sarc."
],
"id": "v_63"
},
"Diagnosis_typeOfBiopsy": {
"variable_name": "Type of biopsy",
"variable_description": "Type of biopsy performed to the patient. Information coming from the biopsy data.",
"datatype": "Label",
"entity": "DIAGNOSIS",
"values": [
"Fine needle biopsy",
"Core needle biopsy",
"Incisional biopsy",
"Excisional biopsy",
"Excision"
],
"dataset": [
"Sarc."
],
"id": "v_64"
},
"Diagnosis_biopsyDoneBy": {
"variable_name": "Biopsy done by",
"variable_description": "Describes the institution where diagnostic procedure was performed. A pseudonym for a hospital. It could be the ID assigned from the original hospital.",
"datatype": "String",
"entity": "DIAGNOSIS",
"values": [],
"dataset": [
"H&N",
"Sarc."
],
"id": "v_65"
},
"Diagnosis_ageAtDiagnosis": {
"variable_name": "Age at diagnosis",
"variable_description": "Age of the patient at the time of the diagnosis.",
"datatype": "Integer ",
"entity": "DIAGNOSIS",
"values": [],
"dataset": [
"H&N",
"Sarc."
],
"id": "v_66"
},
"Diagnosis_radiotherapyInducedSarcoma": {
"variable_name": "Radiotherapy induced sarcoma",
"variable_description": "radiotherapy induced if the new tumour is in the field or marginal the anatomical area that received high radiation dose; please specify the interval time from the radiotherapy treatment",
"datatype": "Boolean",
"entity": "DIAGNOSIS",
"values": [],
"dataset": [
"Sarc."
],
"id": "v_67"
},
"Diagnosis_biopsyGrading": {
"variable_name": "Biopsy grading",
"variable_description": "Grading of the cancer given by the biopsy",
"datatype": "Label",
"entity": "DIAGNOSIS",
"values": [],
"dataset": [
"H&N",
"Sarc."
],
"id": "v_68"
},
"Diagnosis_histologyGroup": {
"variable_name": "Histology group",
"variable_description": "HNC: Describes the histology of primary tumour according to WHO 2017 clasification.",
"datatype": "Label",
"entity": "DIAGNOSIS",
"values": [
"Squamous cell carcinoma",
"Adenocarcinoma",
"Neuroendocrine carcinoma",
"Undifferentiated carcinoma of nasal sinus",
"Adenosquamous carcinoma",
"Teratocarcinoma",
"Nuclear protein in testis associated carcinoma",
"Olfactory neuroblastoma",
"Odontogenic tumor, malignant",
"Lipomatous neoplasm (Adipocytic tumours)",
"Fibromatous neoplasm of borderline malignancy",
"Vascular tumours",
"Pericytic (perivascular) tumours",
"Smooth muscle tumor",
"Osseous AND/OR chondromatous neoplasm",
"Nerve sheath tumor",
"Neoplasm of uncertain behavior",
"Undifferentiated small round cell sarcomas of bone and soft tissue",
"Endometrial stromal sarcoma",
"Miscellanious mesenchimal tumors",
"Mixed epithelial and mesenchymal tumours"
],
"dataset": [
"H&N",
"Sarc."
],
"id": "v_69"
},
"Diagnosis_site": {
"variable_name": "Site",
"variable_description": "Describes the primary tumor site. For head and neck, according to AJCC .",
"datatype": "Label",
"entity": "DIAGNOSIS",
"values": [
"Nasal cavity and paranasal sinus",
"Nasopharynx",
"Parotid gland",
"Submandibular gland",
"Sublingual gland",
"Middle ear",
"Hypopharynx",
"Oropharynx",
"Larynx",
"Oral cavity",
"Lip",
"Pharynx",
"Sinonasal",
"Larynx",
"Head, face, and neck",
"Upper limb and shoulder",
"Lower limb and hip",
"Trunk",
"Thorax",
"Abdomen",
"Retroperitoneum",
"Peritoneum",
"Pelvis",
"Breast",
"Genitourinary (not bladder / prostate)",
"Urinary tract",
"Central Nervous System"
],
"dataset": [
"H&N",
"Sarc."
],
"id": "v_70"
},
"Diagnosis_histologySubgroup": {
"variable_name": "Histology subgroup",
"variable_description": "Histology subgroup value for the cancer diagnosis.",
"datatype": "Label",
"entity": "DIAGNOSIS",
"values": [
"Squamous cell carcinoma, keratinizing",
"Schneiderian carcinoma",
"Squamous cell carcinoma, spindle cell",
"Lymphoepithelial carcinoma",
"Basaloid squamous cell carcinoma",
"Squamous cell carcinoma",
"Adenoid squamous cell carcinoma",
"Squamous cell carcinoma, microinvasive",
"Giant cell carcinoma",
"Verrucous carcinoma",
"Papillary squamous cell carcinoma",
"Squamous cell carcinoma",
"Human papillomavirus positive squamous cell carcinoma",
"Squamous cell carcinoma",
"Adenocarcinoma, intestinal type",
"Adenocarcinoma",
"Cystoadenocarcinoma",
"Mucinous adenocarcinoma",
"Ceruminous adenocarcinoma",
"Papillary adenocarcinoma",
"Adenoid cystic carcinoma",
"Mucoepidermoid carcinoma",
"Polymorphous low grade adenocarcinoma",
"Acinar cell carcinoma",
"Clear cell adenocarcinoma",
"Basal cell adenocarcinoma",
"Infiltrating duct carcinoma",
"Juvenile carcinoma of the breast",
"Paget's disease, extramammary (except Paget's disease of bone)",
"Malignant myoepithelioma",
"Carcinoma ex pleomorphic adenoma",
"Sebaceous adenocarcinoma",
"Carcinosarcoma",
"Oxyphilic adenocarcinoma",
"Cystadenocarcinoma",
"Small cell neuroendocrine\u00a0carcinoma (SmCC)\u200b",
"Malignant poorly differentiated neuroendocrine carcinoma",
"Large cell neuroendocrine carcinoma (LCNEC)\u200b",
"Neuroendocrine tumor grade 1",
"Neuroendocrine tumor grade 2",
"Neuroendocrine carcinoma",
"Odontogenic tumor, malignant",
"Clear cell odontogenic carcinoma",
"Sinonasal SMARCA4 deficient carcinoma;",
"Undifferentiated carcinoma of nasal sinus",
"Carcinoma, undifferentiated",
"Adenosquamous carcinoma",
"Teratocarcinoma",
"Nuclear protein in testis associated carcinoma",
"Olfactory neuroblastoma",
"Atypical lipomatous tumor",
"Liposarcoma, well differentiated",
"Dedifferentiated liposarcoma",
"Myxoid liposarcoma",
"Pleomorphic liposarcoma",
"Myxoid pleomorphic liposarcoma",
"Aggressive fibromatosis",
"Lipofibromatosis",
"Giant cell fibroblastoma",
"Dermatofibrosarcoma protuberans",
"Solitary fibrous tumor and hemangiopericytoma grade 1",
"Solitary fibrous tumor and hemangiopericytoma grade 2",
"Solitary fibrous tumor and hemangiopericytoma grade 3",
"Myofibroblastic tumour",
"Cellular fibroma",
"Myxoinflammatory fibroblastic sarcoma",
"Fibrosarcoma",
"Myxofibrosarcoma",
"Sclerosing epithelioid fibrosarcoma",
"Plexiform fibrohistiocytic tumour",
"Giant cell tumour of soft parts",
"Tenosynovial giant cell tumor",
"Tenosynovial giant cell tumor, diffuse",
"Malignant tenosynovial giant cell tumor",
"Epithelioid haemangioendothelioma",
"Angiosarcoma",
"Hemangioendothelioma",