-
Notifications
You must be signed in to change notification settings - Fork 162
Expand file tree
/
Copy pathenum.properties
More file actions
2842 lines (2586 loc) · 128 KB
/
enum.properties
File metadata and controls
2842 lines (2586 loc) · 128 KB
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
###############################################################################
# SORMAS® - Surveillance Outbreak Response Management & Analysis System
# Copyright © 2016-2022 Helmholtz-Zentrum für Infektionsforschung GmbH (HZI)
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
###############################################################################
# Enum captions and descriptions
# ActionContext
ActionContext.EVENT = Event
ActionMeasure.PROHIBITION_OF_ENTRY_AND_WORK_CASES = Prohibition of entry and work for case persons
ActionMeasure.SAMPLE_COLLECTION = Sample collection
ActionMeasure.FORWARDING_TO_NATIONAL_REFERENCE_CENTER = Forwarding to the national reference center
ActionMeasure.CONTACT_FOLLOW_UP = Active follow-up of contact persons
ActionMeasure.VERIFICATION_OF_VACCINATION_IMMUNIZATION = Verification of vaccination or immunization status
ActionMeasure.POST_EXPOSURE_PROPHYLAXIS_VACCINATION = Conduct post-exposure prophylaxis vaccination
ActionMeasure.CLOSURE_OF_FACILITY = Closure of facility
ActionMeasure.PROHIBITION_OF_ENTRY_AND_WORK_CONTACTS = Prohibition of entry and work for contact persons
ActionMeasure.POPULATION_INFORMATION = Population information about outbreak
ActionMeasure.OTHER = Other
# ActionPriority
ActionPriority.HIGH = High
ActionPriority.LOW = Low
ActionPriority.NORMAL = Normal
# ActionStatus
ActionStatus.DONE = Done
ActionStatus.PENDING = Pending
ActionStatus.IN_PROGRESS = In progress
# ActivityAsCaseType
ActivityAsCaseType.WORK=Work
ActivityAsCaseType.TRAVEL=Travel
ActivityAsCaseType.SPORT=Sport
ActivityAsCaseType.VISIT=Visit
ActivityAsCaseType.GATHERING=Gathering
ActivityAsCaseType.HABITATION=Habitation
ActivityAsCaseType.PERSONAL_SERVICES=Personal Services
ActivityAsCaseType.CARED_FOR=Cared for
ActivityAsCaseType.OTHER=Other
ActivityAsCaseType.UNKNOWN=Unknown
# AdditionalTestingStatus
AdditionalTestingStatus.NOT_REQUESTED = Not requested
AdditionalTestingStatus.REQUESTED = Requested
AdditionalTestingStatus.PERFORMED = Performed
# AdditionalTestType
AdditionalTestType.HAEMOGLOBINURIA = Haemoglobin in urine
AdditionalTestType.PROTEINURIA = Protein in urine
AdditionalTestType.HEMATURIA = Red blood cells in urine
AdditionalTestType.ARTERIAL_VENOUS_BLOOD_GAS = Arterial/venous blood gas
AdditionalTestType.ALT_SGPT = ALT/SGPT
AdditionalTestType.AST_SGOT = AST/SGOT
AdditionalTestType.CREATININE = Creatinine
AdditionalTestType.POTASSIUM = Potassium
AdditionalTestType.UREA = Urea
AdditionalTestType.HAEMOGLOBIN = Haemoglobin
AdditionalTestType.TOTAL_BILIRUBIN = Total bilirubin
AdditionalTestType.CONJ_BILIRUBIN = Conj. bilirubin
AdditionalTestType.WBC_COUNT = WBC count
AdditionalTestType.PLATELETS = Platelets
AdditionalTestType.PROTHROMBIN_TIME = Prothrombin time
AgeGroup.AGE_0_4 = 0--4
AgeGroup.AGE_5_9 = 5--9
AgeGroup.AGE_10_14 = 10--14
AgeGroup.AGE_15_19 = 15--19
AgeGroup.AGE_20_24 = 20--24
AgeGroup.AGE_25_29 = 25--29
AgeGroup.AGE_30_34 = 30--34
AgeGroup.AGE_35_39 = 35--59
AgeGroup.AGE_40_44 = 40--44
AgeGroup.AGE_45_49 = 45--49
AgeGroup.AGE_50_54 = 50--54
AgeGroup.AGE_55_59 = 55--59
AgeGroup.AGE_60_64 = 60--64
AgeGroup.AGE_65_69 = 65--69
AgeGroup.AGE_70_74 = 70--74
AgeGroup.AGE_75_79 = 75--79
AgeGroup.AGE_80_84 = 80--84
AgeGroup.AGE_80_PLUS = 80+
#AggregatedReportGroupingLevel
AggregateReportGroupingLevel.REGION = Region
AggregateReportGroupingLevel.DISTRICT = District
AggregateReportGroupingLevel.HEALTH_FACILITY = Facility
AggregateReportGroupingLevel.POINT_OF_ENTRY = Point of entry
# AnimalCondition
AnimalCondition.ALIVE = Alive
AnimalCondition.DEAD = Dead
AnimalCondition.PROCESSED = Processed
AnimalCondition.UNKNOWN = Unknown
AnimalContactType.BITE=Bite
AnimalContactType.TOUCH=Touch
AnimalContactType.SCRATCH=Scratch
AnimalContactType.LICK=Lick
AnimalContactType.OTHER=Other
# AnimalLocation
AnimalLocation.ZOO = Zoo
AnimalLocation.FARM = Farm
AnimalLocation.PARK = Park
AnimalLocation.FOREST = Forest
AnimalLocation.OTHER = Other
# ApproximateAgeType
ApproximateAgeType.DAYS = Days
ApproximateAgeType.MONTHS = Months
ApproximateAgeType.YEARS = Years
AreaType.URBAN = Urban
AreaType.RURAL = Rural
AreaType.UNKNOWN = Unknown
ArmedForcesRelationType.UNKNOWN = Unknown
ArmedForcesRelationType.NO_RELATION = No relation to armed forces
ArmedForcesRelationType.CIVIL = Civil person working for/accomodated in facility of armed forces
ArmedForcesRelationType.SOLDIER_OR_RELATIVE = Soldier, Relative
ArrivalOrDeparture.ARRIVAL = Arrival
ArrivalOrDeparture.DEPARTURE = Departure
ArrivalOrDeparture.UNKNOWN = Unknown
# BurialConductor
BurialConductor.FAMILY_COMMUNITY = Family/Community
BurialConductor.OUTBREAK_TEAM = Outbreak burial team
# CampaignPhase
CampaignPhase.PRE = Pre-Campaign
CampaignPhase.INTRA = Intra-Campaign
CampaignPhase.POST = Post-Campaign
# CampaignJurisdictionLevel
CampaignJurisdictionLevel.AREA = Area
CampaignJurisdictionLevel.REGION = Region
CampaignJurisdictionLevel.DISTRICT = District
CampaignJurisdictionLevel.COMMUNITY = Community
# CaseClassification
CaseClassification.CONFIRMED = Confirmed case
CaseClassification.CONFIRMED_NO_SYMPTOMS = Confirmed case with no symptoms
CaseClassification.CONFIRMED_UNKNOWN_SYMPTOMS = Confirmed case with unknown symptoms
CaseClassification.NO_CASE = Not a case
CaseClassification.NOT_CLASSIFIED = Not yet classified
CaseClassification.PROBABLE = Probable case
CaseClassification.SUSPECT = Possible case
CaseClassification.Short.CONFIRMED = Confirmed
CaseClassification.Short.CONFIRMED_NO_SYMPTOMS = Confirmed with symptoms
CaseClassification.Short.CONFIRMED_UNKNOWN_SYMPTOMS = Confirmed unknown symptoms
CaseClassification.Short.NO_CASE = No case
CaseClassification.Short.NOT_CLASSIFIED = Not classified
CaseClassification.Short.PROBABLE = Probable
CaseClassification.Short.SUSPECT = Suspect
# CaseIdentificationSource
CaseIdentificationSource.UNKNOWN = Unknown
CaseIdentificationSource.OUTBREAK_INVESTIGATION = Outbreak investigation
CaseIdentificationSource.CONTACT_TRACKING_APP = Contact tracking app
CaseIdentificationSource.SUSPICION_REPORT = Suspicion report
CaseIdentificationSource.CONTACT_TRACING = Contact tracing
CaseIdentificationSource.SCREENING = Screening
CaseIdentificationSource.OTHER = Other
ScreeningType.ON_HOSPITAL_ADMISSION = On admission in a hospital
ScreeningType.ON_CARE_HOME_ADMISSION = On admission in care home
ScreeningType.ON_ASYLUM_ADMISSION = On admission in an asylum seeking centre
ScreeningType.ON_ENTRY_FROM_RISK_AREA = On entry from risk area
ScreeningType.HEALTH_SECTOR_EMPLOYEE = Employee in health sector
ScreeningType.EDUCATIONAL_INSTITUTIONS = Educational institutions
ScreeningType.SELF_ARRANGED_TEST = Self arranged test
ScreeningType.SELF_CONDUCTED_TEST = Self conducted test
ScreeningType.OTHER = Other
CaseCountOrIncidence.CASE_COUNT = Case count
CaseCountOrIncidence.CASE_INCIDENCE = Case incidence
CaseJurisdictionType.RESPONSIBLE = Responsible jurisdiction
CaseJurisdictionType.PLACE_OF_STAY = Place of stay
CaseJurisdictionType.ALL = All
# CaseMeasure
CaseMeasure.CASE_COUNT = Case count
CaseMeasure.CASE_INCIDENCE = Case incidence proportion
CaseOrigin.IN_COUNTRY = In-Country
CaseOrigin.POINT_OF_ENTRY = Point of Entry
# CaseOutcome
CaseOutcome.DECEASED = Deceased
CaseOutcome.NO_OUTCOME = No Outcome Yet
CaseOutcome.RECOVERED = Recovered
CaseOutcome.UNKNOWN = Unknown
#CaseImportedStatus
CaseImportedStatus.IMPORTED_CASE=Imported case
CaseImportedStatus.IMPORT_RELATED_CASE=Import related case
CaseImportedStatus.UNKNOWN_IMPORTATION_STATUS=Unknown importation status
CaseImportedStatus.NOT_IMPORTED_CASE=Not imported (locally acquired) case
# CaseReferenceDefinition
CaseReferenceDefinition.FULFILLED = Fulfilled
CaseReferenceDefinition.NOT_FULFILLED = Not fulfilled
# CauseOfDeath
CauseOfDeath.EPIDEMIC_DISEASE = Epidemic disease
CauseOfDeath.OTHER_CAUSE = Other cause
## Confirmed case classification
CaseConfirmationBasis.CLINICAL_CONFIRMATION = Clinical confirmation
CaseConfirmationBasis.EPIDEMIOLOGICAL_CONFIRMATION = Epidemiological confirmation
CaseConfirmationBasis.LABORATORY_DIAGNOSTIC_CONFIRMATION = Laboratory diagnostic confirmation
# ClusterType
ClusterType.KINDERGARTEN_OR_CHILDCARE = Kindergarten or childcare
ClusterType.FAMILY = Family
ClusterType.MILITARY = Military
ClusterType.NOSOCOMIAL = Nosocomial (hospital)
ClusterType.SCHOOL = School
ClusterType.SPORTS_TEAM = Sports team
ClusterType.UNIVERSITY = University
ClusterType.OTHER = Other
CongenitalHeartDiseaseType.PDA = Patent ductus arteriosus (PDA)
CongenitalHeartDiseaseType.PPS = Peripheral pulmonary stenosis (PPS)
CongenitalHeartDiseaseType.VSD = Ventricular septal defect (VSD)
CongenitalHeartDiseaseType.OTHER = Other heart defect
# ContactCategory
ContactCategory.HIGH_RISK = High risk contact
ContactCategory.HIGH_RISK_MED = High risk medical contact
ContactCategory.MEDIUM_RISK_MED = Medium risk medical contact
ContactCategory.LOW_RISK = Low risk contact
ContactCategory.NO_RISK = No risk contact
# ContactClassification
ContactClassification.CONFIRMED = Confirmed contact
ContactClassification.NO_CONTACT = Not a contact
ContactClassification.UNCONFIRMED = Unconfirmed contact
ContactClassification.Short.CONFIRMED = Confirmed
ContactClassification.Short.NO_CONTACT = No contact
ContactClassification.Short.UNCONFIRMED = Unconfirmed
# ContactDateType
ContactDateType.REPORT_DATE = Report date
ContactDateType.LAST_CONTACT_DATE = Last contact date
ContactsEpiCurveMode.FOLLOW_UP_STATUS = Follow-up status
ContactsEpiCurveMode.CONTACT_CLASSIFICATION = Contact classification
ContactsEpiCurveMode.FOLLOW_UP_UNTIL = Follow-up until
# ContactIdentificationSource
ContactIdentificationSource.CASE_PERSON = Case person
ContactIdentificationSource.CONTACT_PERSON = Contact person
ContactIdentificationSource.TRACING_APP = Proximity tracing app
ContactIdentificationSource.OTHER = Other
ContactIdentificationSource.UNKNOWN = Unknown
# ContactProximity
ContactProximity.AEROSOL = Persons exposed to aerosol producing activities
ContactProximity.AIRPLANE = Airplane, sitting up to two rows in front or behind the source case
ContactProximity.CLOSE_CONTACT = Was in close proximity (1 meter) with source case
ContactProximity.CLOTHES_OR_OTHER = Manipulation of clothes or other objects of source case
ContactProximity.FACE_TO_FACE_LONG = Face-to-face contact of at least 15 minutes
ContactProximity.FACE_TO_FACE_SHORT = Face-to-face contact of less than 15 minutes
ContactProximity.MEDICAL_DISTANT = Medical personnel at safe proximity (> 2 meter), without direct contact with secretions or excretions of the patient and without aerosol exposure
ContactProximity.MEDICAL_SAME_ROOM = Medical personnel that was in same room or house with source case
ContactProximity.MEDICAL_SAFE = Medical personnel at safe proximity (> 2 meter) or with protective equipment
ContactProximity.MEDICAL_UNSAFE = Medical personnel with a high risk of exposure, e.g. unprotected relevant exposure to secretions, exposure to aerosols from COVID-19 cases
ContactProximity.MEDICAL_LIMITED = Medical personnel with limited exposure, e.g. with contact < 2m to COVID-19 cases without protective equipment, ≥ 15min face-to-face contact (without exposure as described under Ia)
ContactProximity.PHYSICAL_CONTACT = Direct physical contact with source case
ContactProximity.SAME_ROOM = Was in same room or house with source case
ContactProximity.TOUCHED_FLUID = Touched fluid of source case
# ContactRelation
ContactRelation.FAMILY_MEMBER_OR_FRIEND = Other family member or friend
ContactRelation.SAME_ENVIRONMENT = Work in the same environment
ContactRelation.SAME_HOUSEHOLD = Live in the same household
ContactRelation.MEDICAL_CARE = Provided medical care for the case
ContactRelation.OTHER = Other
# ContactStatus
ContactStatus.ACTIVE = Active contact
ContactStatus.CONVERTED = Converted to case
ContactStatus.DROPPED = Dropped
ConveyanceType.CAR = Car
ConveyanceType.BUS = Bus
ConveyanceType.MOTORBIKE = Motorbike
ConveyanceType.OTHER = Other
CustomizableEnumType.DISEASE_VARIANT = Disease variant
CustomizableEnumType.SPECIFIC_EVENT_RISK = Specific event risk
CustomizableEnumType.OCCUPATION_TYPE = Occupation type
CustomizableEnumType.PATHOGEN = Pathogen
#ComplianceWithTreatment
ComplianceWithTreatment.NO_COMPLIANCE = No compliance
ComplianceWithTreatment.TREATMENT_COMPLETED = Treatment completed
ComplianceWithTreatment.TREATMENT_FAILED = Treatment failed
ComplianceWithTreatment.TREATMENT_NOT_COMPLETED = Treatment not completed
ComplianceWithTreatment.UNKNOWN = Unknown
ComplianceWithTreatment.NOT_APPLICABLE = Not applicable
# DashboardType
DashboardType.CONTACTS = Contacts
DashboardType.SURVEILLANCE = Surveillance
DashboardType.CAMPAIGNS = Campaigns
DashboardType.ADVERSE_EVENTS = Adverse Events
DashboardType.GIS = Geographical Analysis
# DatabaseTable
DatabaseTable.ACTIONS = Actions
DatabaseTable.CASES = Cases
DatabaseTable.SYMPTOMS = Symptoms
DatabaseTable.CLINICAL_COURSES = Clinical courses
DatabaseTable.CLINICAL_VISITS = Clinical visits
DatabaseTable.COMMUNITIES = Communities
DatabaseTable.CONTACTS = Contacts
DatabaseTable.CONTACTS_VISITS = Contacts → Visits
DatabaseTable.CONTINENTS = Continents
DatabaseTable.SUBCONTINENTS = Subcontinents
DatabaseTable.AREAS = Areas
DatabaseTable.COUNTRIES = Countries
DatabaseTable.CUSTOMIZABLE_ENUM_VALUES = Customizable enum values
DatabaseTable.DISTRICTS = Districts
DatabaseTable.EPIDATA = Epidemiological data
DatabaseTable.EVENTS = Events
DatabaseTable.EVENTS_EVENTGROUPS = Events → Event groups
DatabaseTable.EVENTGROUPS = Event groups
DatabaseTable.EVENTPARTICIPANTS = Event participants
DatabaseTable.EXPOSURES = Exposures
DatabaseTable.ACTIVITIES_AS_CASE = Activities as case
DatabaseTable.FACILITIES = Facilities
DatabaseTable.POINTS_OF_ENTRY = Points of entry
DatabaseTable.HEALTH_CONDITIONS = Health conditions
DatabaseTable.HOSPITALIZATIONS = Hospitalizations
DatabaseTable.IMMUNIZATIONS = Immunizations
DatabaseTable.LOCATIONS = Locations
DatabaseTable.OUTBREAKS = Outbreaks
DatabaseTable.PERSONS = Persons
DatabaseTable.PERSON_CONTACT_DETAILS = Person contact details
DatabaseTable.PERSON_LOCATIONS = Person locations
DatabaseTable.PRESCRIPTIONS = Prescriptions
DatabaseTable.PREVIOUSHOSPITALIZATIONS = Previous hospitalizations
DatabaseTable.REGIONS = Regions
DatabaseTable.SAMPLES = Samples
DatabaseTable.PATHOGEN_TESTS = Pathogen tests
DatabaseTable.ADDITIONAL_TESTS = Additional tests
DatabaseTable.TASKS = Tasks
DatabaseTable.TASK_OBSERVER = Task observer
DatabaseTable.THERAPIES = Therapies
DatabaseTable.TRAVEL_ENTRIES = Travel entries
DatabaseTable.TREATMENTS = Treatments
DatabaseTable.USERS = Users
DatabaseTable.USER_ROLES = User roles
DatabaseTable.USERS_USERROLES = Users → User roles
DatabaseTable.USERROLES_USERRIGHTS = User roles → User rights
DatabaseTable.USERROLES_EMAILNOTIFICATIONTYPES = User roles → Email notification types
DatabaseTable.USERROLES_SMSNOTIFICATIONTYPES = User roles → SMS notification types
DatabaseTable.VACCINATIONS = Vaccinations
DatabaseTable.VISITS = Visits
DatabaseTable.WEEKLYREPORTS = Weekly reports
DatabaseTable.WEEKLYREPORTENTRIES = Weekly report entries
DatabaseTable.PORT_HEALTH_INFO = Port health information
DatabaseTable.MATERNAL_HISTORIES = Maternal histories
DatabaseTable.EXTERNAL_MESSAGES = Messages
DatabaseTable.SAMPLE_REPORTS = Sample reports
DatabaseTable.TEST_REPORTS = Test reports
DatabaseTable.SORMAS_TO_SORMAS_ORIGIN_INFO = SORMAS 2 SORMAS origin information
DatabaseTable.SORMAS_TO_SORMAS_SHARE_INFO = SORMAS 2 SORMAS share information
DatabaseTable.SORMAS_TO_SORMAS_SHARE_REQUESTS = SORMAS 2 SORMAS share requests
DatabaseTable.SHARE_REQUEST_INFO = SORMAS 2 SORMAS share request information
DatabaseTable.SHARE_REQUEST_INFO_SHARE_INFO = SORMAS 2 SORMAS share request information → Share Info
DatabaseTable.EXTERNAL_SHARE_INFO = External share information
DatabaseTable.CAMPAIGNS = Campaigns
DatabaseTable.CAMPAIGN_CAMPAIGNFORMMETA = Campaigns → Campaign Form Meta
DatabaseTable.CAMPAIGN_FORM_META = Campaign form meta
DatabaseTable.CAMPAIGN_FORM_DATA = Campaign form data
DatabaseTable.CAMPAIGN_DIAGRAM_DEFINITIONS = Campaign diagram definitions
DatabaseTable.POPULATION_DATA = Population data
DatabaseTable.SURVEILLANCE_REPORTS = Surveillance reports
DatabaseTable.AGGREGATE_REPORTS = Aggregate reports
DatabaseTable.WEEKLY_REPORTS = Weekly reports
DatabaseTable.WEEKLY_REPORT_ENTRIES = Weekly report entries
DatabaseTable.DOCUMENTS = Documents
DatabaseTable.EXPORT_CONFIGURATIONS = Export configurations
DatabaseTable.FEATURE_CONFIGURATIONS = Feature configurations
DatabaseTable.DISEASE_CONFIGURATIONS = Disease configurations
DatabaseTable.DELETION_CONFIGURATIONS = Deletion configurations
# DateFilterOption
DateFilterOption.DATE = By Date
DateFilterOption.EPI_WEEK = By Epi Week
# DeathPlaceType
DeathPlaceType.COMMUNITY = Community
DeathPlaceType.HOSPITAL = Hospital
DeathPlaceType.OTHER = Other
# DefaultUserRole
DefaultUserRole.ADMIN = Admin
DefaultUserRole.CASE_OFFICER = Case Officer
DefaultUserRole.CASE_SUPERVISOR = Clinician
DefaultUserRole.COMMUNITY_INFORMANT = Community Informant
DefaultUserRole.COMMUNITY_OFFICER = Community Officer
DefaultUserRole.CONTACT_OFFICER = Contact Officer
DefaultUserRole.CONTACT_SUPERVISOR = Contact Supervisor
DefaultUserRole.DISTRICT_OBSERVER = District Observer
DefaultUserRole.EVENT_OFFICER = Event Officer
DefaultUserRole.EXTERNAL_LAB_USER = External Lab Officer
DefaultUserRole.HOSPITAL_INFORMANT = Hospital Informant
DefaultUserRole.IMPORT_USER = Import User
DefaultUserRole.LAB_USER = Lab Officer
DefaultUserRole.NATIONAL_CLINICIAN = National Clinician
DefaultUserRole.NATIONAL_OBSERVER = National Observer
DefaultUserRole.NATIONAL_USER = National User
DefaultUserRole.POE_INFORMANT = POE Informant
DefaultUserRole.POE_NATIONAL_USER = POE National User
DefaultUserRole.POE_SUPERVISOR = POE Supervisor
DefaultUserRole.STATE_OBSERVER = Region Observer
DefaultUserRole.SURVEILLANCE_OFFICER = Surveillance Officer
DefaultUserRole.SURVEILLANCE_SUPERVISOR = Surveillance Supervisor
DefaultUserRole.REST_EXTERNAL_VISITS_USER = External Visits User
DefaultUserRole.SORMAS_TO_SORMAS_CLIENT = Sormas to Sormas Client
DefaultUserRole.ADMIN_SUPERVISOR = Admin Surveillance Supervisor
DefaultUserRole.BAG_USER = BAG User
DefaultUserRole.ENVIRONMENTAL_SURVEILLANCE_USER = Environmental Surveillance User
DefaultUserRole.Short.ADMIN = Admin
DefaultUserRole.Short.CASE_OFFICER = CaseOff
DefaultUserRole.Short.CASE_SUPERVISOR = Clinician
DefaultUserRole.Short.CONTACT_OFFICER = ContOff
DefaultUserRole.Short.CONTACT_SUPERVISOR = ContSup
DefaultUserRole.Short.COMMUNITY_INFORMANT = CommInf
DefaultUserRole.Short.DISTRICT_OBSERVER = DistObs
DefaultUserRole.Short.EVENT_OFFICER = EventOff
DefaultUserRole.Short.EXTERNAL_LAB_USER = ExtLabOff
DefaultUserRole.Short.HOSPITAL_INFORMANT = HospInf
DefaultUserRole.Short.IMPORT_USER = ImpUser
DefaultUserRole.Short.LAB_USER = LabOff
DefaultUserRole.Short.NATIONAL_CLINICIAN = NatClin
DefaultUserRole.Short.NATIONAL_OBSERVER = NatObs
DefaultUserRole.Short.NATIONAL_USER = NatUser
DefaultUserRole.Short.POE_INFORMANT = POEInf
DefaultUserRole.Short.POE_NATIONAL_USER = POENat
DefaultUserRole.Short.POE_SUPERVISOR = POESup
DefaultUserRole.Short.STATE_OBSERVER = RegObs
DefaultUserRole.Short.SURVEILLANCE_SUPERVISOR = SurvSup
DefaultUserRole.Short.ADMIN_SUPERVISOR = AdminSup
DefaultUserRole.Short.SURVEILLANCE_OFFICER = SurvOff
DefaultUserRole.Short.REST_EXTERNAL_VISITS_USER = ExtVis
DefaultUserRole.Short.SORMAS_TO_SORMAS_CLIENT = SormasToSormas
DefaultUserRole.Short.BAG_USER = BAG
DefaultUserRole.Short.ENVIRONMENTAL_SURVEILLANCE_USER = EnvSurv
#DeleteReason
DeletionReason.GDPR = Deletion request by affected person according to GDPR
DeletionReason.DELETION_REQUEST = Deletion request by another authority
DeletionReason.CREATED_WITH_NO_LEGAL_REASON = Entity created without legal reason
DeletionReason.TRANSFERRED_RESPONSIBILITY = Responsibility transferred to another authority
DeletionReason.DUPLICATE_ENTRIES = Deletion of duplicate entries
DeletionReason.OTHER_REASON = Other reason
# DengueFeverType
DengueFeverType.DENGUE_FEVER = Dengue Fever
DengueFeverType.DENGUE_HEMORRHAGIC_FEVER = Dengue Hemorrhagic Fever
DengueFeverType.DENUGE_SHOCK_SYNDROME = Denuge Shock Syndrome
# HumanRabiesType
RabiesType.FURIOUS_RABIES = Furious Rabies
RabiesType.PARALYTIC_RABIES = Paralytic Rabies
# Disease
Disease.AFP = Acute Flaccid Paralysis
Disease.CHOLERA = Cholera
Disease.CONGENITAL_RUBELLA = Congenital Rubella
Disease.CSM = Meningitis (CSM)
Disease.DENGUE = Dengue Fever
Disease.EVD = Ebola Virus Disease
Disease.GUINEA_WORM = Guinea Worm
Disease.LASSA = Lassa
Disease.MEASLES = Measles
Disease.MONKEYPOX = Mpox
Disease.NEW_INFLUENZA = Influenza (New subtype)
Disease.UNDEFINED = Not Yet Defined
Disease.OTHER = Other Epidemic Disease
Disease.PLAGUE = Plague
Disease.POLIO = Poliomyelitis
Disease.UNSPECIFIED_VHF = Unspecified VHF
Disease.WEST_NILE_FEVER = West Nile Fever
Disease.YELLOW_FEVER = Yellow Fever
Disease.RABIES = Human Rabies
Disease.ANTHRAX = Anthrax
Disease.PNEUMONIA = Pneumonia
Disease.MALARIA = Malaria
Disease.TYPHOID_FEVER = Typhoid Fever
Disease.ACUTE_VIRAL_HEPATITIS = Acute Viral Hepatitis
Disease.NON_NEONATAL_TETANUS = Non-Neonatal Tetanus
Disease.HIV = HIV
Disease.SCHISTOSOMIASIS = Schistosomiasis
Disease.SOIL_TRANSMITTED_HELMINTHS = Soil-Transmitted Helminths
Disease.TRYPANOSOMIASIS = Trypanosomiasis
Disease.DIARRHEA_DEHYDRATION = Diarrhea w/ Dehydration (< 5)
Disease.DIARRHEA_BLOOD = Diarrhea w/ Blood (Shigella)
Disease.SNAKE_BITE = Snake Bite
Disease.RUBELLA = Rubella
Disease.TUBERCULOSIS = Tuberculosis
Disease.LATENT_TUBERCULOSIS = Latent Tuberculosis
Disease.LEPROSY = Leprosy
Disease.LYMPHATIC_FILARIASIS = Lymphatic Filariasis
Disease.BURULI_ULCER = Buruli Ulcer
Disease.PERTUSSIS = Pertussis
Disease.NEONATAL_TETANUS = Neonatal Tetanus
Disease.ONCHOCERCIASIS = Onchocerciasis
Disease.DIPHTERIA = Diphteria
Disease.TRACHOMA = Trachoma
Disease.YAWS_ENDEMIC_SYPHILIS = Yaws and Endemic Syphilis
Disease.MATERNAL_DEATHS = Maternal Deaths
Disease.PERINATAL_DEATHS = Perinatal Deaths
Disease.CORONAVIRUS = COVID-19
Disease.INFLUENZA=Influenza
Disease.INFLUENZA_A = Influenza A
Disease.INFLUENZA_B = Influenza B
Disease.H_METAPNEUMOVIRUS = H.metapneumovirus
Disease.RESPIRATORY_SYNCYTIAL_VIRUS = Respiratory syncytial virus (RSV)
Disease.PARAINFLUENZA_1_4 = Parainfluenza (1-4)
Disease.ADENOVIRUS = Adenovirus
Disease.RHINOVIRUS = Rhinovirus
Disease.ENTEROVIRUS = Enterovirus
Disease.M_PNEUMONIAE = M.pneumoniae
Disease.C_PNEUMONIAE = C.pneumoniae
Disease.ARI = ARI (Acute Respiratory Infections)
Disease.CHIKUNGUNYA = Chikungunya
Disease.INVASIVE_PNEUMOCOCCAL_INFECTION = Invasive Pneumococcal Infection
Disease.INVASIVE_MENINGOCOCCAL_INFECTION = Invasive Meningococcal Infection
Disease.POST_IMMUNIZATION_ADVERSE_EVENTS_MILD = Post-immunization adverse events mild
Disease.POST_IMMUNIZATION_ADVERSE_EVENTS_SEVERE = Post-immunization adverse events severe
Disease.FHA = FHA (Functional Hypothalamic Amenorrhea)
Disease.GIARDIASIS=Giardiasis
Disease.CRYPTOSPORIDIOSIS=Cryptosporidiosis
Disease.Short.AFP = AFP
Disease.Short.CHOLERA = Cholera
Disease.Short.CONGENITAL_RUBELLA = CRS
Disease.Short.CSM = Meningitis
Disease.Short.DENGUE = Dengue
Disease.Short.EVD = EVD
Disease.Short.GUINEA_WORM = Guinea Worm
Disease.Short.LASSA = Lassa
Disease.Short.MEASLES = Measles
Disease.Short.MONKEYPOX = Mpox
Disease.Short.NEW_INFLUENZA = New Flu
Disease.Short.UNDEFINED = Undefined
Disease.Short.OTHER = Other
Disease.Short.PLAGUE = Plague
Disease.Short.POLIO = Polio
Disease.Short.UNSPECIFIED_VHF = VHF
Disease.Short.WEST_NILE_FEVER = West Nile Fever
Disease.Short.YELLOW_FEVER = Yellow Fever
Disease.Short.RABIES = Rabies
Disease.Short.ANTHRAX = Anthrax
Disease.Short.PNEUMONIA = Pneumonia
Disease.Short.MALARIA = Malaria
Disease.Short.TYPHOID_FEVER = Typhoid Fever
Disease.Short.ACUTE_VIRAL_HEPATITIS = Acute Viral Hepatitis
Disease.Short.NON_NEONATAL_TETANUS = Non-Neonatal Tetanus
Disease.Short.HIV = HIV
Disease.Short.SCHISTOSOMIASIS = Schistosomiasis
Disease.Short.SOIL_TRANSMITTED_HELMINTHS = Soil-Transmitted Helminths
Disease.Short.TRYPANOSOMIASIS = Trypanosomiasis
Disease.Short.DIARRHEA_DEHYDRATION = Diarrhea w/ Dehydration (< 5)
Disease.Short.DIARRHEA_BLOOD = Diarrhea w/ Blood (Shigella)
Disease.Short.SNAKE_BITE = Snake Bite
Disease.Short.RUBELLA = Rubella
Disease.Short.TUBERCULOSIS = TB
Disease.Short.LATENT_TUBERCULOSIS = Latent Tuberculosis
Disease.Short.LEPROSY = Leprosy
Disease.Short.LYMPHATIC_FILARIASIS = Lymphatic Filariasis
Disease.Short.BURULI_ULCER = Buruli Ulcer
Disease.Short.PERTUSSIS = Pertussis
Disease.Short.NEONATAL_TETANUS = Neonatal Tetanus
Disease.Short.ONCHOCERCIASIS = Onchocerciasis
Disease.Short.DIPHTERIA = Diphteria
Disease.Short.TRACHOMA = Trachoma
Disease.Short.YAWS_ENDEMIC_SYPHILIS = Yaws and Endemic Syphilis
Disease.Short.MATERNAL_DEATHS = Maternal Deaths
Disease.Short.PERINATAL_DEATHS = Perinatal Deaths
Disease.Short.CORONAVIRUS = COVID-19
Disease.Short.INFLUENZA_A = Influenza A
Disease.Short.INFLUENZA_B = Influenza B
Disease.Short.H_METAPNEUMOVIRUS = H.metapneumovirus
Disease.Short.RESPIRATORY_SYNCYTIAL_VIRUS = RSV
Disease.Short.PARAINFLUENZA_1_4 = Parainfluenza
Disease.Short.ADENOVIRUS = Adenovirus
Disease.Short.RHINOVIRUS = Rhinovirus
Disease.Short.ENTEROVIRUS = Enterovirus
Disease.Short.M_PNEUMONIAE = M.pneumoniae
Disease.Short.C_PNEUMONIAE = C.pneumoniae
Disease.Short.ARI = ARI
Disease.Short.CHIKUNGUNYA = Chikungunya
Disease.Short.POST_IMMUNIZATION_ADVERSE_EVENTS_MILD = Post-immunization adverse events mild
Disease.Short.POST_IMMUNIZATION_ADVERSE_EVENTS_SEVERE = Post-immunization adverse events severe
Disease.Short.FHA = FHA
Disease.Short.INVASIVE_PNEUMOCOCCAL_INFECTION = IPI
Disease.Short.INVASIVE_MENINGOCOCCAL_INFECTION = IMI
Disease.Short.GIARDIASIS=Giardia
Disease.Short.CRYPTOSPORIDIOSIS=Cryptosporidiosis
DiseaseTransmissionMode.HUMAN_TO_HUMAN = Primarily via human to human
DiseaseTransmissionMode.ANIMAL = Primarily via animal
DiseaseTransmissionMode.ENVIRONMENT = Primarily via environment
DiseaseTransmissionMode.FOOD = Primarily via food
DiseaseTransmissionMode.VECTOR_BORNE = Primarily vector-borne
DiseaseTransmissionMode.UNKNOWN = Unknown
# DocumentRelatedEntityType
DocumentRelatedEntityType.ACTION = Action
DocumentRelatedEntityType.CASE = Case
DocumentRelatedEntityType.CONTACT = Contact
DocumentRelatedEntityType.EVENT = Event
DocumentRelatedEntityType.TRAVEL_ENTRY = Travel Entry
# DocumentWorkflow
DocumentWorkflow.QUARANTINE_ORDER_CASE = Document Templates Case
DocumentWorkflow.QUARANTINE_ORDER_CONTACT = Document Templates Contact
DocumentWorkflow.QUARANTINE_ORDER_EVENT_PARTICIPANT = Document Templates Event Participant
DocumentWorkflow.QUARANTINE_ORDER_TRAVEL_ENTRY = Document Templates Travel Entry
DocumentWorkflow.EVENT_HANDOUT = Templates Event Handout
DocumentWorkflow.CASE_EMAIL = Case email templates
DocumentWorkflow.CONTACT_EMAIL = Contact email templates
DocumentWorkflow.EVENT_PARTICIPANT_EMAIL = Event participant email templates
DocumentWorkflow.TRAVEL_ENTRY_EMAIL = Travel entry email templates
DocumentWorkflow.SURVEY_DOCUMENT = Survey request document template
DocumentWorkflow.SURVEY_EMAIL = Survey request email template
EducationType.NONE = No education
EducationType.NURSERY = Nursery
EducationType.PRIMARY = Primary
EducationType.SECONDARY = Secondary
EducationType.TERTIARY = Tertiary
EducationType.OTHER = Other
EntityRelevanceStatus.ACTIVE = Active
EntityRelevanceStatus.ARCHIVED = Archived
EntityRelevanceStatus.ALL = All
# EnvironmentInfrastructureDetails
EnvironmentInfrastructureDetails.SEPTIC_TANK = Septic tank
EnvironmentInfrastructureDetails.LATRIN = Latrin
EnvironmentInfrastructureDetails.TOILET = Toilet
EnvironmentInfrastructureDetails.MANHOLE = Manhole
EnvironmentInfrastructureDetails.WELLS = Wells
EnvironmentInfrastructureDetails.SURFACE_WATER = Surface water
EnvironmentInfrastructureDetails.OPEN_DRAIN = Open drain
EnvironmentInfrastructureDetails.OTHER = Other
EnvironmentInfrastructureDetails.UNKNOWN = Unknown
# EnvironmentMedia
EnvironmentMedia.WATER = Water
EnvironmentMedia.SOIL_ROCK = Soil or rock
EnvironmentMedia.AIR = Air
EnvironmentMedia.BIOTA = Biota
EnvironmentMedia.VECTORS = Vectors
# EpiCurveGrouping
EpiCurveGrouping.DAY = Day
EpiCurveGrouping.MONTH = Month
EpiCurveGrouping.WEEK = Epi Week
# EpiCurveContactsMode
EpiCurveContactsMode.CONTACT_CLASSIFICATION = Contact Classification
EpiCurveContactsMode.FOLLOW_UP_STATUS = Follow-Up Status
EpiCurveContactsMode.FOLLOW_UP_UNTIL = Follow-Up Until
# EpiCurveSurveillanceMode
EpiCurveSurveillanceMode.ALIVE_OR_DEAD = Alive or dead
EpiCurveSurveillanceMode.CASE_STATUS = Case status
# EpiWeekFilterOption
EpiWeekFilterOption.LAST_WEEK = Last Week
EpiWeekFilterOption.SPECIFY_WEEK = Specify
EpiWeekFilterOption.THIS_WEEK = This Week
# EventContactCountMethod
EventContactCountMethod.ALL = Count all contacts
EventContactCountMethod.SOURCE_CASE_IN_EVENT = Only count contacts with source case in event
EventContactCountMethod.BOTH_METHODS = Show both methods
# EventInvestigationStatus
EventInvestigationStatus.DISCARDED=Investigation discarded
EventInvestigationStatus.DONE=Investigation done
EventInvestigationStatus.ONGOING=Ongoing Investigation
EventInvestigationStatus.PENDING=Investigation pending
EventInvestigationStatus.Short.DISCARDED=Discarded
EventInvestigationStatus.Short.DONE=Done
EventInvestigationStatus.Short.ONGOING=Ongoing
EventInvestigationStatus.Short.PENDING=Pending
# EventStatus
EventStatus.EVENT = Event
EventStatus.DROPPED = Dropped
EventStatus.SIGNAL = Signal
EventStatus.SCREENING = Screening
EventStatus.CLUSTER = Cluster
EventStatus.Short.EVENT = Event
EventStatus.Short.DROPPED = Dropped
EventStatus.Short.SIGNAL = Signal
EventStatus.Short.SCREENING = Screening
EventStatus.Short.CLUSTER = Cluster
# EventManagementStatus
EventManagementStatus.PENDING = Pending
EventManagementStatus.ONGOING = Ongoing
EventManagementStatus.DONE = Done
EventManagementStatus.CLOSED = Closed
# EventIndentificationSource
EventIdentificationSource.UNKNOWN = Unknown
EventIdentificationSource.BACKWARD_TRACING = Backward-tracing
EventIdentificationSource.FORWARD_TRACING = Forward-tracing
ExportGroupType.CORE = Core Data
ExportGroupType.SENSITIVE = Sensitive Person Data
ExportGroupType.PERSON = General Person Data
ExportGroupType.HOSPITALIZATION = Hospitalization Data
ExportGroupType.EPIDEMIOLOGICAL = Epidemiological Data
ExportGroupType.VACCINATION = Vaccination Data
ExportGroupType.FOLLOW_UP = Follow-up Data
ExportGroupType.ADDITIONAL = Additional Data
ExportGroupType.LOCATION = Location Data
ExportGroupType.EVENT = Event Data
ExportGroupType.EVENT_GROUP = Event Group Data
ExportGroupType.EVENT_SOURCE = Event Source Data
ExportGroupType.CLINICAL_COURSE = Clinical Course Data
ExportGroupType.THERAPY = Therapy Data
EventSourceType.NOT_APPLICABLE = Not applicable
EventSourceType.MEDIA_NEWS = Media/News
EventSourceType.HOTLINE_PERSON = Hotline/Person
EventSourceType.MATHEMATICAL_MODEL = Mathematical model
EventSourceType.INSTITUTIONAL_PARTNER = Institutional partner
InstitutionalPartnerType.HEALTH_INSURANCE = Health insurance
InstitutionalPartnerType.TERRITORIAL_COMMUNITIES = Territorial communities
InstitutionalPartnerType.NATIONAL_EDUCATION = National education
InstitutionalPartnerType.HEALTH_ESTABLISHMENTS = Health establishments
InstitutionalPartnerType.MEDICO_SOCIAL_ESTABLISHMENTS = Medico-social establishments
InstitutionalPartnerType.OTHER = Other
ExposureType.WORK=Work
ExposureType.TRAVEL=Travel
ExposureType.SPORT=Sport
ExposureType.VISIT=Visit
ExposureType.GATHERING=Gathering
ExposureType.HABITATION=Habitation
ExposureType.PERSONAL_SERVICES=Personal Services
ExposureType.CHILDCARE_FACILITY=Childcare Facility
ExposureType.BURIAL=Burial
ExposureType.ANIMAL_CONTACT=Animal Contact
ExposureType.OTHER=Other
ExposureType.UNKNOWN=Unknown
ExposureType.RECREATIONAL_WATER=Exposure to recreational water
ExposureType.FOOD=Exposure to food
ExposureType.SEXUAL_CONTACT=Sexual exposure
ExposureType.SYMPTOMATIC_CONTACT=Contact with symptomatic individuals
ExposureType.FLOOD_EXPOSURE=Flooded area
# FacilityType
FacilityType.ASSOCIATION=Association, club
FacilityType.BAR=Bar
FacilityType.BUSINESS=Business
FacilityType.CAMPSITE=Campsite
FacilityType.CANTINE=Cantine
FacilityType.CHILDRENS_DAY_CARE=Children's day care
FacilityType.CHILDRENS_HOME=Children's home
FacilityType.CORRECTIONAL_FACILITY=Correctional facility
FacilityType.CRUISE_SHIP=Cruise ship
FacilityType.ELDERLY_DAY_CARE=Elderly day care
FacilityType.EVENT_VENUE=Event venue
FacilityType.FOOD_STALL=Food stall
FacilityType.HOLIDAY_CAMP=Holiday camp
FacilityType.HOMELESS_SHELTER=Homeless shelter
FacilityType.HOSPITAL=Hospital
FacilityType.HOSTEL=Hostel, dormitory
FacilityType.HOTEL=Hotel, B&B, inn, lodge
FacilityType.KINDERGARTEN=Kindergarten/After school care
FacilityType.LABORATORY=Laboratory
FacilityType.MASS_ACCOMMODATION=Mass accommodation (e.g. guest and harvest workers)
FacilityType.MILITARY_BARRACKS=Military barracks
FacilityType.MOBILE_NURSING_SERVICE=Mobile nursing service
FacilityType.NIGHT_CLUB=Night club, dance club, discotheque
FacilityType.OTHER_ACCOMMODATION=Other Accommodation
FacilityType.OTHER_CARE_FACILITY=Other Care facility
FacilityType.OTHER_CATERING_OUTLET=Other Catering outlet
FacilityType.OTHER_EDUCATIONAL_FACILITY=Other Educational facility
FacilityType.OTHER_LEISURE_FACILITY=Other Leisure facility
FacilityType.OTHER_MEDICAL_FACILITY=Other Medical facility
FacilityType.OTHER_RESIDENCE=Other Residence
FacilityType.OTHER_WORKING_PLACE=Other Working place/company
FacilityType.OTHER_COMMERCE=Other Commerce
FacilityType.OUTPATIENT_TREATMENT_FACILITY=Outpatient treatment facility
FacilityType.PLACE_OF_WORSHIP=Place of worship
FacilityType.PUBLIC_PLACE=Public place/playground
FacilityType.REFUGEE_ACCOMMODATION=Refugee accommodation/initial reception facility
FacilityType.REHAB_FACILITY=Rehab facility
FacilityType.RESTAURANT=Restaurant/tavern
FacilityType.RETIREMENT_HOME=Retirement home
FacilityType.SCHOOL=School
FacilityType.SWIMMING_POOL=Swimming pool
FacilityType.THEATER=Theater/cinema
FacilityType.UNIVERSITY=University
FacilityType.ZOO=Zoological garden, animal park
FacilityType.RETAIL = Retail
FacilityType.WHOLESALE = Wholesale
FacilityType.AMBULATORY_SURGERY_FACILITY = Ambulatory surgery facility
FacilityType.DIALYSIS_FACILITY = Dialysis facility
FacilityType.DAY_HOSPITAL = Day hospital
FacilityType.MATERNITY_FACILITY = Maternity facility
FacilityType.MEDICAL_PRACTICE = Medical practice
FacilityType.DENTAL_PRACTICE = Dental practice
FacilityType.OTHER_MEDICAL_PRACTICE = Other medical practice
FacilityType.DIAGNOSTIC_PREVENTATIVE_THERAPEUTIC_FACILITY = Diagnostic, preventative, therapeutic facility
FacilityType.EMERGENCY_MEDICAL_SERVICES = Emergency medical services
FacilityType.ELDERLY_CARE_FACILITY = Elderly care facility
FacilityType.DISABLED_PERSON_HABITATION = Disabled person habitation
FacilityType.CARE_RECIPIENT_HABITATION = Care recipient habitation
FacilityType.VISITING_AMBULATORY_AID = Visiting ambulatory aid
FacilityType.AFTER_SCHOOL = After school facility
#FacilityTypeGroup
FacilityTypeGroup.ACCOMMODATION=Accommodation
FacilityTypeGroup.CARE_FACILITY=Care facility
FacilityTypeGroup.CATERING_OUTLET=Catering outlet
FacilityTypeGroup.EDUCATIONAL_FACILITY=Educational facility
FacilityTypeGroup.LEISURE_FACILITY=Leisure facility
FacilityTypeGroup.MEDICAL_FACILITY=Medical facility
FacilityTypeGroup.RESIDENCE=Residence
FacilityTypeGroup.WORKING_PLACE=Working place/company
FacilityTypeGroup.COMMERCE=Commerce
# FollowUpStartDateType
FollowUpStartDateType.SYMPTOM_ONSET_DATE=symptom onset date
FollowUpStartDateType.LAST_CONTACT_DATE=last contact date
FollowUpStartDateType.EARLIEST_SAMPLE_COLLECTION_DATE=earliest sample collection date
FollowUpStartDateType.REPORT_DATE=report date
# FollowUpStatus
FollowUpStatus.CANCELED=Canceled follow-up
FollowUpStatus.COMPLETED=Completed follow-up
FollowUpStatus.FOLLOW_UP=Under follow-up
FollowUpStatus.LOST=Lost follow-up
FollowUpStatus.NO_FOLLOW_UP=No follow-up
FollowUpStatus.Short.CANCELED=Canceled
FollowUpStatus.Short.COMPLETED=Completed
FollowUpStatus.Short.FOLLOW_UP=Ongoing
FollowUpStatus.Short.LOST=Lost to follow-up
FollowUpStatus.Short.NO_FOLLOW_UP=No follow-up
FollowUpStatus.Desc.CANCELED=The follow-up process has been canceled, e.g. because the person died or the contact became irrelevant
FollowUpStatus.Desc.COMPLETED=The follow-up process has been completed
FollowUpStatus.Desc.FOLLOW_UP=The follow-up process is running
FollowUpStatus.Desc.LOST=The follow-up process could not be continued because the person was not available
FollowUpStatus.Desc.NO_FOLLOW_UP=No contact follow-up is being done
GatheringType.PARTY=Party
GatheringType.RELIGIOUS=Religious Gathering
GatheringType.MUSICAL=Choir/Singing Club/Orchestra
GatheringType.CONCERT=Concert
GatheringType.DEMONSTRATION=Demonstration
GatheringType.CARNIVAL=Carnival
GatheringType.FAIR=Fair
GatheringType.SPORTING_EVENT=Sporting event
GatheringType.OTHER=Other
# GestationalAgeCategory
GestationalAgeCategory.AT_TERM=At term (between 38 and 42 weeks of pregnancy)
GestationalAgeCategory.PREMATURE_BEFORE_32=Prematurely before 32 weeks of pregnancy
GestationalAgeCategory.PREMATURE_32_TO_38=Prematurely between 32 and 38 weeks of pregnancy
#GenoTypeResult
GenoTypeResult.GENOTYPE_A = Genotype A
GenoTypeResult.GENOTYPE_B = Genotype B
GenoTypeResult.GENOTYPE_B2 = Genotype B2
GenoTypeResult.GENOTYPE_B3 = Genotype B3
GenoTypeResult.GENOTYPE_C1 = Genotype C1
GenoTypeResult.GENOTYPE_C2 = Genotype C2
GenoTypeResult.GENOTYPE_D1 = Genotype D1
GenoTypeResult.GENOTYPE_D10 = Genotype D10
GenoTypeResult.GENOTYPE_D11 = Genotype D11
GenoTypeResult.GENOTYPE_D2 = Genotype D2
GenoTypeResult.GENOTYPE_D3 = Genotype D3
GenoTypeResult.GENOTYPE_D4 = Genotype D4
GenoTypeResult.GENOTYPE_D5 = Genotype D5
GenoTypeResult.GENOTYPE_D6 = Genotype D6
GenoTypeResult.GENOTYPE_D7 = Genotype D7
GenoTypeResult.GENOTYPE_D8 = Genotype D8
GenoTypeResult.GENOTYPE_D9 = Genotype D9
GenoTypeResult.GENOTYPE_E = Genotype E
GenoTypeResult.GENOTYPE_F = Genotype F
GenoTypeResult.GENOTYPE_G1 = Genotype G1
GenoTypeResult.GENOTYPE_G2 = Genotype G2
GenoTypeResult.GENOTYPE_G3 = Genotype G3
GenoTypeResult.GENOTYPE_H1 = Genotype H1
GenoTypeResult.GENOTYPE_H2 = Genotype H2
GenoTypeResult.CRYPTOSPORIDIUM_HOMINIS = Cryptosporidium hominis
GenoTypeResult.CRYPTOSPORIDIUM_PARVUM = Cryptosporidium parvum
GenoTypeResult.CRYPTOSPORIDIUM_SPECIES = Cryptosporidium species
GenoTypeResult.OTHER = Other
GenoTypeResult.UNKNOWN = Unknown
HabitationType.MEDICAL=Stay in a Medical Institution
HabitationType.OTHER=Other
HospitalizationReasonType.REPORTED_DISEASE=Reported disease
HospitalizationReasonType.ISOLATION=Isolation
HospitalizationReasonType.OTHER=Other reason
HospitalizationReasonType.UNKNOWN=Unknown
HospitalWardType.PEDIATRIC_INPATIENT = Pediatric-Inpatient
HospitalWardType.NURSERY = Nursery
HospitalWardType.EPU = EPU
HospitalWardType.CHER = CHER
HospitalWardType.OPD = OPD
HospitalWardType.EYE = Eye
HospitalWardType.ENT = ENT
HospitalWardType.CARDIOLOGY = Cardiology
HospitalWardType.OTHER = Other
# ImmunizationDateType
ImmunizationDateType.FIRST_VACCINATION_DATE=Date of first vaccination
ImmunizationDateType.IMMUNIZATION_END=End of immunization
ImmunizationDateType.LAST_VACCINATION_DATE=Date of last vaccination
ImmunizationDateType.RECOVERY_DATE=Date of recovery
ImmunizationDateType.REPORT_DATE=Date of report
ImmunizationDateType.VALID_UNTIL=Valid until
# InfectionSource
InfectionSource.ANIMAL=Animal
InfectionSource.NOT_APPLICABLE=Not applicable
InfectionSource.FOOD=Food
InfectionSource.OTHER=Other
# InvestigationStatus
InvestigationStatus.DISCARDED=Investigation discarded
InvestigationStatus.DONE=Investigation done
InvestigationStatus.PENDING=Investigation pending
InvestigationStatus.Short.DISCARDED=Discarded
InvestigationStatus.Short.DONE=Done
InvestigationStatus.Short.PENDING=Pending
# KindOfInvolvement
KindOfInvolvement.OTHER = Other
KindOfInvolvement.POTENTIALLY_EXPOSED = Potentially exposed
KindOfInvolvement.POTENTIAL_INDEX_CASE = Potential index case
Language.EN = English
Language.EN_GM = English (The Gambia)
Language.EN_LR = English (Liberia)
Language.EN_AF = English (Afghanistan)
Language.EN_NG = English (Nigeria)
Language.EN_GH = English (Ghana)
Language.EN_KE = English (Kenya)
Language.FR = Français
Language.DE = Deutsch
Language.ES_BO = Español (Bolivia)
Language.ES_EC = Español (Ecuador)
Language.ES_CU = Español (Cuba)
Language.FI = Suomi
Language.IT = Italiano
Language.DE_CH = Deutsch (Schweiz)
Language.PT_CV = Português (Cabo Verde)
Language.IT_CH = Italiano (Svizzera)
Language.FR_CH = Français (Suisse)
Language.PS = Pashto
Language.FA = Dari
Language.CZ = Čeština
Language.UR_PK = Urdu
Language.FR_TN = Français (Tunisie)
#LivingStatus
LivingStatus.MIGRANT = Migrant
LivingStatus.FOREIGNER = Foreigner
LivingStatus.HOMELESS = Homeless
LivingStatus.REGISTERED_AT_A_RESIDENCE = Registered as living at a residence in LU