-
Notifications
You must be signed in to change notification settings - Fork 2
/
whodhi.ttl
1101 lines (952 loc) · 61.2 KB
/
whodhi.ttl
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
@base <http://hitontology.eu/ontology/> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix hito: <> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix bb: <http://www.snik.eu/ontology/bb/> .
@prefix dbr: <http://dbpedia.org/resource/> .
@prefix wikipedia: <https://en.wikipedia.org/wiki/> .
hito:WhoDhi1-0
a hito:Classification ;
rdfs:label "WHO Classification of Digital Health Interventions v1.0"@en ;
rdfs:member hito:WhoDhiClientFeatureCatalogue, hito:WhoDhiDataServiceFeatureCatalogue, hito:WhoDhiHealthSystemManagerFeatureCatalogue, hito:WhoDhiHealthSystemManagerFunctionCatalogue, hito:WhoDhiHealthcareProviderFeatureCatalogue, hito:WhoDhiHealthcareProviderFunctionCatalogue, hito:WhoDhiSystemCategoryApplicationSystemTypeCatalogue .
hito:WhoDhiAccessByClientToOwnMedicalRecords
hito:fClaFrom hito:WhoDhiClientFeatureCatalogue ;
hito:internalId "1.4.1" ;
hito:subFeatureOf hito:WhoDhiPersonalHealthTracking ;
a hito:FeatureClassified ;
rdfs:label "Access by client to own medical records"@en ;
skos:altLabel "ability for clients to track their health history"@en, "patient’s own access to their health record"@en, "self-access to client health record"@en .
hito:WhoDhiActiveDataCapturedocumentationByClient
hito:fClaFrom hito:WhoDhiClientFeatureCatalogue ;
hito:internalId "1.4.3" ;
hito:subFeatureOf hito:WhoDhiPersonalHealthTracking ;
a hito:FeatureClassified ;
rdfs:label "Active data capture/documentation by client"@en ;
skos:altLabel "capture patient originated data"@en, "client documentation of health status and activities"@en, "journaling"@en, "personal health monitoring"@en, "self-care"@en, "self-monitoring"@en, "self-tracking"@en .
hito:WhoDhiAssessCapacityOfHealthcareProvider
hito:fClaFrom hito:WhoDhiHealthcareProviderFeatureCatalogue ;
hito:internalId "2.8.2" ;
hito:supportsFunctionClassified hito:WhoDhiHealthcareProviderTraining ;
a hito:FeatureClassified ;
rdfs:label "Assess capacity of healthcare provider"@en ;
skos:altLabel "quizzes and and interactive exercises to assess knowledge and competence"@en .
hito:WhoDhiAssessHealthFacilities
hito:fClaFrom hito:WhoDhiHealthSystemManagerFeatureCatalogue ;
hito:internalId "3.7.2" ;
hito:supportsFunctionClassified hito:WhoDhiFacilityManagement ;
a hito:FeatureClassified ;
rdfs:label "Assess health facilities"@en ;
skos:altLabel "assess performance and capacity of services provided at health facilities"@en, "regulate and monitor services provided at health facilities"@en, "supervision of health facilities"@en .
hito:WhoDhiAutomatedAnalysisOfDataToGenerateNewInformationOrPredictionsOnFutureEvents
hito:fClaFrom hito:WhoDhiDataServiceFeatureCatalogue ;
hito:internalId "4.1.4" ;
hito:subFeatureOf hito:WhoDhiDataCollectionManagementAndUse ;
a hito:FeatureClassified ;
rdfs:label "Automated analysis of data to generate new information or predictions on future events"@en ;
skos:altLabel "artificial intelligence"@en, "machine learning"@en, "predictive analytics"@en .
hito:WhoDhiCaptureFromDigitalDevices
hito:fClaFrom hito:WhoDhiHealthcareProviderFeatureCatalogue ;
hito:internalId "2.10.3" ;
hito:supportsFunctionClassified hito:WhoDhiLaboratoryAndDiagnosticsImagingManagement ;
a hito:FeatureClassified ;
rdfs:label "Capture diagnostic results from digital devices"@en ;
skos:altLabel "diagnostic accessories added to digital devices"@en, "point of care diagnostics"@en .
hito:WhoDhiCensusPopulationInformationDataWarehouse
hito:astClaFrom hito:WhoDhiSystemCategoryApplicationSystemTypeCatalogue ;
hito:internalId "1" ;
a hito:ApplicationSystemTypeClassified ;
rdfs:label "Census, population information & data warehouse"@en .
hito:WhoDhiCertifyBirthEvent
hito:fClaFrom hito:WhoDhiHealthSystemManagerFeatureCatalogue ;
hito:internalId "3.4.3" ;
hito:supportsFunctionClassified hito:WhoDhiCivilRegistrationAndVitalStatistic ;
a hito:FeatureClassified ;
rdfs:label "Certify birth event"@en ;
skos:altLabel "Civil Registration and Vital Statistics (CRVS)"@en, "issuance of birth certificate"@en .
hito:WhoDhiCertifyDeathEvent
hito:fClaFrom hito:WhoDhiHealthSystemManagerFeatureCatalogue ;
hito:internalId "3.4.6" ;
hito:supportsFunctionClassified hito:WhoDhiCivilRegistrationAndVitalStatistic ;
a hito:FeatureClassified ;
rdfs:label "Certify death event"@en ;
skos:altLabel "issuance of death certificate"@en .
hito:WhoDhiCitizenBasedReporting
hito:fClaFrom hito:WhoDhiClientFeatureCatalogue ;
hito:internalId "1.5" ;
a hito:FeatureClassified ;
rdfs:comment "Digital platforms, including social media, that enable clients to report on public health events, as well as experiences, issues, and satisfaction with health services."@en ;
rdfs:label "Citizen based reporting"@en .
hito:WhoDhiCivilRegistrationAndVitalStatistic
hito:efClaFrom hito:WhoDhiHealthSystemManagerFunctionCatalogue ;
hito:internalId "3.4" ;
a hito:EnterpriseFunctionClassified ;
rdfs:comment "Digital approaches to support the registration of births and deaths, issue birth and death certificates, and compile and disseminate vital statistics, including cause of death information. "@en ;
rdfs:label "Civil Registration and Vital Statistic"@en .
hito:WhoDhiCivilRegistrationAndVitalStatistics
hito:astClaFrom hito:WhoDhiSystemCategoryApplicationSystemTypeCatalogue ;
hito:internalId "2" ;
a hito:ApplicationSystemTypeClassified ;
rdfs:label "Civil registration and vital statistics"@en .
hito:WhoDhiClassifyDiseaseCodesOrCauseOfMortality
hito:fClaFrom hito:WhoDhiDataServiceFeatureCatalogue ;
hito:internalId "4.2.3" ;
hito:subFeatureOf hito:WhoDhiDataCoding ;
a hito:FeatureClassified ;
rdfs:label "Classify disease codes or cause of mortality"@en ;
skos:altLabel "ICD coding"@en, "clinical coding for reporting and insurance"@en, "mapping local terminology, codes, and formats"@en, "recording cause of death"@en .
hito:WhoDhiClientApplications
hito:astClaFrom hito:WhoDhiSystemCategoryApplicationSystemTypeCatalogue ;
hito:internalId "3" ;
a hito:ApplicationSystemTypeClassified ;
rdfs:label "Client applications"@en .
hito:WhoDhiClientCommunicationSystem
hito:astClaFrom hito:WhoDhiSystemCategoryApplicationSystemTypeCatalogue ;
hito:internalId "4" ;
a hito:ApplicationSystemTypeClassified ;
rdfs:label "Client communication system"@en .
hito:WhoDhiClientFeatureCatalogue
a hito:FeatureCatalogue ;
rdfs:comment "Section 1.0 'Client' in the WHO Classification of Digital Health Interventions v1.0"@en ;
rdfs:label "WHO DHI Client Feature Catalogue"@en ;
rdfs:seeAlso <https://apps.who.int/iris/bitstream/handle/10665/260480/WHO-RHR-18.06-eng.pdf>, <https://www.who.int/reproductivehealth/publications/mhealth/WHO_Classifications_Poster.pdf> .
hito:WhoDhiClientFinancialTransactions
hito:fClaFrom hito:WhoDhiClientFeatureCatalogue ;
hito:internalId "1.7" ;
a hito:FeatureClassified ;
rdfs:comment "Digital approaches to facilitate financial transactions for clients. These digital financial transactions can be used to facilitate conditional cash transfers and payments related to health service delivery."@en ;
rdfs:label "Client financial transactions"@en .
hito:WhoDhiClientHealthRecords
hito:efClaFrom hito:WhoDhiHealthcareProviderFunctionCatalogue ;
hito:internalId "2.2" ;
a hito:EnterpriseFunctionClassified ;
rdfs:comment "Digitized job aids that combine an individual’s health information with the health-care provider’s knowledge and clinical protocols in order to assist health-care providers in making diagnosis and treatment decisions. "@en ;
rdfs:label "Client health records"@en .
hito:WhoDhiClientIdentificationAndRegistration
hito:efClaFrom hito:WhoDhiHealthcareProviderFunctionCatalogue ;
hito:internalId "2.1" ;
a hito:EnterpriseFunctionClassified ;
rdfs:comment "Client identity verification and enrollment into health services."@en ;
rdfs:label "Client identification and registration"@en .
hito:WhoDhiClientLookupOfHealthInformation
hito:fClaFrom hito:WhoDhiClientFeatureCatalogue ;
hito:internalId "1.6.1" ;
hito:subFeatureOf hito:WhoDhiOndemandInformationServicesToClients ;
a hito:FeatureClassified ;
rdfs:label "Client look-up of health information"@en ;
skos:altLabel "client searches or looks up information on a health topic"@en, "decision support for clients"@en .
hito:WhoDhiClientToClientCommunication
hito:fClaFrom hito:WhoDhiClientFeatureCatalogue ;
hito:internalId "1.3" ;
a hito:FeatureClassified ;
rdfs:comment "Communication between clients as peers within an organized network/group."@en ;
rdfs:label "Client to client communication"@en .
hito:WhoDhiClinicalTerminologyAndClassifications
hito:astClaFrom hito:WhoDhiSystemCategoryApplicationSystemTypeCatalogue ;
hito:internalId "5" ;
a hito:ApplicationSystemTypeClassified ;
rdfs:label "Clinical terminology and classifications"@en .
hito:WhoDhiCommunicationAndPerformanceFeedbackToHealthcareProviders
hito:fClaFrom hito:WhoDhiHealthcareProviderFeatureCatalogue ;
hito:internalId "2.5.2" ;
hito:supportsFunctionClassified hito:WhoDhiHealthcareProviderCommunication ;
a hito:FeatureClassified ;
rdfs:label "Communication and performance feedback to healthcare provider"@en ;
skos:altLabel "audit and feedback"@en, "coaching/mentoring"@en, "communication to healthcare provider based on their performance"@en, "supportive supervision"@en .
hito:WhoDhiCommunicationFromHealthcareProvidersToSupervisor
hito:fClaFrom hito:WhoDhiHealthcareProviderFeatureCatalogue ;
hito:internalId "2.5.1" ;
hito:supportsFunctionClassified hito:WhoDhiHealthcareProviderCommunication ;
a hito:FeatureClassified ;
rdfs:label "Communication from healthcare provider to supervisor"@en .
hito:WhoDhiCommunitybasedInformationSystem
hito:astClaFrom hito:WhoDhiSystemCategoryApplicationSystemTypeCatalogue ;
hito:internalId "6" ;
a hito:ApplicationSystemTypeClassified ;
rdfs:label "Community-based information system"@en .
hito:WhoDhiConsultationsBetweenRemoteClientAndHealthcareProvider
hito:fClaFrom hito:WhoDhiHealthcareProviderFeatureCatalogue ;
hito:internalId "2.4.1" ;
hito:supportsFunctionClassified hito:WhoDhiTelemedicine ;
a hito:FeatureClassified ;
rdfs:label "Consultations between remote client and healthcare provider"@en ;
skos:altLabel "call centers"@en, "client based telemedicine"@en, "client calls a health worker or hotline to receive clinical guidance on health issue"@en, "helpline"@en, "hotlines"@en, "interactive telemedicine"@en, "real-time telemedicine"@en, "remote consultation"@en, "synchronous telemedicine"@en, "tele consultation"@en .
hito:WhoDhiConsultationsForCaseManagementBetweenHealthcareProviders
hito:fClaFrom hito:WhoDhiHealthcareProviderFeatureCatalogue ;
hito:internalId "2.4.4" ;
hito:supportsFunctionClassified hito:WhoDhiTelemedicine ;
a hito:FeatureClassified ;
rdfs:label "Consultations for case management between healthcare providers"@en ;
skos:altLabel "closed usergroup"@en, "consulting other health care providers, particularly specialists, for patient case management"@en, "health worker to health worker communication"@en, "inter-provider communication"@en, "seeking second opinion for patient case management"@en .
hito:WhoDhiCoordinateEmergencyResponseAndTransport
hito:fClaFrom hito:WhoDhiHealthcareProviderFeatureCatalogue ;
hito:internalId "2.6.1" ;
hito:supportsFunctionClassified hito:WhoDhiReferralCoordination ;
a hito:FeatureClassified ;
rdfs:label "Coordinate emergency response and transport"@en ;
skos:altLabel "ambulance systems"@en, "care coordination"@en, "emergency response management"@en .
hito:WhoDhiDataCoding
hito:fClaFrom hito:WhoDhiDataServiceFeatureCatalogue ;
hito:internalId "4.2" ;
a hito:FeatureClassified ;
rdfs:comment "Digital approaches to code data and manage the use of standardized datasets."@en ;
rdfs:label "Data coding"@en .
hito:WhoDhiDataCollectionManagementAndUse
hito:fClaFrom hito:WhoDhiDataServiceFeatureCatalogue ;
hito:internalId "4.1" ;
a hito:FeatureClassified ;
rdfs:comment "Digital approaches to data collection, management, analysis, storage. This can include standalone interventions focusing exclusively on data collection and management, as well as data services to support other interventions, such as data visualization within supply chain management. "@en ;
rdfs:label "Data collection, management, and use"@en .
hito:WhoDhiDataExchangeAcrossSystems
hito:fClaFrom hito:WhoDhiDataServiceFeatureCatalogue ;
hito:internalId "4.4.1" ;
hito:subFeatureOf hito:WhoDhiDataExchangeAndInteroperability ;
a hito:FeatureClassified ;
rdfs:label "Data exchange across systems"@en ;
skos:altLabel "data mediation"@en, "data orchestration"@en, "information exchange"@en, "interoperability and accessibility"@en, "interoperability layer"@en .
hito:WhoDhiDataExchangeAndInteroperability
hito:fClaFrom hito:WhoDhiDataServiceFeatureCatalogue ;
hito:internalId "4.4" ;
a hito:FeatureClassified ;
rdfs:comment "The capability of two or more systems to communicate and exchange data through specified data formats and communication protocols."@en ;
rdfs:label "Data exchange and interoperability "@en .
hito:WhoDhiDataInterchangeInteroperabilityAndAccessibility
hito:astClaFrom hito:WhoDhiSystemCategoryApplicationSystemTypeCatalogue ;
hito:internalId "7" ;
a hito:ApplicationSystemTypeClassified ;
rdfs:label "Data interchange interoperability and accessibility"@en .
hito:WhoDhiDataServiceFeatureCatalogue
a hito:FeatureCatalogue ;
rdfs:comment "Section 4.0 'Data Service' in the WHO Classification of Digital Health Interventions v1.0"@en ;
rdfs:label "WHO DHI Data Service Feature Catalogue"@en ;
rdfs:seeAlso <https://apps.who.int/iris/bitstream/handle/10665/260480/WHO-RHR-18.06-eng.pdf>, <https://www.who.int/reproductivehealth/publications/mhealth/WHO_Classifications_Poster.pdf> .
hito:WhoDhiDataStorageAndAggregation
hito:fClaFrom hito:WhoDhiDataServiceFeatureCatalogue ;
hito:internalId "4.1.2" ;
hito:subFeatureOf hito:WhoDhiDataCollectionManagementAndUse ;
a hito:FeatureClassified ;
rdfs:label "Data storage and aggregation"@en ;
skos:altLabel "data warehouse"@en, "repository"@en .
hito:WhoDhiDataSynthesisAndVisualization
hito:fClaFrom hito:WhoDhiDataServiceFeatureCatalogue ;
hito:internalId "4.1.3" ;
hito:subFeatureOf hito:WhoDhiDataCollectionManagementAndUse ;
a hito:FeatureClassified ;
rdfs:label "Data synthesis and visualization"@en ;
skos:altLabel "business intelligence"@en, "presentations of data"@en, "report generation"@en, "reporting dashboards"@en .
hito:WhoDhiElectronicMedicalRecord
hito:astClaFrom hito:WhoDhiSystemCategoryApplicationSystemTypeCatalogue ;
hito:internalId "8" ;
a hito:ApplicationSystemTypeClassified ;
rdfs:label "Electronic medical record"@en .
hito:WhoDhiEmergencyResponseSystem
hito:astClaFrom hito:WhoDhiSystemCategoryApplicationSystemTypeCatalogue ;
hito:internalId "9" ;
a hito:ApplicationSystemTypeClassified ;
rdfs:label "Emergency response system"@en .
hito:WhoDhiEnrolClientForHealthServicesclinicalCarePlan
hito:fClaFrom hito:WhoDhiHealthcareProviderFeatureCatalogue ;
hito:internalId "2.1.2" ;
hito:supportsFunctionClassified hito:WhoDhiClientIdentificationAndRegistration ;
a hito:FeatureClassified ;
rdfs:label "Enrol client for health services/clinical care plan"@en ;
skos:altLabel "register client/patient for health services"@en .
hito:WhoDhiEnvironmentalMonitoringSystem
hito:astClaFrom hito:WhoDhiSystemCategoryApplicationSystemTypeCatalogue ;
hito:internalId "10" ;
a hito:ApplicationSystemTypeClassified ;
rdfs:label "Environmental monitoring system"@en .
hito:WhoDhiEquipmentAndAssetManagement
hito:efClaFrom hito:WhoDhiHealthSystemManagerFunctionCatalogue ;
hito:internalId "3.6" ;
a hito:EnterpriseFunctionClassified ;
rdfs:comment "Digital approaches to track and manage the maintenance of health equipment. This can include the use of databases, as well as sensors and feedback mechanisms for monitoring health equipment. "@en ;
rdfs:label "Equipment and asset management"@en .
hito:WhoDhiFacilityManagement
hito:efClaFrom hito:WhoDhiHealthSystemManagerFunctionCatalogue ;
hito:internalId "3.7" ;
a hito:EnterpriseFunctionClassified ;
rdfs:comment "Digital approaches that enable administrative functions related to the management of facilities."@en ;
rdfs:label "Facility management"@en .
hito:WhoDhiFacilityManagementInformationSystem
hito:astClaFrom hito:WhoDhiSystemCategoryApplicationSystemTypeCatalogue ;
hito:internalId "11" ;
a hito:ApplicationSystemTypeClassified ;
rdfs:label "Facility management information system"@en .
hito:WhoDhiGeographicInformationSystemGis
hito:astClaFrom hito:WhoDhiSystemCategoryApplicationSystemTypeCatalogue ;
hito:internalId "12" ;
a hito:ApplicationSystemTypeClassified ;
rdfs:label "Geographic information system (GIS)"@en .
hito:WhoDhiHealthFinanceAndInsuranceInformationSystem
hito:astClaFrom hito:WhoDhiSystemCategoryApplicationSystemTypeCatalogue ;
hito:internalId "13" ;
a hito:ApplicationSystemTypeClassified ;
rdfs:label "Health finance and insurance information system"@en .
hito:WhoDhiHealthFinancing
hito:efClaFrom hito:WhoDhiHealthSystemManagerFunctionCatalogue ;
hito:internalId "3.5" ;
a hito:EnterpriseFunctionClassified ;
rdfs:comment "Digital approaches to manage financial transactions for health system related expenses. These digital financial transactions can be used for payments to health workforce, insurance/payers, as well as administrative management of budget and expenditures. "@en ;
rdfs:label "Health financing"@en .
hito:WhoDhiHealthManagementInformationSystemHmis
hito:astClaFrom hito:WhoDhiSystemCategoryApplicationSystemTypeCatalogue ;
hito:internalId "14" ;
a hito:ApplicationSystemTypeClassified ;
rdfs:label "Health management information system (HMIS)"@en .
hito:WhoDhiHealthSystemManagerFeatureCatalogue
a hito:FeatureCatalogue ;
rdfs:comment "Feature catalogue defined in section 3.0 'Health System Managers' in the WHO Classification of Digital Health Interventions v1.0"@en ;
rdfs:label "WHO DHI Health System Managers Feature Catalogue"@en ;
rdfs:seeAlso <https://apps.who.int/iris/bitstream/handle/10665/260480/WHO-RHR-18.06-eng.pdf>, <https://www.who.int/reproductivehealth/publications/mhealth/WHO_Classifications_Poster.pdf> .
hito:WhoDhiHealthSystemManagerFunctionCatalogue
a hito:EnterpriseFunctionCatalogue ;
rdfs:comment "Function catalogue defined in section 3.0 'Health System Managers' in the WHO Classification of Digital Health Interventions v1.0"@en ;
rdfs:label "WHO DHI Health System Managers Function Catalogue"@en ;
rdfs:seeAlso <https://apps.who.int/iris/bitstream/handle/10665/260480/WHO-RHR-18.06-eng.pdf>, <https://www.who.int/reproductivehealth/publications/mhealth/WHO_Classifications_Poster.pdf> .
hito:WhoDhiHealthWorkerActivityPlanningAndScheduling
hito:efClaFrom hito:WhoDhiHealthcareProviderFunctionCatalogue ;
hito:internalId "2.7" ;
a hito:EnterpriseFunctionClassified ;
rdfs:comment "Automated scheduling and planning tools to assist in prioritizing provider followup. Digital work planning and scheduling tools can take the form of reminders to healthcare providers on upcoming/overdue services and other mechanisms to flag clients that need to be prioritized for service delivery. "@en ;
rdfs:label "Health worker activity planning and scheduling"@en .
hito:WhoDhiHealthcareProviderCommunication
hito:efClaFrom hito:WhoDhiHealthcareProviderFunctionCatalogue ;
hito:internalId "2.5" ;
a hito:EnterpriseFunctionClassified ;
rdfs:comment "Communication and transmission of information among healthcare providers, supervisors, and health system managers. Healthcare provider communication. "@en ;
rdfs:label "Healthcare provider communication"@en .
hito:WhoDhiHealthcareProviderDecisionSupport
hito:efClaFrom hito:WhoDhiHealthcareProviderFunctionCatalogue ;
hito:internalId "2.3" ;
a hito:EnterpriseFunctionClassified ;
rdfs:comment "Digitized record used to capture, store, access and share health information on a client or grouping of clients. "@en ;
rdfs:label "Healthcare provider decision support"@en .
hito:WhoDhiHealthcareProviderFeatureCatalogue
a hito:FeatureCatalogue ;
rdfs:comment "Feature Catalogue defined in section 2.0 'Healthcare Providers' in the WHO Classification of Digital Health Interventions v1.0"@en ;
rdfs:label "WHO DHI Healthcare Provider Feature Catalogue"@en ;
rdfs:seeAlso <https://apps.who.int/iris/bitstream/handle/10665/260480/WHO-RHR-18.06-eng.pdf>, <https://www.who.int/reproductivehealth/publications/mhealth/WHO_Classifications_Poster.pdf> .
hito:WhoDhiHealthcareProviderFunctionCatalogue
a hito:EnterpriseFunctionCatalogue ;
rdfs:comment "Function Catalogue defined in section 2.0 'Healthcare Providers' in the WHO Classification of Digital Health Interventions v1.0"@en ;
rdfs:label "WHO DHI Healthcare Provider Function Catalogue"@en ;
rdfs:seeAlso <https://apps.who.int/iris/bitstream/handle/10665/260480/WHO-RHR-18.06-eng.pdf>, <https://www.who.int/reproductivehealth/publications/mhealth/WHO_Classifications_Poster.pdf> .
hito:WhoDhiHealthcareProviderTraining
hito:efClaFrom hito:WhoDhiHealthcareProviderFunctionCatalogue ;
hito:internalId "2.8" ;
a hito:EnterpriseFunctionClassified ;
rdfs:comment "The management and provision of education and training content in electronic form for health professionals. In contrast to decision support, healthcare provider training does not need to be used at the point of care. "@en ;
rdfs:label "Healthcare provider training"@en .
hito:WhoDhiHumanResourceInformationSystem
hito:astClaFrom hito:WhoDhiSystemCategoryApplicationSystemTypeCatalogue ;
hito:internalId "15" ;
a hito:ApplicationSystemTypeClassified ;
rdfs:label "Human resource information system"@en .
hito:WhoDhiHumanResourceManagement
hito:efClaFrom hito:WhoDhiHealthSystemManagerFunctionCatalogue ;
hito:internalId "3.1" ;
a hito:EnterpriseFunctionClassified ;
rdfs:comment "Digital approaches to manage the health workforce, including the use of databases to record training levels, certifications, and identification of health workers. "@en ;
rdfs:label "Human resource management"@en .
hito:WhoDhiIdentificationRegistriesAndDirectories
hito:astClaFrom hito:WhoDhiSystemCategoryApplicationSystemTypeCatalogue ;
hito:internalId "16" ;
a hito:ApplicationSystemTypeClassified ;
rdfs:label "Identification registries and directories"@en .
hito:WhoDhiIdentifyClientsInNeedOfServices
hito:fClaFrom hito:WhoDhiHealthcareProviderFeatureCatalogue ;
hito:internalId "2.7.1" ;
hito:supportsFunctionClassified hito:WhoDhiHealthWorkerActivityPlanningAndScheduling ;
a hito:FeatureClassified ;
rdfs:label "Identify clients in need of services"@en ;
skos:altLabel "automated scheduling of client’s health appointments"@en .
hito:WhoDhiKnowledgeManagementSystem
hito:astClaFrom hito:WhoDhiSystemCategoryApplicationSystemTypeCatalogue ;
hito:internalId "17" ;
a hito:ApplicationSystemTypeClassified ;
rdfs:label "Knowledge management system"@en .
hito:WhoDhiLaboratoryAndDiagnosticsImagingManagement
hito:efClaFrom hito:WhoDhiHealthcareProviderFunctionCatalogue ;
hito:internalId "2.10" ;
a hito:EnterpriseFunctionClassified ;
rdfs:comment "Digital approaches to manage and exchange laboratory and diagnostic orders and results."@en ;
rdfs:label "Laboratory and Diagnostics Imaging Management"@en .
hito:WhoDhiLaboratoryAndDiagnosticsInformationSystem
hito:astClaFrom hito:WhoDhiSystemCategoryApplicationSystemTypeCatalogue ;
hito:internalId "18" ;
a hito:ApplicationSystemTypeClassified ;
rdfs:label "Laboratory and diagnostics information system"@en .
hito:WhoDhiLearningAndTrainingSystem
hito:astClaFrom hito:WhoDhiSystemCategoryApplicationSystemTypeCatalogue ;
hito:internalId "19" ;
a hito:ApplicationSystemTypeClassified ;
rdfs:label "Learning and training system"@en .
hito:WhoDhiListHealthFacilitiesAndRelatedInformation
hito:fClaFrom hito:WhoDhiHealthSystemManagerFeatureCatalogue ;
hito:internalId "3.7.1" ;
hito:supportsFunctionClassified hito:WhoDhiFacilityManagement ;
a hito:FeatureClassified ;
rdfs:label "List health facilities and related information"@en ;
skos:altLabel "health facility registry"@en, "list unique IDs and locations of health facilities"@en, "register health facilities"@en .
hito:WhoDhiListHealthWorkforceCadresAndRelatedIdentificationInformation
hito:fClaFrom hito:WhoDhiHealthSystemManagerFeatureCatalogue ;
hito:internalId "3.1.1" ;
hito:supportsFunctionClassified hito:WhoDhiHumanResourceManagement ;
a hito:FeatureClassified ;
rdfs:label "List health workforce cadres and related identification information"@en ;
skos:altLabel "documentation of healthcare providers’ demographics, identification, health facility assignment, and other identifier information"@en, "health worker registry"@en, "provider registry"@en .
hito:WhoDhiLocationMapping
hito:fClaFrom hito:WhoDhiDataServiceFeatureCatalogue ;
hito:internalId "4.3" ;
a hito:FeatureClassified ;
rdfs:comment "The use of geolocation coordinates to map objects and events. "@en ;
rdfs:label "Location mapping"@en .
hito:WhoDhiLogisticsManagementInformationSystemLmis
hito:astClaFrom hito:WhoDhiSystemCategoryApplicationSystemTypeCatalogue ;
hito:internalId "20" ;
a hito:ApplicationSystemTypeClassified ;
rdfs:label "Logistics management information system (LMIS)"@en .
hito:WhoDhiLongitudinalTrackingOfClientsHealthStatusAndServices
hito:fClaFrom hito:WhoDhiHealthcareProviderFeatureCatalogue ;
hito:internalId "2.2.1" ;
hito:supportsFunctionClassified hito:WhoDhiClientHealthRecords ;
a hito:FeatureClassified ;
rdfs:label "Longitudinal tracking of client’s health status and services received"@en ;
skos:altLabel "case management logs within specific target populations, including migrant populations"@en, "digital register"@en, "digital service record"@en, "digitized registers for longitudinal health program"@en, "domain-specific registers"@en, "eRegister"@en, "eRegistries"@en, "immunization registry"@en, "including tracking of migrant populations’ benefits and health status"@en .
hito:WhoDhiManageBudgetAndExpenditures
hito:fClaFrom hito:WhoDhiHealthSystemManagerFeatureCatalogue ;
hito:internalId "3.5.6" ;
hito:supportsFunctionClassified hito:WhoDhiHealthFinancing ;
a hito:FeatureClassified ;
rdfs:label "Manage budget and expenditures"@en ;
skos:altLabel "financial management"@en, "resource planning"@en .
hito:WhoDhiManageCertificationregistrationOfHealthcareProviders
hito:fClaFrom hito:WhoDhiHealthSystemManagerFeatureCatalogue ;
hito:internalId "3.1.3" ;
hito:supportsFunctionClassified hito:WhoDhiHumanResourceManagement ;
a hito:FeatureClassified ;
rdfs:label "Manage certification/registration of healthcare provider(s)"@en ;
skos:altLabel "authority such as a professional council"@en, "certification or licensure with regulatory"@en, "management of health worker registration"@en .
hito:WhoDhiManageClientsStructuredClinicalRecords
hito:fClaFrom hito:WhoDhiHealthcareProviderFeatureCatalogue ;
hito:internalId "2.2.2" ;
hito:supportsFunctionClassified hito:WhoDhiClientHealthRecords ;
a hito:FeatureClassified ;
rdfs:label "Manage client's structured clinical records"@en ;
skos:altLabel "clinical record of an individual with information that spans across multiple clinical domains"@en, "electronic medical record"@en, "personal health record"@en .
hito:WhoDhiManageClientsUnstructuredClinicalRecords
hito:fClaFrom hito:WhoDhiHealthcareProviderFeatureCatalogue ;
hito:internalId "2.2.3" ;
hito:supportsFunctionClassified hito:WhoDhiClientHealthRecords ;
a hito:FeatureClassified ;
rdfs:label "Manage client’s unstructured clinical records"@en ;
skos:altLabel "electronic medical record and personal health records with that are not based on structured data, and instead including notes, images, documents"@en .
hito:WhoDhiManageInventoryAndDistributionOfHealthCommoditiesStockLevelsOf
hito:fClaFrom hito:WhoDhiHealthSystemManagerFeatureCatalogue ;
hito:internalId "3.2.1" ;
hito:supportsFunctionClassified hito:WhoDhiSupplyChainManagement ;
a hito:FeatureClassified ;
rdfs:label "Manage inventory and distribution of health commodities"@en ;
skos:altLabel "commodity security"@en, "logistics management"@en, "stock management"@en, "stock monitoring of health commodities"@en .
hito:WhoDhiManageOfCommodities
hito:fClaFrom hito:WhoDhiHealthSystemManagerFeatureCatalogue ;
hito:internalId "3.2.5" ;
hito:supportsFunctionClassified hito:WhoDhiSupplyChainManagement ;
a hito:FeatureClassified ;
rdfs:label "Manage procurement of commodities"@en ;
skos:altLabel "logistics management"@en, "procurement management"@en .
hito:WhoDhiManageReferralsBetweenHealthAndOtherSectors
hito:fClaFrom hito:WhoDhiHealthcareProviderFeatureCatalogue ;
hito:internalId "2.6.3" ;
hito:supportsFunctionClassified hito:WhoDhiReferralCoordination ;
a hito:FeatureClassified ;
rdfs:label "Manage referrals between health and other sectors"@en ;
skos:altLabel "intersectoral referral management"@en .
hito:WhoDhiManageReferralsBetweenPointsOfServiceWithinHealthSector
hito:fClaFrom hito:WhoDhiHealthcareProviderFeatureCatalogue ;
hito:internalId "2.6.2" ;
hito:supportsFunctionClassified hito:WhoDhiReferralCoordination ;
a hito:FeatureClassified ;
rdfs:label "Manage referrals between points of service within health sector"@en ;
skos:altLabel "clinical task linking"@en, "referral management"@en .
hito:WhoDhiMapLocationOfClientsAndHouseholds
hito:fClaFrom hito:WhoDhiDataServiceFeatureCatalogue ;
hito:internalId "4.3.3" ;
hito:subFeatureOf hito:WhoDhiLocationMapping ;
a hito:FeatureClassified ;
rdfs:label "Map location of clients and households"@en ;
skos:altLabel "GPS mapping"@en, "demarcation of catchment areas"@en, "geospatial visualization"@en, "mapping coverage areas"@en, "mapping of health worker route to track the services provided"@en .
hito:WhoDhiMapLocationOfHealthEvents
hito:fClaFrom hito:WhoDhiDataServiceFeatureCatalogue ;
hito:internalId "4.3.2" ;
hito:subFeatureOf hito:WhoDhiLocationMapping ;
a hito:FeatureClassified ;
rdfs:label "Map location of health events"@en ;
skos:altLabel "GPS mapping"@en, "Geospatial visualization"@en .
hito:WhoDhiMapLocationOfHealthFacilitiesstructures
hito:fClaFrom hito:WhoDhiDataServiceFeatureCatalogue ;
hito:internalId "4.3.1" ;
hito:subFeatureOf hito:WhoDhiLocationMapping ;
a hito:FeatureClassified ;
rdfs:label "Map location of health facilities/structures"@en ;
skos:altLabel "Global Positioning System (GPS) mapping"@en .
hito:WhoDhiMapLocationOfHealthcareProviders
hito:fClaFrom hito:WhoDhiDataServiceFeatureCatalogue ;
hito:internalId "4.3.4" ;
hito:subFeatureOf hito:WhoDhiLocationMapping ;
a hito:FeatureClassified ;
rdfs:label "Map location of healthcare provider(s)"@en ;
skos:altLabel "mapping of health worker route to track the services provided"@en .
hito:WhoDhiMergeDeduplicateAndCurateCodedDatasetsOrTerminologies
hito:fClaFrom hito:WhoDhiDataServiceFeatureCatalogue ;
hito:internalId "4.2.2" ;
hito:subFeatureOf hito:WhoDhiDataCoding ;
a hito:FeatureClassified ;
rdfs:label "Merge, de-duplicate, and curate coded datasets or terminologies"@en ;
skos:altLabel "maintenance and versioning of health informatics terminology standards"@en, "semantic interoperability"@en, "terminology services"@en .
hito:WhoDhiMonitorColdchainSensitiveCommoditiesLicensedDrugs
hito:fClaFrom hito:WhoDhiHealthSystemManagerFeatureCatalogue ;
hito:internalId "3.2.3" ;
hito:supportsFunctionClassified hito:WhoDhiSupplyChainManagement ;
a hito:FeatureClassified ;
rdfs:label "Monitor cold-chain sensitive commodities"@en ;
skos:altLabel "sensors to monitor temperature and stability of vaccines"@en .
hito:WhoDhiMonitorPerformanceOfHealthcareProviders
hito:fClaFrom hito:WhoDhiHealthSystemManagerFeatureCatalogue ;
hito:internalId "3.1.2" ;
hito:supportsFunctionClassified hito:WhoDhiHumanResourceManagement ;
a hito:FeatureClassified ;
rdfs:label "Monitor performance of healthcare provider(s)"@en ;
skos:altLabel "audit and feedback"@en, "clinical task tracking"@en, "remote monitoring of healthcare providers"@en, "supervision"@en, "supportive supervision"@en, "workforce management"@en .
hito:WhoDhiMonitorStatusOfHealthEquipment
hito:fClaFrom hito:WhoDhiHealthSystemManagerFeatureCatalogue ;
hito:internalId "3.6.1" ;
hito:supportsFunctionClassified hito:WhoDhiEquipmentAndAssetManagement ;
a hito:FeatureClassified ;
rdfs:label "Monitor status of health equipment"@en ;
skos:altLabel "listing of available equipment and physical assets, e.g. hospital beds"@en, "tracking maintenance of equipment"@en .
hito:WhoDhiNonRoutineDataCollectionAndManagement
hito:fClaFrom hito:WhoDhiDataServiceFeatureCatalogue ;
hito:internalId "4.1.1" ;
hito:subFeatureOf hito:WhoDhiDataCollectionManagementAndUse ;
a hito:FeatureClassified ;
rdfs:label "Non routine data collection and management"@en ;
skos:altLabel "digital data collection"@en, "electronic data collection"@en, "mobile based surveys, using applications such as OpenDataKit (ODK), Enketo, FormHub, etc."@en .
hito:WhoDhiNotificationOfPublicHealthEventsFromPointOfDiagnosis
hito:fClaFrom hito:WhoDhiHealthSystemManagerFeatureCatalogue ;
hito:internalId "3.3.1" ;
hito:supportsFunctionClassified hito:WhoDhiPublicHealthEventNotification ;
a hito:FeatureClassified ;
rdfs:label "Notification of public health events from point of diagnosis"@en ;
skos:altLabel "disease surveillance"@en, "public health surveillance"@en, "surveillance from laboratory systems"@en .
hito:WhoDhiNotifyBirthEvent
hito:fClaFrom hito:WhoDhiHealthSystemManagerFeatureCatalogue ;
hito:internalId "3.4.1" ;
hito:supportsFunctionClassified hito:WhoDhiCivilRegistrationAndVitalStatistic ;
a hito:FeatureClassified ;
rdfs:label "Notify birth event"@en ;
skos:altLabel "birth event alert"@en .
hito:WhoDhiNotifyDeathEvent
hito:fClaFrom hito:WhoDhiHealthSystemManagerFeatureCatalogue ;
hito:internalId "3.4.4" ;
hito:supportsFunctionClassified hito:WhoDhiCivilRegistrationAndVitalStatistic ;
a hito:FeatureClassified ;
rdfs:label "Notify death event"@en ;
skos:altLabel "death event alert"@en, "death surveillance"@en .
hito:WhoDhiNotifyHealthCommodities
hito:fClaFrom hito:WhoDhiHealthSystemManagerFeatureCatalogue ;
hito:internalId "3.2.2" ;
hito:supportsFunctionClassified hito:WhoDhiSupplyChainManagement ;
a hito:FeatureClassified ;
rdfs:label "Notify stock levels of health commodities"@en ;
skos:altLabel "alerts and notifications of stock levels"@en, "restocking coordination"@en, "stockout prevention and monitoring"@en .
hito:WhoDhiOndemandInformationServicesToClients
hito:fClaFrom hito:WhoDhiClientFeatureCatalogue ;
hito:internalId "1.6" ;
a hito:FeatureClassified ;
rdfs:comment "Health information accessible to the general public triggered by the client. This could be available via websites, helplines, USSD/ SMS menus, or client applications, among other channels, that may inform decision-making. "@en ;
rdfs:label "On-demand information services to clients"@en .
hito:WhoDhiParseUnstructuredDataIntoStructuredData
hito:fClaFrom hito:WhoDhiDataServiceFeatureCatalogue ;
hito:internalId "4.2.1" ;
hito:subFeatureOf hito:WhoDhiDataCoding ;
a hito:FeatureClassified ;
rdfs:label "Parse unstructured data into structured data"@en ;
skos:altLabel "automated data cleaning"@en, "dirty data management"@en .
hito:WhoDhiPeerGroupForClients
hito:fClaFrom hito:WhoDhiClientFeatureCatalogue ;
hito:internalId "1.3.1" ;
hito:subFeatureOf hito:WhoDhiClientToClientCommunication ;
a hito:FeatureClassified ;
rdfs:label "Peer group for clients"@en ;
skos:altLabel "peer group"@en, "peer learning"@en, "peer network"@en, "peer support"@en, "peer-to-peer groups"@en .
hito:WhoDhiPeerGroupForHealthcareProviders
hito:fClaFrom hito:WhoDhiHealthcareProviderFeatureCatalogue ;
hito:internalId "2.5.5" ;
hito:supportsFunctionClassified hito:WhoDhiHealthcareProviderCommunication ;
a hito:FeatureClassified ;
rdfs:label "Peer group for healthcare providers"@en ;
skos:altLabel "closed user groups"@en, "communication mechanisms for healthcare providers to discuss among themselves"@en, "peer learning"@en, "peer support"@en .
hito:WhoDhiPersonalHealthTracking
hito:fClaFrom hito:WhoDhiClientFeatureCatalogue ;
hito:internalId "1.4" ;
a hito:FeatureClassified ;
rdfs:comment "The use of mobile applications by clients, phone based sensors, health records, and wearables for clients to monitor their own health status. This can include wearable sensors, web-tools, and apps that allow clients to review and track their health status."@en ;
rdfs:label "Personal health tracking"@en .
hito:WhoDhiPharmacyInformationSystem
hito:astClaFrom hito:WhoDhiSystemCategoryApplicationSystemTypeCatalogue ;
hito:internalId "21" ;
a hito:ApplicationSystemTypeClassified ;
rdfs:label "Pharmacy information system"@en .
hito:WhoDhiPrescriptionAndMedicationManagement
hito:efClaFrom hito:WhoDhiHealthcareProviderFunctionCatalogue ;
hito:internalId "2.9" ;
a hito:EnterpriseFunctionClassified ;
rdfs:comment "Digital approaches to facilitate the management of prescriptions, including tracking prescription orders and monitoring physical consumption of medication."@en ;
rdfs:label "Prescription and medication management"@en .
hito:WhoDhiProvideChecklistAccordingToProtocol
hito:fClaFrom hito:WhoDhiHealthcareProviderFeatureCatalogue ;
hito:internalId "2.3.2" ;
hito:supportsFunctionClassified hito:WhoDhiHealthcareProviderDecisionSupport ;
a hito:FeatureClassified ;
rdfs:label "Provide checklist according to protocol"@en ;
skos:altLabel "decision trees to support service delivery according to care plans, guidelines, and protocols"@en, "job aid and assessment tools to support service delivery—may or may not be linked to a digital health record"@en .
hito:WhoDhiProvidePromptsAndAlertsBasedAccordingToProtocol
hito:fClaFrom hito:WhoDhiHealthcareProviderFeatureCatalogue ;
hito:internalId "2.3.1" ;
hito:supportsFunctionClassified hito:WhoDhiHealthcareProviderDecisionSupport ;
a hito:FeatureClassified ;
rdfs:label "Provide prompts and alerts based according to protocol"@en ;
skos:altLabel "clinical decision support, job aid--linked to clients digital health record"@en, "process algorithms to support service delivery according to care plans, guidelines, and protocols"@en, "provision of alerts for abnormal findings/lab values, “IF THEN statements”"@en .
hito:WhoDhiProvideTrainingContentToHealthcareProviders
hito:fClaFrom hito:WhoDhiHealthcareProviderFeatureCatalogue ;
hito:internalId "2.8.1" ;
hito:supportsFunctionClassified hito:WhoDhiHealthcareProviderTraining ;
a hito:FeatureClassified ;
rdfs:label "Provide training content to healthcare provider(s)"@en ;
skos:altLabel "eLearning"@en, "educational videos, multimedia learning and access to clinical guidance"@en, "mLearning"@en, "training reinforcement and refreshers"@en, "virtual learning"@en .
hito:WhoDhiPublicHealthAndDiseaseSurveillanceSystem
hito:astClaFrom hito:WhoDhiSystemCategoryApplicationSystemTypeCatalogue ;
hito:internalId "22" ;
a hito:ApplicationSystemTypeClassified ;
rdfs:label "Public health and disease surveillance system"@en .
hito:WhoDhiPublicHealthEventNotification
hito:efClaFrom hito:WhoDhiHealthSystemManagerFunctionCatalogue ;
hito:internalId "3.3" ;
a hito:EnterpriseFunctionClassified ;
rdfs:comment "Digital approaches for alerting and compiling information on nonroutine public health events."@en ;
rdfs:label "Public health event notification"@en .
hito:WhoDhiRecordTrainingCredentialsOfHealthcareProviders
hito:fClaFrom hito:WhoDhiHealthSystemManagerFeatureCatalogue ;
hito:internalId "3.1.4" ;
hito:supportsFunctionClassified hito:WhoDhiHumanResourceManagement ;
a hito:FeatureClassified ;
rdfs:label "Record training credentials of healthcare provider(s)"@en ;
skos:altLabel "track or manage preservice and/or in-service training received by a health worker"@en .
hito:WhoDhiReferralCoordination
hito:efClaFrom hito:WhoDhiHealthcareProviderFunctionCatalogue ;
hito:internalId "2.6" ;
a hito:EnterpriseFunctionClassified ;
rdfs:comment "Digital approaches to support communication and coordination mechanisms to facilitate referrals, both within the health sector and to other health-related sectors."@en ;
rdfs:label "Referral coordination"@en .
hito:WhoDhiRegisterAndHealthCommoditiesProcurement
hito:fClaFrom hito:WhoDhiHealthSystemManagerFeatureCatalogue ;
hito:internalId "3.2.4" ;
hito:supportsFunctionClassified hito:WhoDhiSupplyChainManagement ;
a hito:FeatureClassified ;
rdfs:label "Register licensed drugs and health commodities"@en ;
skos:altLabel "drug regulation and registration"@en .
hito:WhoDhiRegisterAndVerifyClientInsuranceMembership
hito:fClaFrom hito:WhoDhiHealthSystemManagerFeatureCatalogue ;
hito:internalId "3.5.1" ;
hito:supportsFunctionClassified hito:WhoDhiHealthFinancing ;
a hito:FeatureClassified ;
rdfs:label "Register and verify client insurance membership"@en ;
skos:altLabel "determination of insurance coverage"@en, "eligibility verification for insurance"@en, "recording and verifying that a client is a member of a scheme or entitled to benefits"@en, "social protection"@en .
hito:WhoDhiRegisterBirthEvent
hito:fClaFrom hito:WhoDhiHealthSystemManagerFeatureCatalogue ;
hito:internalId "3.4.2" ;
hito:supportsFunctionClassified hito:WhoDhiCivilRegistrationAndVitalStatistic ;
a hito:FeatureClassified ;
rdfs:label "Register birth event"@en ;
skos:altLabel "birth registration (can include registration for health system purposes, as well as registration to civil registrar)"@en .
hito:WhoDhiRegisterDeathEvent
hito:fClaFrom hito:WhoDhiHealthSystemManagerFeatureCatalogue ;
hito:internalId "3.4.5" ;
hito:supportsFunctionClassified hito:WhoDhiCivilRegistrationAndVitalStatistic ;
a hito:FeatureClassified ;
rdfs:label "Register death event"@en ;
skos:altLabel "death surveillance"@en, "mortality surveillance"@en .
hito:WhoDhiRemoteMonitoringOfClientHealthOrDiagnosticDataByProvider
hito:fClaFrom hito:WhoDhiHealthcareProviderFeatureCatalogue ;
hito:internalId "2.4.2" ;
hito:supportsFunctionClassified hito:WhoDhiTelemedicine ;
a hito:FeatureClassified ;
rdfs:label "Remote monitoring of client health or diagnostic data by provider"@en ;
skos:altLabel "provider is able to monitor client’s health through an implanted sensor/diagnostic equipment"@en, "telemonitoring"@en, "virtual monitoring"@en .
hito:WhoDhiReportCounterfeitOrSubstandardDrugsByClients
hito:fClaFrom hito:WhoDhiHealthSystemManagerFeatureCatalogue ;
hito:internalId "3.2.6" ;
hito:supportsFunctionClassified hito:WhoDhiSupplyChainManagement ;
a hito:FeatureClassified ;
rdfs:label "Report counterfeit or substandard drugs by clients"@en ;
skos:altLabel "counterfeit drug notification"@en, "monitoring drug authenticity and quality"@en, "pharmacovigilance"@en .
hito:WhoDhiReportEffectsAdverseDrug
hito:fClaFrom hito:WhoDhiHealthcareProviderFeatureCatalogue ;
hito:internalId "2.9.3" ;
hito:supportsFunctionClassified hito:WhoDhiPrescriptionAndMedicationManagement ;
a hito:FeatureClassified ;
rdfs:label "Report adverse drug effects"@en ;
skos:altLabel "reporting contraindications, drug interactions, adverse effects"@en .
hito:WhoDhiReportingOfHealthSystemFeedbackByClients
hito:fClaFrom hito:WhoDhiClientFeatureCatalogue ;
hito:internalId "1.5.1" ;
hito:subFeatureOf hito:WhoDhiCitizenBasedReporting ;
a hito:FeatureClassified ;
rdfs:label "Reporting of health system feedback by clients"@en ;
skos:altLabel "accountability monitoring"@en, "accountability reporting"@en, "crowdsourced feedback"@en, "interaction with health worker"@en, "patient/client feedback"@en, "public reporting on health system issues, such as the availability and quality of services received"@en, "quality of care feedback"@en, "satisfaction with services"@en .
hito:WhoDhiReportingOfPublicHealthEventsByClient
hito:fClaFrom hito:WhoDhiClientFeatureCatalogue ;
hito:internalId "1.5.2" ;
hito:subFeatureOf hito:WhoDhiCitizenBasedReporting ;
a hito:FeatureClassified ;
rdfs:label "Reporting of public health events by client"@en ;
skos:altLabel "client reporting"@en, "disease notification"@en, "surveillance notification"@en .
hito:WhoDhiResearchInformationSystem
hito:astClaFrom hito:WhoDhiSystemCategoryApplicationSystemTypeCatalogue ;
hito:internalId "23" ;
a hito:ApplicationSystemTypeClassified ;
rdfs:label "Research information system"@en .
hito:WhoDhiRoutineHealthIndicatorDataCollectionAndManagement
hito:fClaFrom hito:WhoDhiHealthcareProviderFeatureCatalogue ;
hito:internalId "2.2.4" ;
hito:supportsFunctionClassified hito:WhoDhiClientHealthRecords ;
a hito:FeatureClassified ;
rdfs:label "Routine health indicator data collection and management"@en ;
skos:altLabel "client health data collection"@en, "data collection for Health Management Information System (HMIS)"@en .
hito:WhoDhiScheduleHealthcareProvidersActivities
hito:fClaFrom hito:WhoDhiHealthcareProviderFeatureCatalogue ;
hito:internalId "2.7.2" ;
hito:supportsFunctionClassified hito:WhoDhiHealthWorkerActivityPlanningAndScheduling ;
a hito:FeatureClassified ;
rdfs:label "Schedule healthcare provider's activities"@en ;
skos:altLabel "prioritization of daily activities/tasks"@en, "task management"@en, "work planning"@en .
hito:WhoDhiScreenClientsByRiskOrOtherHealthStatus
hito:fClaFrom hito:WhoDhiHealthcareProviderFeatureCatalogue ;
hito:internalId "2.3.3" ;
hito:supportsFunctionClassified hito:WhoDhiHealthcareProviderDecisionSupport ;
a hito:FeatureClassified ;
rdfs:label "Screen clients by risk or other health status"@en ;
skos:altLabel "job aid to support service delivery according to care plans, guidelines, and protocols"@en, "tools for screening, risk assessment, triage and client prioritization"@en .
hito:WhoDhiSelfMonitoringOfHealthOrDiagnosticDataByClient
hito:fClaFrom hito:WhoDhiClientFeatureCatalogue ;
hito:internalId "1.4.2" ;
hito:subFeatureOf hito:WhoDhiPersonalHealthTracking ;
a hito:FeatureClassified ;
rdfs:label "Self monitoring of health or diagnostic data by client"@en ;
skos:altLabel "client’s health data is collected based on a machine a client uses on their own"@en, "personal health monitoring"@en, "self-care"@en, "self-monitoring"@en, "self-tracking"@en, "sensors and wearables for personal health monitoring"@en .
hito:WhoDhiSharedHealthRecordAndHealthInformationRepositories
hito:astClaFrom hito:WhoDhiSystemCategoryApplicationSystemTypeCatalogue ;
hito:internalId "24" ;
a hito:ApplicationSystemTypeClassified ;
rdfs:label "Shared Health Record and health information repositories"@en .
hito:WhoDhiSupplyChainManagement
hito:efClaFrom hito:WhoDhiHealthSystemManagerFunctionCatalogue ;
hito:internalId "3.2" ;
a hito:EnterpriseFunctionClassified ;
rdfs:comment "Digital approaches for monitoring and reporting stock levels, consumption and distribution of medical commodities. This can include the use of communication systems (e.g. SMS) and data dashboards to manage and report on supply levels of medical commodities. "@en ;
rdfs:label "Supply chain management"@en .
hito:WhoDhiSystemCategoryApplicationSystemTypeCatalogue
a hito:ApplicationSystemTypeCatalogue ;
rdfs:comment "Section 'System Categories' describing Application System Types in the WHO Classification of Digital Health Interventions v1.0"@en ;
rdfs:label "WHO DHI System Categories"@en ;
rdfs:seeAlso <https://apps.who.int/iris/bitstream/handle/10665/260480/WHO-RHR-18.06-eng.pdf>, <https://www.who.int/reproductivehealth/publications/mhealth/WHO_Classifications_Poster.pdf> .
hito:WhoDhiTargetedClientCommunication
hito:fClaFrom hito:WhoDhiClientFeatureCatalogue ;
hito:internalId "1.1" ;
a hito:FeatureClassified ;
rdfs:comment "Transmission of targeted health information “in which separate audience segments (often demographic categories) benefit from a shared message.” Targeted communication can also be further customized according to an individual’s specific needs, resulting in “tailored client communication,” whereby message content is matched to the needs and preferences of an individual. The communication can be unidirectional and bidirectional, but initial contact is from the health system; as opposed to on-demand information service where the client initiates the first contact to the health system. "@en ;
rdfs:label "Targeted client communication"@en .
hito:WhoDhiTelemedicine
hito:efClaFrom hito:WhoDhiHealthcareProviderFunctionCatalogue ;
hito:internalId "2.4" ;
a hito:EnterpriseFunctionClassified ;
rdfs:comment "Provision of health-care services at a distance. The delivery of health care services, where patients and providers are separated by distance. "@en ;
rdfs:label "Telemedicine"@en .
hito:WhoDhiTelemedicineCategory
hito:astClaFrom hito:WhoDhiSystemCategoryApplicationSystemTypeCatalogue ;
hito:internalId "25" ;
a hito:ApplicationSystemTypeClassified ;
rdfs:label "Telemedicine Category"@en .
hito:WhoDhiTrackAndManageInsuranceReimbursement
hito:fClaFrom hito:WhoDhiHealthSystemManagerFeatureCatalogue ;
hito:internalId "3.5.3" ;
hito:supportsFunctionClassified hito:WhoDhiHealthFinancing ;
a hito:FeatureClassified ;
rdfs:label "Track and manage insurance reimbursement"@en ;
skos:altLabel "claims and encounter reports for reimbursement"@en, "insurance financial transactions"@en .
hito:WhoDhiTrackBiologicalSpecimens
hito:fClaFrom hito:WhoDhiHealthcareProviderFeatureCatalogue ;
hito:internalId "2.10.4" ;
hito:supportsFunctionClassified hito:WhoDhiLaboratoryAndDiagnosticsImagingManagement ;
a hito:FeatureClassified ;
rdfs:label "Track biological specimens"@en ;
skos:altLabel "tracking of blood donations"@en .
hito:WhoDhiTrackClientsMedicationConsumption
hito:fClaFrom hito:WhoDhiHealthcareProviderFeatureCatalogue ;
hito:internalId "2.9.2" ;
hito:supportsFunctionClassified hito:WhoDhiPrescriptionAndMedicationManagement ;
a hito:FeatureClassified ;
rdfs:label "Track client's medication consumption"@en ;
skos:altLabel "monitoring adherence to medications and drugs"@en, "monitoring/observing whether patients have taken their prescribed medications"@en .
hito:WhoDhiTrackInsuranceBillingAndClaimsSubmission
hito:fClaFrom hito:WhoDhiHealthSystemManagerFeatureCatalogue ;
hito:internalId "3.5.2" ;
hito:supportsFunctionClassified hito:WhoDhiHealthFinancing ;
a hito:FeatureClassified ;
rdfs:label "Track insurance billing and claims submission"@en ;
skos:altLabel "administrative transaction processing"@en, "claims management"@en, "social protection"@en .
hito:WhoDhiTrackRegulationAndLicensingOfMedicalEquipment
hito:fClaFrom hito:WhoDhiHealthSystemManagerFeatureCatalogue ;
hito:internalId "3.6.2" ;
hito:supportsFunctionClassified hito:WhoDhiEquipmentAndAssetManagement ;
a hito:FeatureClassified ;
rdfs:label "Track regulation and licensing of medical equipment"@en ;
skos:altLabel "physical asset management"@en, "regulation of physical assets"@en .
hito:WhoDhiTransmissionOfMedicalDataToHealthcareProvider
hito:fClaFrom hito:WhoDhiHealthcareProviderFeatureCatalogue ;
hito:internalId "2.4.3" ;
hito:supportsFunctionClassified hito:WhoDhiTelemedicine ;
a hito:FeatureClassified ;
rdfs:label "Transmission of medical data to healthcare provider"@en ;
skos:altLabel "asynchronous telemedicine"@en, "store and forward"@en .
hito:WhoDhiTransmitDiagnosticOrdersDiagnosticResults
hito:fClaFrom hito:WhoDhiHealthcareProviderFeatureCatalogue ;
hito:internalId "2.10.2" ;
hito:supportsFunctionClassified hito:WhoDhiLaboratoryAndDiagnosticsImagingManagement ;
a hito:FeatureClassified ;
rdfs:label "Transmit and track diagnostic orders"@en ;
skos:altLabel "laboratory test requisition and management"@en .
hito:WhoDhiTransmitDiagnosticsResultOrAvailabilityOfResultToClients
hito:fClaFrom hito:WhoDhiClientFeatureCatalogue ;
hito:internalId "1.1.4" ;
hito:subFeatureOf hito:WhoDhiTargetedClientCommunication ;
a hito:FeatureClassified ;
rdfs:label "Transmit diagnostics result, or availability of result, to clients"@en ;
skos:altLabel "laboratory results management"@en, "tests results management"@en .
hito:WhoDhiTransmitHealthEventAlertsToSpecificPopulationGroups
hito:fClaFrom hito:WhoDhiClientFeatureCatalogue ;
hito:internalId "1.1.1" ;
hito:subFeatureOf hito:WhoDhiTargetedClientCommunication ;
a hito:FeatureClassified ;
rdfs:label "Transmit health event alerts to specific population group(s)"@en ;
skos:altLabel "disease notification to specific or pre-identified populations"@en, "health promotion messaging"@en, "notification of health events to specific populations based on demographic characteristics"@en, "public health event notification"@en .
hito:WhoDhiTransmitNonroutineHealthEventAlertsToHealthcareProviders
hito:fClaFrom hito:WhoDhiHealthcareProviderFeatureCatalogue ;
hito:internalId "2.5.4" ;
hito:supportsFunctionClassified hito:WhoDhiHealthcareProviderCommunication ;
a hito:FeatureClassified ;
rdfs:label "Transmit non-routine health event alerts to healthcare providers"@en ;
skos:altLabel "emergency alerts to healthcare providers"@en, "mass messaging to healthcare providers"@en, "public health related updates to health workers"@en .
hito:WhoDhiTransmitOrManageIncentivesToClientsForHealthServices
hito:fClaFrom hito:WhoDhiClientFeatureCatalogue ;
hito:internalId "1.7.3" ;
hito:subFeatureOf hito:WhoDhiClientFinancialTransactions ;
a hito:FeatureClassified ;
rdfs:label "Transmit or manage incentives to clients for health services"@en ;
skos:altLabel "cash transfers to clients conditional on health related behaviours"@en .
hito:WhoDhiTransmitOrManageIncentivesToHealthcareProviders
hito:fClaFrom hito:WhoDhiHealthSystemManagerFeatureCatalogue ;