-
Notifications
You must be signed in to change notification settings - Fork 2
/
bb.ttl
1705 lines (1463 loc) · 73.9 KB
/
bb.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:Bb
dcterms:source <https://www.snik.eu/ontology/bb> ;
a hito:Classification ;
rdfs:label "Blue Book classification"@en ;
rdfs:member hito:BbApplicationSystemTypeCatalogue, hito:BbFeatureCatalogue, hito:BbFunctionCatalogue .
hito:BbAdministrateTheMasterPatientIndexMpi
hito:fClaFrom hito:BbFeatureCatalogue ;
hito:supportsFunctionClassified hito:BbPatientIdentificationAndCheckingForRecurrent ;
dcterms:source bb:AdministrateTheMasterPatientIndex ;
a hito:FeatureClassified ;
rdfs:label "Administrate the master patient index (MPI)"@en .
hito:BbAdministrationOfBusinessTripsAndFurtherTraining
hito:efClaFrom hito:BbFunctionCatalogue ;
hito:subFunctionOf hito:BbHumanResourceManagement ;
a hito:EnterpriseFunctionClassified ;
rdfs:label "administration of business trips and further training"@en .
hito:BbAdministrationOfHumanResourceMasterData
hito:efClaFrom hito:BbFunctionCatalogue ;
hito:subFunctionOf hito:BbHumanResourceManagement ;
a hito:EnterpriseFunctionClassified ;
rdfs:label "administration of human resource master data"@en .
hito:BbAdministrativeAdmission
hito:efClaFrom hito:BbFunctionCatalogue ;
hito:internalId "6.1" ;
hito:subFunctionOf hito:BbPatientAdmission ;
dc:source "Table6.1" ;
dcterms:source bb:AdministrativeAdmission ;
a hito:EnterpriseFunctionClassified ;
rdfs:label "Administrative admission"@en .
hito:BbAdministrativeDischargeAndBilling
hito:efClaFrom hito:BbFunctionCatalogue ;
hito:internalId "6.1" ;
hito:subFunctionOf hito:BbPatientDischargeAndTransferToOtherInstitutions ;
dc:source "Table6.1", "Table6.4" ;
dcterms:source bb:AdministrativeDischargeAndBilling ;
a hito:EnterpriseFunctionClassified ;
rdfs:label "Administrative discharge and billing"@en .
hito:BbAdministrativeDischargeAndFinalBilling
hito:efClaFrom hito:BbFunctionCatalogue ;
hito:subFunctionOf hito:BbPatientDischargeAndTransferToOtherInstitutions ;
a hito:EnterpriseFunctionClassified ;
rdfs:label "administrative discharge and final billing"@en .
hito:BbAdmitPatientsToTheWard
hito:fClaFrom hito:BbFeatureCatalogue ;
hito:supportsFunctionClassified hito:BbAdministrativeAdmission ;
dcterms:source bb:AdmitPatientsToTheWard ;
a hito:FeatureClassified ;
rdfs:label "Admit patients to the ward"@en .
hito:BbAnalyzeData
hito:fClaFrom hito:BbFeatureCatalogue ;
hito:supportsFunctionClassified hito:BbHospitalManagement ;
dcterms:source bb:AnalyzeData ;
a hito:FeatureClassified ;
rdfs:label "Analyze data"@en .
hito:BbApplicationSystemTypeCatalogue
a hito:ApplicationSystemTypeCatalogue ;
rdfs:comment "Application System Type catalogue defined in chapter 6 'Architecture of Hospital Information Systems' in tables 6.1 to 6.14 in the Blue Book edition 2"@en ;
rdfs:label "Blue Book Architecture Application System Type Catalogue"@en .
hito:BbAppointmentScheduling
hito:efClaFrom hito:BbFunctionCatalogue ;
hito:internalId "6.8" ;
hito:subFunctionOf hito:BbPatientAdmission ;
dc:source "Table6.8" ;
dcterms:source bb:AppointmentScheduling ;
a hito:EnterpriseFunctionClassified ;
rdfs:label "Appointment scheduling"@en .
hito:BbArchivePictures
hito:fClaFrom hito:BbFeatureCatalogue ;
hito:supportsFunctionClassified hito:BbExecutionOfRadiologicalExaminations ;
dcterms:source bb:ArchivePictures ;
a hito:FeatureClassified ;
rdfs:label "Archive pictures"@en .
hito:BbArchivingOfPatientInformation
hito:efClaFrom hito:BbFunctionCatalogue ;
hito:internalId "6.13" ;
hito:subFunctionOf hito:BbHospitalAdministration ;
dc:source "Table6.13" ;
dcterms:source bb:ArchivingOfPatientInformation ;
a hito:EnterpriseFunctionClassified ;
rdfs:label "Archiving of patient information"@en .
hito:BbAssignDoctorsToPatientsOrRooms
hito:fClaFrom hito:BbFeatureCatalogue ;
hito:supportsFunctionClassified hito:BbHumanResourceManagement ;
dcterms:source bb:AssignDoctorsToPatientsOrRooms ;
a hito:FeatureClassified ;
rdfs:label "Assign doctors to patients or rooms"@en .
hito:BbAssignOrderAndBloodSamplesToDevices
hito:fClaFrom hito:BbFeatureCatalogue ;
hito:supportsFunctionClassified hito:BbExecutionOfLabExaminations ;
dcterms:source bb:AssignOrderAndBloodSamplesToDevices ;
a hito:FeatureClassified ;
rdfs:label "Assign order and blood samples to devices"@en .
hito:BbAssignOrdersToModalities
hito:fClaFrom hito:BbFeatureCatalogue ;
hito:supportsFunctionClassified hito:BbExecutionOfRadiologicalExaminations ;
dcterms:source bb:AssignOrdersToModalities ;
a hito:FeatureClassified ;
rdfs:label "Assign orders to modalities"@en .
hito:BbAssignPatientsToModalities
hito:fClaFrom hito:BbFeatureCatalogue ;
hito:supportsFunctionClassified hito:BbAppointmentScheduling ;
dcterms:source bb:AssignPatientsToModalities ;
a hito:FeatureClassified ;
rdfs:label "Assign patients to modalities"@en .
hito:BbAssignPatientsToRoomsAndBeds
hito:fClaFrom hito:BbFeatureCatalogue ;
hito:supportsFunctionClassified hito:BbAdministrativeAdmission ;
dcterms:source bb:AssignPatientsToRoomsAndBeds ;
a hito:FeatureClassified ;
rdfs:label "Assign patients to rooms and beds"@en .
hito:BbAssignStaffToPatientsOrOutpatientUnits
hito:fClaFrom hito:BbFeatureCatalogue ;
hito:supportsFunctionClassified hito:BbHumanResourceManagement ;
dcterms:source bb:AssignStaffToPatientsOrOutpatientUnits ;
a hito:FeatureClassified ;
rdfs:label "Assign staff to patients or outpatient units"@en .
hito:BbAssignStaffToPatientsOrRooms
hito:fClaFrom hito:BbFeatureCatalogue ;
hito:supportsFunctionClassified hito:BbSchedulingAndResourceAllocation, hito:BbSupplyAndDisposalManagement ;
dcterms:source bb:AssignStaffToPatientsOrRooms ;
a hito:FeatureClassified ;
rdfs:label "Assign staff to patients or rooms"@en .
hito:BbAttachDigitalSignatures
hito:fClaFrom hito:BbFeatureCatalogue ;
hito:supportsFunctionClassified hito:BbArchivingOfPatientInformation ;
dcterms:source bb:AttachDigitalSignatures ;
a hito:FeatureClassified ;
rdfs:label "Attach digital signatures"@en .
hito:BbBloodBankManagementSystem
hito:astClaFrom hito:BbApplicationSystemTypeCatalogue ;
dc:source "Table 6.14" ;
a hito:ApplicationSystemTypeClassified ;
rdfs:comment "Supports blood donor services, blood analyses, administration of blood bottles."@en ;
rdfs:label "Blood bank management system"@en .
hito:BbCalculateDosageOfDrugs
hito:fClaFrom hito:BbFeatureCatalogue ;
hito:supportsFunctionClassified hito:BbOrderEntry ;
dcterms:source bb:CalculateDosageOfDrugs ;
a hito:FeatureClassified ;
rdfs:label "Calculate dosage of drugs"@en .
hito:BbCardiovascularInformationSystem
hito:astClaFrom hito:BbApplicationSystemTypeCatalogue ;
dc:source "Table 6.14" ;
a hito:ApplicationSystemTypeClassified ;
rdfs:comment "Provides many features of a clinical information system and a radiology information system while tailoring the special needs of a cardiology department."@en ;
rdfs:label "Cardiovascular information system"@en ;
skos:altLabel "CVIS"@en .
hito:BbCatering
hito:efClaFrom hito:BbFunctionCatalogue ;
hito:subFunctionOf hito:BbSupplyAndDisposalManagement ;
a hito:EnterpriseFunctionClassified ;
rdfs:label "catering"@en .
hito:BbClinicalInformationSystem
hito:astClaFrom hito:BbApplicationSystemTypeCatalogue ;
dc:source "Chapter 6.4.15" ;
a hito:ApplicationSystemTypeClassified ;
rdfs:label "Clinical Information System"@en ;
skos:altLabel "CIS"@en, "EPR System"@en .
hito:BbCodingOfDiagnosesAndProcedures
hito:efClaFrom hito:BbFunctionCatalogue ;
hito:internalId "6.1" ;
hito:subFunctionOf hito:BbPatientCare ;
dc:source "Table6.1", "Table6.3", "Table6.6", "Table6.7", "Table6.8" ;
dcterms:source bb:CodingOfDiagnosesAndProcedures ;
a hito:EnterpriseFunctionClassified ;
rdfs:label "Coding of diagnoses and procedures"@en .
hito:BbCodingOfProcedures
hito:efClaFrom hito:BbFunctionCatalogue ;
hito:subFunctionOf hito:BbCodingOfDiagnosesAndProcedures ;
a hito:EnterpriseFunctionClassified ;
rdfs:label "coding of procedures"@en .
hito:BbCollectResultsFromDevices
hito:fClaFrom hito:BbFeatureCatalogue ;
hito:supportsFunctionClassified hito:BbExecutionOfLabExaminations ;
dcterms:source bb:CollectResultsFromDevices ;
a hito:FeatureClassified ;
rdfs:label "Collect results from devices"@en .
hito:BbCommunicateDischargeInformation
hito:fClaFrom hito:BbFeatureCatalogue ;
hito:supportsFunctionClassified hito:BbNursingDischargeAndNursingReportWriting, hito:BbPatientDischargeAndTransferToOtherInstitutions ;
dcterms:source bb:CommunicateDischargeInformation ;
a hito:FeatureClassified ;
rdfs:label "Communicate discharge information"@en .
hito:BbCommunicateDocumentsToOtherApplications
hito:fClaFrom hito:BbFeatureCatalogue ;
hito:supportsFunctionClassified hito:BbExecutionOfRadiologicalExaminations ;
dcterms:source bb:CommunicateDocumentsToOtherApplications ;
a hito:FeatureClassified ;
rdfs:label "Communicate documents to other applications"@en .
hito:BbCommunicatePictures
hito:fClaFrom hito:BbFeatureCatalogue ;
hito:supportsFunctionClassified hito:BbExecutionOfRadiologicalExaminations ;
dcterms:source bb:CommunicatePictures ;
a hito:FeatureClassified ;
rdfs:label "Communicate pictures"@en .
hito:BbCommunicateReportToOrderingUnit
hito:fClaFrom hito:BbFeatureCatalogue ;
hito:supportsFunctionClassified hito:BbExecutionOfLabExaminations ;
dcterms:source bb:CommunicateReportToOrderingUnit ;
a hito:FeatureClassified ;
rdfs:label "Communicate report to ordering unit"@en .
hito:BbControlling
hito:efClaFrom hito:BbFunctionCatalogue ;
hito:internalId "6.11" ;
hito:subFunctionOf hito:BbHospitalAdministration ;
dc:source "Table6.11" ;
dcterms:source bb:Controlling ;
a hito:EnterpriseFunctionClassified ;
rdfs:label "Controlling"@en .
hito:BbCostAndResultsAccounting
hito:efClaFrom hito:BbFunctionCatalogue ;
hito:subFunctionOf hito:BbHospitalAdministration ;
a hito:EnterpriseFunctionClassified ;
rdfs:label "cost and results accounting"@en .
hito:BbCreateWorkListForAGroupOfPatients
hito:fClaFrom hito:BbFeatureCatalogue ;
hito:supportsFunctionClassified hito:BbExecutionOfDiagnosticTherapeuticAndNursingProcedures ;
dcterms:source bb:FeatureCreateWorklistForAGroupOfPatients ;
a hito:FeatureClassified ;
rdfs:label "Create work list for a group of patients"@en .
hito:BbCreatingARoster
hito:fClaFrom hito:BbFeatureCatalogue ;
hito:supportsFunctionClassified hito:BbHumanResourceManagement ;
dcterms:source bb:CreatingARoster ;
a hito:FeatureClassified ;
rdfs:label "Creating a roster"@en .
hito:BbDataWarehouseSystem
hito:astClaFrom hito:BbApplicationSystemTypeCatalogue ;
dc:source "Table 6.12" ;
a hito:ApplicationSystemTypeClassified ;
rdfs:label "Data Warehouse System"@en .
hito:BbDecisionMakingAndPatientInformation
hito:efClaFrom hito:BbFunctionCatalogue ;
hito:internalId "6.7" ;
hito:subFunctionOf hito:BbDecisionMakingPlanningAndOrganizationOfPatientTreatment ;
dc:source "Table6.7" ;
dcterms:source bb:DecisionMakingAndPatientInformation ;
a hito:EnterpriseFunctionClassified ;
rdfs:label "Decision making and patient information"@en .
hito:BbDecisionMakingPlanningAndOrganizationOfPatientTreatment
hito:efClaFrom hito:BbFunctionCatalogue ;
hito:internalId "6.2" ;
hito:subFunctionOf hito:BbPatientCare ;
dc:source "Table6.2", "Table6.4" ;
dcterms:source bb:DecisionMakingPlanningAndOrganizationOfPatientTreatment ;
a hito:EnterpriseFunctionClassified ;
rdfs:label "Decision making and planning of patient treatment"@en .
hito:BbDecisionSupportSystem
hito:astClaFrom hito:BbApplicationSystemTypeCatalogue ;
dc:source "Table 6.14" ;
a hito:ApplicationSystemTypeClassified ;
rdfs:comment "A knowledge-based system which assists a doctor in finding the right diagnosis or treatment for a specific patient."@en ;
rdfs:label "Decision support system"@en .
hito:BbDialysisInformationSystem
hito:astClaFrom hito:BbApplicationSystemTypeCatalogue ;
dc:source "Table 6.14" ;
a hito:ApplicationSystemTypeClassified ;
rdfs:comment "Provides many features of a clinical information system while tailoring the special needs of a dialysis department, has interfaces to hemodialysis machines."@en ;
rdfs:label "Dialysis information system"@en .
hito:BbDigitalDictationSystem
hito:astClaFrom hito:BbApplicationSystemTypeCatalogue ;
dc:source "Table 6.14" ;
a hito:ApplicationSystemTypeClassified ;
rdfs:comment "Offers features for digital voice recording and speech recognition, is often integrated into medical information systems and supports report, finding and letter writing."@en ;
rdfs:label "Digital dictation system"@en .
hito:BbDisplayEarlierLabResultsOfAPatient
hito:fClaFrom hito:BbFeatureCatalogue ;
hito:supportsFunctionClassified hito:BbExecutionOfLabExaminations ;
dcterms:source bb:DisplayEarlierLabResultsOfAPatient ;
a hito:FeatureClassified ;
rdfs:label "Display earlier lab results of a patient"@en .
hito:BbDisplayPictures
hito:fClaFrom hito:BbFeatureCatalogue ;
hito:supportsFunctionClassified hito:BbExecutionOfRadiologicalExaminations ;
dcterms:source bb:DisplayPictures ;
a hito:FeatureClassified ;
rdfs:label "Display pictures"@en .
hito:BbDisplayVitalParametersFromMonitoringDevices
hito:fClaFrom hito:BbFeatureCatalogue ;
hito:supportsFunctionClassified hito:BbExecutionOfAnOperation, hito:BbExecutionOfDiagnosticTherapeuticAndNursingProcedures ;
dcterms:source bb:DisplayVitalParametersFromMonitoringDevices ;
a hito:FeatureClassified ;
rdfs:label "Display vital parameters from monitoring devices"@en .
hito:BbDisplayWarningMessages
hito:fClaFrom hito:BbFeatureCatalogue ;
hito:supportsFunctionClassified hito:BbExecutionOfDiagnosticTherapeuticAndNursingProcedures ;
dcterms:source bb:DisplayWarningMessages ;
a hito:FeatureClassified ;
rdfs:label "Display warning messages"@en .
hito:BbDocumentArchivingSystem
hito:astClaFrom hito:BbApplicationSystemTypeCatalogue ;
dc:source "Table 6.13" ;
a hito:ApplicationSystemTypeClassified ;
rdfs:label "Document Archiving System"@en .
hito:BbEducation
hito:efClaFrom hito:BbFunctionCatalogue ;
hito:subFunctionOf hito:BbResearchAndEducation ;
a hito:EnterpriseFunctionClassified ;
rdfs:label "education"@en .
hito:BbElectronicPatientRecordSystem
hito:astClaFrom hito:BbApplicationSystemTypeCatalogue ;
dc:source "Chapter 6.4.15" ;
a hito:ApplicationSystemTypeClassified ;
rdfs:label "Electronic Patient Record System"@en ;
skos:altLabel "CIS"@en, "EPR System"@en .
hito:BbEnterpriseResourcePlanningSystem
hito:astClaFrom hito:BbApplicationSystemTypeCatalogue ;
dc:source "Table 6.11" ;
a hito:ApplicationSystemTypeClassified ;
rdfs:label "Enterprise Resource Planning System"@en .
hito:BbExecutionOfAnOperation
hito:efClaFrom hito:BbFunctionCatalogue ;
hito:internalId "6.7" ;
hito:subFunctionOf hito:BbExecutionOfDiagnosticTherapeuticAndNursingProcedures ;
dc:source "Table6.7" ;
dcterms:source bb:ExecutionOfAnOperation ;
a hito:EnterpriseFunctionClassified ;
rdfs:label "Execution of an operation"@en .
hito:BbExecutionOfClinicalTrialsAndExperiments
hito:efClaFrom hito:BbFunctionCatalogue ;
hito:internalId "6.12" ;
hito:subFunctionOf hito:BbResearchAndEducation ;
dc:source "Table6.12" ;
dcterms:source bb:ExecutionOfClinicalTrialsAndExperiments ;
a hito:EnterpriseFunctionClassified ;
rdfs:label "Execution of clinical trials and experiments"@en .
hito:BbExecutionOfDiagnosticTherapeuticAndNursingProcedures
hito:efClaFrom hito:BbFunctionCatalogue ;
hito:internalId "6.2" ;
hito:subFunctionOf hito:BbPatientCare ;
dc:source "Table6.2", "Table6.4", "Table6.6" ;
dcterms:source bb:ExecutionOfDiagnosticTherapeuticAndNursingProcedures ;
a hito:EnterpriseFunctionClassified ;
rdfs:label "Execution of diagnostic, therapeutic and nursing Procedures"@en .
hito:BbExecutionOfLabExaminations
hito:efClaFrom hito:BbFunctionCatalogue ;
hito:internalId "6.10" ;
hito:subFunctionOf hito:BbExecutionOfDiagnosticTherapeuticAndNursingProcedures ;
dc:source "Table6.10" ;
dcterms:source bb:ExecutionOfLabExaminations ;
a hito:EnterpriseFunctionClassified ;
rdfs:label "Execution of lab examinations"@en .
hito:BbExecutionOfNursingProcedures
hito:efClaFrom hito:BbFunctionCatalogue ;
hito:internalId "6.3" ;
hito:subFunctionOf hito:BbExecutionOfDiagnosticTherapeuticAndNursingProcedures ;
dc:source "Table6.3" ;
dcterms:source bb:ExecutionOfNursingProcedures ;
a hito:EnterpriseFunctionClassified ;
rdfs:label "Execution of nursing procedures"@en .
hito:BbExecutionOfRadiologicalExaminations
hito:efClaFrom hito:BbFunctionCatalogue ;
hito:internalId "6.8" ;
hito:subFunctionOf hito:BbExecutionOfDiagnosticTherapeuticAndNursingProcedures ;
dc:source "Table6.8", "Table6.9" ;
a hito:EnterpriseFunctionClassified ;
rdfs:label "Execution of radiological examinations"@en .
hito:BbFacilityManagement
hito:efClaFrom hito:BbFunctionCatalogue ;
hito:internalId "6.11" ;
hito:subFunctionOf hito:BbHospitalAdministration ;
dc:source "Table6.11" ;
dcterms:source bb:FacilityManagement ;
a hito:EnterpriseFunctionClassified ;
rdfs:label "Facility management"@en .
hito:BbFeatureCatalogue
a hito:FeatureCatalogue ;
rdfs:comment "Feature catalogue defined in chapter 6 'Architecture of Hospital Information Systems' in tables 6.1 to 6.13 in the Blue Book edition 2"@en ;
rdfs:label "Blue Book Architecture Feature Catalogue"@en .
hito:BbFinancialAccounting
hito:efClaFrom hito:BbFunctionCatalogue ;
hito:internalId "6.11" ;
hito:subFunctionOf hito:BbHospitalAdministration ;
dc:source "Table6.11" ;
dcterms:source bb:FinancialAccounting ;
a hito:EnterpriseFunctionClassified ;
rdfs:label "Financial accounting"@en .
hito:BbFunctionCatalogue
a hito:EnterpriseFunctionCatalogue ;
rdfs:comment "Function catalogue defined in chapter 6 'Architecture of Hospital Information Systems' in tables 6.1 to 6.13 in the Blue Book edition 2"@en ;
rdfs:label "Blue Book Architecture Function Catalogue"@en .
hito:BbGenerateAUniquePinAndACin
hito:fClaFrom hito:BbFeatureCatalogue ;
hito:supportsFunctionClassified hito:BbPatientIdentificationAndCheckingForRecurrent ;
a hito:FeatureClassified ;
rdfs:label "Generate a unique PIN and a CIN"@en .
hito:BbHospitalAdministration
hito:efClaFrom hito:BbFunctionCatalogue ;
a hito:EnterpriseFunctionClassified ;
rdfs:label "hospital administration"@en .
hito:BbHospitalManagement
hito:efClaFrom hito:BbFunctionCatalogue ;
hito:internalId "6.12" ;
dc:source "Table6.12" ;
dcterms:source bb:HospitalManagement ;
a hito:EnterpriseFunctionClassified ;
rdfs:label "Hospital management"@en .
hito:BbHumanResourceManagement
hito:efClaFrom hito:BbFunctionCatalogue ;
hito:internalId "6.2" ;
hito:subFunctionOf hito:BbSupplyManagementSchedulingAndResourceAllocation ;
dc:source "Table6.11", "Table6.2", "Table6.3", "Table6.4", "Table6.6" ;
dcterms:source bb:HumanResourceManagement ;
a hito:EnterpriseFunctionClassified ;
rdfs:label "Human resource management"@en .
hito:BbHumanResourcePlanning
hito:efClaFrom hito:BbFunctionCatalogue ;
hito:subFunctionOf hito:BbHumanResourceManagement ;
a hito:EnterpriseFunctionClassified ;
rdfs:label "human resource planning"@en .
hito:BbHumanResourcesManagement
hito:efClaFrom hito:BbFunctionCatalogue ;
hito:subFunctionOf hito:BbSupplyManagementSchedulingAndResourceAllocation ;
a hito:EnterpriseFunctionClassified ;
rdfs:label "human resources management"@en .
hito:BbImportDocuments
hito:fClaFrom hito:BbFeatureCatalogue ;
hito:supportsFunctionClassified hito:BbArchivingOfPatientInformation ;
dcterms:source bb:ImportDocuments ;
a hito:FeatureClassified ;
rdfs:label "Import documents"@en .
hito:BbIndexDocumentContent
hito:fClaFrom hito:BbFeatureCatalogue ;
hito:supportsFunctionClassified hito:BbArchivingOfPatientInformation ;
dcterms:source bb:IndexDocumentContent ;
a hito:FeatureClassified ;
rdfs:label "Index document content"@en .
hito:BbInformationManagement
hito:efClaFrom hito:BbFunctionCatalogue ;
hito:subFunctionOf hito:BbHospitalAdministration ;
a hito:EnterpriseFunctionClassified ;
rdfs:label "information management"@en .
hito:BbIntegrateDataFromDifferentApplicationComponents
hito:fClaFrom hito:BbFeatureCatalogue ;
hito:supportsFunctionClassified hito:BbHospitalManagement ;
dcterms:source bb:IntegrateDataFromDifferentApplicationComponents ;
a hito:FeatureClassified ;
rdfs:label "Integrate data from different application components"@en .
hito:BbInternalQualityManagement
hito:efClaFrom hito:BbFunctionCatalogue ;
hito:subFunctionOf hito:BbQualityManagement ;
a hito:EnterpriseFunctionClassified ;
rdfs:label "internal quality management"@en .
hito:BbKnowledgeInquiryAndLiteratureManagement
hito:efClaFrom hito:BbFunctionCatalogue ;
hito:subFunctionOf hito:BbResearchAndEducation ;
a hito:EnterpriseFunctionClassified ;
rdfs:label "knowledge inquiry and literature management"@en .
hito:BbLaboratoryInformationSystem
hito:astClaFrom hito:BbApplicationSystemTypeCatalogue ;
dc:source "Table 6.10" ;
a hito:ApplicationSystemTypeClassified ;
rdfs:label "Laboratory Information System"@en ;
skos:altLabel "LIS"@en .
hito:BbLaundryManagement
hito:efClaFrom hito:BbFunctionCatalogue ;
hito:subFunctionOf hito:BbSupplyAndDisposalManagement ;
a hito:EnterpriseFunctionClassified ;
rdfs:label "laundry management"@en .
hito:BbLongTermArchiving
hito:efClaFrom hito:BbFunctionCatalogue ;
hito:subFunctionOf hito:BbArchivingOfPatientInformation ;
a hito:EnterpriseFunctionClassified ;
rdfs:label "long term archiving"@en .
hito:BbManageModalities
hito:fClaFrom hito:BbFeatureCatalogue ;
hito:supportsFunctionClassified hito:BbManagementOfMedicalDevices ;
dcterms:source bb:ManageModalities ;
a hito:FeatureClassified ;
rdfs:label "Manage modalities"@en .
hito:BbManageStorageFormats
hito:fClaFrom hito:BbFeatureCatalogue ;
hito:supportsFunctionClassified hito:BbArchivingOfPatientInformation ;
dcterms:source bb:ManageStorageFormats ;
a hito:FeatureClassified ;
rdfs:label "Manage storage formats"@en .
hito:BbManageStorageMedia
hito:fClaFrom hito:BbFeatureCatalogue ;
hito:supportsFunctionClassified hito:BbArchivingOfPatientInformation ;
dcterms:source bb:ManageStorageMedia ;
a hito:FeatureClassified ;
rdfs:label "Manage storage media"@en .
hito:BbManagementOfMedicalDevices
hito:efClaFrom hito:BbFunctionCatalogue ;
hito:internalId "6.8" ;
hito:subFunctionOf hito:BbSupplyAndDisposalManagement ;
dc:source "Table6.8" ;
dcterms:source bb:ManagementOfMedicalDevices ;
a hito:EnterpriseFunctionClassified ;
rdfs:label "Management of Medical Devices"@en .
hito:BbMaterialAndMedicationManagement
hito:efClaFrom hito:BbFunctionCatalogue ;
hito:subFunctionOf hito:BbSupplyAndDisposalManagement ;
a hito:EnterpriseFunctionClassified ;
rdfs:label "material and medication management"@en .
hito:BbMedicalAdmission
hito:efClaFrom hito:BbFunctionCatalogue ;
hito:internalId "6.2" ;
hito:subFunctionOf hito:BbPatientAdmission ;
dc:source "Table6.2", "Table6.4", "Table6.6", "Table6.7", "Table6.8" ;
dcterms:source bb:MedicalAdmission ;
a hito:EnterpriseFunctionClassified ;
rdfs:label "Medical admission"@en .
hito:BbMedicalAndNursingCarePlanning
hito:efClaFrom hito:BbFunctionCatalogue ;
hito:internalId "6.3" ;
hito:subFunctionOf hito:BbDecisionMakingPlanningAndOrganizationOfPatientTreatment ;
dc:source "Table6.3", "Table6.6" ;
dcterms:source bb:MedicalAndNursingCarePlanning ;
a hito:EnterpriseFunctionClassified ;
rdfs:label "Medical and nursing care planning"@en .
hito:BbMedicalDischargeAndWritingTheDischargeLetter
hito:efClaFrom hito:BbFunctionCatalogue ;
hito:subFunctionOf hito:BbPatientDischargeAndTransferToOtherInstitutions ;
a hito:EnterpriseFunctionClassified ;
rdfs:label "medical discharge and writing the discharge letter"@en .
hito:BbMedicalDocumentationSystem
hito:astClaFrom hito:BbApplicationSystemTypeCatalogue ;
dc:source "Table 6.2" ;
a hito:ApplicationSystemTypeClassified ;
rdfs:label "Medical Documentation System"@en .
hito:BbMergePatientInformationFromTwoRecords
hito:fClaFrom hito:BbFeatureCatalogue ;
hito:supportsFunctionClassified hito:BbAdministrativeAdmission ;
dcterms:source bb:MergePatientInformationFromTwoRecords ;
a hito:FeatureClassified ;
rdfs:label "Merge patient information from two records"@en .
hito:BbModifyPresentationOfPictures
hito:fClaFrom hito:BbFeatureCatalogue ;
hito:supportsFunctionClassified hito:BbExecutionOfRadiologicalExaminations ;
dcterms:source bb:ModifyPresentationOfPictures ;
a hito:FeatureClassified ;
rdfs:label "Modify presentation of pictures"@en .
hito:BbNursingAdmission
hito:efClaFrom hito:BbFunctionCatalogue ;
hito:internalId "6.3" ;
hito:subFunctionOf hito:BbPatientAdmission ;
dc:source "Table6.3" ;
dcterms:source bb:NursingAdmission ;
a hito:EnterpriseFunctionClassified ;
rdfs:label "Nursing admission"@en .
hito:BbNursingDischargeAndNursingReportWriting
hito:efClaFrom hito:BbFunctionCatalogue ;
hito:internalId "6.3" ;
hito:subFunctionOf hito:BbPatientDischargeAndTransferToOtherInstitutions ;
dc:source "Table6.3" ;
dcterms:source bb:NursingDischargeAndNursingReportWriting ;
a hito:EnterpriseFunctionClassified ;
rdfs:label "Nursing discharge and nursing report writing"@en .
hito:BbNursingDischargeAndWritingTheNursingDischargeReport
hito:efClaFrom hito:BbFunctionCatalogue ;
hito:subFunctionOf hito:BbPatientDischargeAndTransferToOtherInstitutions ;
a hito:EnterpriseFunctionClassified ;
rdfs:label "nursing discharge and writing the nursing discharge report"@en .
hito:BbNursingManagementAndDocumentationSystem
hito:astClaFrom hito:BbApplicationSystemTypeCatalogue ;
dc:source "Table 6.3" ;
a hito:ApplicationSystemTypeClassified ;
rdfs:label "Nursing Management and Documentation System"@en .
hito:BbOfferDecisionsupportForCarePlanning
hito:fClaFrom hito:BbFeatureCatalogue ;
hito:supportsFunctionClassified hito:BbMedicalAndNursingCarePlanning ;
dcterms:source bb:OfferDecisionSupportForCarePlanning ;
a hito:FeatureClassified ;
rdfs:label "Offer decision-support for care planning"@en .
hito:BbOncologyInformationSystem
hito:astClaFrom hito:BbApplicationSystemTypeCatalogue ;
dc:source "Table 6.14" ;
a hito:ApplicationSystemTypeClassified ;
rdfs:comment "Provides many features of a clinical information system while tailoring the special needs of an oncology department."@en ;
rdfs:label "Oncology information system"@en .
hito:BbOpeningAPatientRecord
hito:efClaFrom hito:BbFunctionCatalogue ;
hito:subFunctionOf hito:BbArchivingOfPatientInformation ;
a hito:EnterpriseFunctionClassified ;
rdfs:label "opening a patient record"@en .
hito:BbOperationManagementSystem
hito:astClaFrom hito:BbApplicationSystemTypeCatalogue ;
dc:source "Table 6.7" ;
a hito:ApplicationSystemTypeClassified ;
rdfs:label "Operation Management System"@en .
hito:BbOperationalInformationManagement
hito:efClaFrom hito:BbFunctionCatalogue ;
hito:subFunctionOf hito:BbInformationManagement ;
a hito:EnterpriseFunctionClassified ;
rdfs:label "operational information management"@en .
hito:BbOrderEntry
hito:efClaFrom hito:BbFunctionCatalogue ;
hito:internalId "6.5" ;
hito:subFunctionOf hito:BbPatientCare ;
dc:source "Table6.5" ;
dcterms:source bb:OrderEntry ;
a hito:EnterpriseFunctionClassified ;
rdfs:label "Order entry"@en .
hito:BbOrganizePatientTransport
hito:fClaFrom hito:BbFeatureCatalogue ;
hito:supportsFunctionClassified hito:BbSchedulingAndResourceAllocation, hito:BbSupplyAndDisposalManagement ;
dcterms:source bb:OrganizePatientTransport ;
a hito:FeatureClassified ;
rdfs:label "Organize patient transport"@en .
hito:BbOrthopedicsInformationSystem
hito:astClaFrom hito:BbApplicationSystemTypeCatalogue ;
dc:source "Table 6.14" ;
a hito:ApplicationSystemTypeClassified ;
rdfs:comment "Provides many features of a clinical information system while tailoring the special needs of an orthopedics department, can include a computer-aided design (CAD) system for transplant planning."@en ;
rdfs:label "Orthopedics information system"@en .
hito:BbOutpatientManagementSystem
hito:astClaFrom hito:BbApplicationSystemTypeCatalogue ;
dc:source "Table 6.4" ;
a hito:ApplicationSystemTypeClassified ;
rdfs:label "Outpatient Management System"@en .
hito:BbPathologyInformationSystem
hito:astClaFrom hito:BbApplicationSystemTypeCatalogue ;
dc:source "Table 6.14" ;
a hito:ApplicationSystemTypeClassified ;
rdfs:comment "Has similar features as a laboratory information system, e. g. receiving orders, writing reports."@en ;
rdfs:label "Pathology information system"@en .
hito:BbPatientAdministration
hito:efClaFrom hito:BbFunctionCatalogue ;
hito:subFunctionOf hito:BbHospitalAdministration ;
a hito:EnterpriseFunctionClassified ;
rdfs:label "patient administration"@en .
hito:BbPatientAdministrationSystem
hito:astClaFrom hito:BbApplicationSystemTypeCatalogue ;
dc:source "Table 6.1" ;
a hito:ApplicationSystemTypeClassified ;
rdfs:label "Patient Administration System"@en .
hito:BbPatientAdmission
hito:efClaFrom hito:BbFunctionCatalogue ;
hito:subFunctionOf hito:BbPatientCare ;
a hito:EnterpriseFunctionClassified ;
rdfs:label "patient admission"@en .
hito:BbPatientCare
hito:efClaFrom hito:BbFunctionCatalogue ;
a hito:EnterpriseFunctionClassified ;
rdfs:label "patient care"@en .
hito:BbPatientDataManagementSystem
hito:astClaFrom hito:BbApplicationSystemTypeCatalogue ;
dc:source "Table 6.6" ;
a hito:ApplicationSystemTypeClassified ;
rdfs:label "Patient Data Management System"@en ;
skos:altLabel "PDMS"@en .
hito:BbPatientDischargeAndTransferToOtherInstitutions
hito:efClaFrom hito:BbFunctionCatalogue ;
hito:internalId "6.2" ;
hito:subFunctionOf hito:BbPatientCare ;
dc:source "Table6.2", "Table6.4", "Table6.6", "Table6.7" ;
dcterms:source bb:PatientDischargeAndTransferToOtherInstitutions ;
a hito:EnterpriseFunctionClassified ;
rdfs:label "Patient discharge and transfer to other institutions"@en .
hito:BbPatientIdentificationAndCheckingForRecurrent
hito:efClaFrom hito:BbFunctionCatalogue ;
hito:internalId "6.1" ;
hito:subFunctionOf hito:BbPatientAdmission ;
dc:source "Table6.1" ;
dcterms:source bb:PatientIdentificationAndCheckingForRecurrent ;
a hito:EnterpriseFunctionClassified ;
rdfs:label "Patient identification and checking for recurrent"@en .
hito:BbPayrollAccounting
hito:efClaFrom hito:BbFunctionCatalogue ;
hito:subFunctionOf hito:BbHumanResourceManagement ;
a hito:EnterpriseFunctionClassified ;
rdfs:label "payroll accounting"@en .
hito:BbPerformanceOfLegalNotificationRequirements
hito:efClaFrom hito:BbFunctionCatalogue ;
hito:subFunctionOf hito:BbQualityManagement ;
a hito:EnterpriseFunctionClassified ;
rdfs:label "performance of legal notification requirements"@en .
hito:BbPharmacyInformationSystem
hito:astClaFrom hito:BbApplicationSystemTypeCatalogue ;
dc:source "Table 6.14" ;
a hito:ApplicationSystemTypeClassified ;
rdfs:comment "Supports the workflow in the pharmacy department: receiving drug orders, managing the drug stock, distributing drugs throughout the hospital."@en ;
rdfs:label "Pharmacy information system"@en .
hito:BbPictureArchivingAndCommunicationSystem
hito:astClaFrom hito:BbApplicationSystemTypeCatalogue ;
dc:source "Table 6.9" ;
a hito:ApplicationSystemTypeClassified ;
rdfs:label "Picture Archiving and Communication System"@en ;
skos:altLabel "PACS"@en .
hito:BbPreparationOfAnOrder
hito:efClaFrom hito:BbFunctionCatalogue ;
hito:subFunctionOf hito:BbOrderEntry ;
a hito:EnterpriseFunctionClassified ;
rdfs:label "preparation of an order"@en .
hito:BbPrepareReport
hito:fClaFrom hito:BbFeatureCatalogue ;
hito:supportsFunctionClassified hito:BbExecutionOfLabExaminations ;
dcterms:source bb:PrepareReport ;
a hito:FeatureClassified ;
rdfs:label "Prepare report"@en .
hito:BbPrintForms
hito:fClaFrom hito:BbFeatureCatalogue ;
hito:supportsFunctionClassified hito:BbExecutionOfDiagnosticTherapeuticAndNursingProcedures, hito:BbSchedulingAndResourceAllocation ;
dcterms:source bb:PrintForms ;
a hito:FeatureClassified ;
rdfs:label "Print forms"@en .
hito:BbPrintReports
hito:fClaFrom hito:BbFeatureCatalogue ;
hito:supportsFunctionClassified hito:BbExecutionOfDiagnosticTherapeuticAndNursingProcedures ;
dcterms:source bb:PrintReports ;
a hito:FeatureClassified ;
rdfs:label "Print reports"@en .
hito:BbProvideACollectionOfInternalProcessesAndRegulations
hito:fClaFrom hito:BbFeatureCatalogue ;
hito:supportsFunctionClassified hito:BbQualityManagement ;
dcterms:source bb:ProvideACollectionOfInternalProcessesAndRegulations ;
a hito:FeatureClassified ;
rdfs:label "Provide a collection of internal processes and regulations"@en .
hito:BbProvideAccessToArchivedInformation
hito:fClaFrom hito:BbFeatureCatalogue ;
hito:supportsFunctionClassified hito:BbArchivingOfPatientInformation ;
dcterms:source bb:ProvideAccessToArchivedInformation ;
a hito:FeatureClassified ;
rdfs:label "Provide access to archived information"@en .
hito:BbProvideCatalogsAndOtherMeansForCodingOfDiagnoses
hito:fClaFrom hito:BbFeatureCatalogue ;
hito:supportsFunctionClassified hito:BbCodingOfDiagnosesAndProcedures ;
dcterms:source bb:FeatureProvideCatalogsAndOtherMeansForCodingPatientsDiagnoses ;
a hito:FeatureClassified ;
rdfs:label "Provide catalogs and other means for coding of diagnoses"@en .
hito:BbProvideCatalogsAndOtherMeansForCodingOfNursingDiagnosis
hito:fClaFrom hito:BbFeatureCatalogue ;
hito:supportsFunctionClassified hito:BbCodingOfDiagnosesAndProcedures ;
dcterms:source bb:ProvideCatalogsAndOtherMeansForCodingOfNursingDiagnosis ;
a hito:FeatureClassified ;
rdfs:label "Provide catalogs and other means for coding of nursing diagnosis"@en .
hito:BbProvideCatalogsAndOtherMeansForCodingOfNursingProcedures
hito:fClaFrom hito:BbFeatureCatalogue ;
hito:supportsFunctionClassified hito:BbCodingOfDiagnosesAndProcedures ;
dcterms:source bb:ProvideCatalogsAndOtherMeansForCodingOfNursingProcedures ;
a hito:FeatureClassified ;
rdfs:label "Provide catalogs and other means for coding of nursing procedures"@en .
hito:BbProvideCatalogsAndOtherMeansForCodingOfProcedures
hito:fClaFrom hito:BbFeatureCatalogue ;
hito:supportsFunctionClassified hito:BbCodingOfDiagnosesAndProcedures ;
dcterms:source bb:FeatureProvideCatalogsAndOtherMeansForCodingPatientRelatedProcedures ;
a hito:FeatureClassified ;
rdfs:label "Provide catalogs and other means for coding of procedures"@en .
hito:BbProvideCatalogsAndOtherMeansForCodingPatientrelatedProcedures
hito:fClaFrom hito:BbFeatureCatalogue ;
hito:supportsFunctionClassified hito:BbCodingOfDiagnosesAndProcedures ;
dcterms:source bb:ProvideCatalogsAndOtherMeansForCodingPatientRelatedProcedures ;
a hito:FeatureClassified ;
rdfs:label "Provide catalogs and other means for coding patient-related procedures"@en .
hito:BbProvideCatalogsAndOtherMeansForCodingPatientsDiagnoses
hito:fClaFrom hito:BbFeatureCatalogue ;
hito:supportsFunctionClassified hito:BbCodingOfDiagnosesAndProcedures ;
dcterms:source bb:ProvideCatalogsAndOtherMeansForCodingPatientsDiagnoses ;
a hito:FeatureClassified ;
rdfs:label "Provide catalogs and other means for coding patients' diagnoses"@en .
hito:BbProvideCatalogsAndOtherMeansForCodingRadiologicalDiagnoses
hito:fClaFrom hito:BbFeatureCatalogue ;
hito:supportsFunctionClassified hito:BbCodingOfDiagnosesAndProcedures ;
dcterms:source bb:ProvideCatalogsAndOtherMeansForCodingRadiologicalDiagnoses ;
a hito:FeatureClassified ;
rdfs:label "Provide catalogs and other means for coding radiological diagnoses"@en .
hito:BbProvideCatalogsAndOtherMeansForCodingRadiologicalProcedures
hito:fClaFrom hito:BbFeatureCatalogue ;
hito:supportsFunctionClassified hito:BbCodingOfDiagnosesAndProcedures ;
dcterms:source bb:ProvideCatalogsAndOtherMeansForCodingRadiologicalProcedures ;
a hito:FeatureClassified ;
rdfs:label "Provide catalogs and other means for coding radiological procedures"@en .
hito:BbProvideContextRelatedMedicalKnowledge
hito:fClaFrom hito:BbFeatureCatalogue ;
hito:supportsFunctionClassified hito:BbDecisionMakingPlanningAndOrganizationOfPatientTreatment ;
dcterms:source bb:ProvideContextRelatedMedicalKnowledge ;
a hito:FeatureClassified ;
rdfs:label "Provide context related medical knowledge"@en .
hito:BbProvideDrugCatalogs
hito:fClaFrom hito:BbFeatureCatalogue ;
hito:supportsFunctionClassified hito:BbOrderEntry ;
dcterms:source bb:ProvideDrugCatalogs ;
a hito:FeatureClassified ;
rdfs:label "Provide drug catalogs"@en .
hito:BbProvideFormsForClinicalReports
hito:fClaFrom hito:BbFeatureCatalogue ;
hito:supportsFunctionClassified hito:BbExecutionOfDiagnosticTherapeuticAndNursingProcedures ;
dcterms:source bb:ProvideFormsForClinicalReports ;
a hito:FeatureClassified ;
rdfs:label "Provide forms for clinical reports"@en .
hito:BbProvideFormsForDocumentingClinicalProcedures
hito:fClaFrom hito:BbFeatureCatalogue ;
hito:supportsFunctionClassified hito:BbExecutionOfDiagnosticTherapeuticAndNursingProcedures ;
dcterms:source bb:ProvideFormsForDocumentingClinicalProcedures ;
a hito:FeatureClassified ;
rdfs:label "Provide forms for documenting clinical procedures"@en .
hito:BbProvideFormsForDocumentingDiagnosis
hito:fClaFrom hito:BbFeatureCatalogue ;
hito:supportsFunctionClassified hito:BbMedicalAdmission ;
dcterms:source bb:ProvideFormsForDocumentingDiagnosis ;
a hito:FeatureClassified ;
rdfs:label "Provide forms for documenting diagnosis"@en .
hito:BbProvideFormsForDocumentingDiagnosisAndProblems
hito:fClaFrom hito:BbFeatureCatalogue ;
hito:supportsFunctionClassified hito:BbMedicalAndNursingCarePlanning ;
dcterms:source bb:ProvideFormsForDocumentingDiagnosisAndProblems ;
a hito:FeatureClassified ;
rdfs:label "Provide forms for documenting diagnosis and problems"@en .
hito:BbProvideFormsForDocumentingMedicalAnamnesis
hito:fClaFrom hito:BbFeatureCatalogue ;
hito:supportsFunctionClassified hito:BbMedicalAdmission ;
dcterms:source bb:ProvideFormsForDocumentingMedicalAnamnesis ;
a hito:FeatureClassified ;
rdfs:label "Provide forms for documenting medical anamnesis"@en .
hito:BbProvideFormsForDocumentingMedications
hito:fClaFrom hito:BbFeatureCatalogue ;
hito:supportsFunctionClassified hito:BbExecutionOfDiagnosticTherapeuticAndNursingProcedures ;
dcterms:source bb:ProvideFormsForDocumentingMedications ;
a hito:FeatureClassified ;
rdfs:label "Provide forms for documenting medications"@en .
hito:BbProvideFormsForDocumentingNursingAims
hito:fClaFrom hito:BbFeatureCatalogue ;
hito:supportsFunctionClassified hito:BbMedicalAndNursingCarePlanning ;
dcterms:source bb:ProvideFormsForDocumentingNursingAims ;
a hito:FeatureClassified ;
rdfs:label "Provide forms for documenting nursing aims"@en .
hito:BbProvideFormsForDocumentingNursingTasks
hito:fClaFrom hito:BbFeatureCatalogue ;
hito:supportsFunctionClassified hito:BbMedicalAndNursingCarePlanning ;
dcterms:source bb:ProvideFormsForDocumentingNursingTasks ;
a hito:FeatureClassified ;
rdfs:label "Provide forms for documenting nursing tasks"@en .
hito:BbProvideFormsForDocumentingPatientsInformedConsent
hito:fClaFrom hito:BbFeatureCatalogue ;
hito:supportsFunctionClassified hito:BbDecisionMakingAndPatientInformation, hito:BbDecisionMakingPlanningAndOrganizationOfPatientTreatment ;
dcterms:source bb:ProvideFormsForDocumentingPatientsInformedConsent ;
a hito:FeatureClassified ;
rdfs:label "Provide forms for documenting patients' informed consent"@en .
hito:BbProvideFormsForDocumentingPerformedTasks
hito:fClaFrom hito:BbFeatureCatalogue ;
hito:supportsFunctionClassified hito:BbExecutionOfNursingProcedures ;
dcterms:source bb:ProvideFormsForDocumentingPerformedTasks ;
a hito:FeatureClassified ;
rdfs:label "Provide forms for documenting performed tasks"@en .
hito:BbProvideFormsForDocumentingPlannedTasks
hito:fClaFrom hito:BbFeatureCatalogue ;
hito:supportsFunctionClassified hito:BbDecisionMakingPlanningAndOrganizationOfPatientTreatment ;
dcterms:source bb:ProvideFormsForDocumentingPlannedTasks ;
a hito:FeatureClassified ;
rdfs:label "Provide forms for documenting planned tasks"@en .
hito:BbProvideFormsForDocumentingProceduresAndOutcomes
hito:fClaFrom hito:BbFeatureCatalogue ;
hito:supportsFunctionClassified hito:BbExecutionOfAnOperation ;
dcterms:source bb:ProvideFormsForDocumentingProceduresAndOutcomes ;
a hito:FeatureClassified ;
rdfs:label "Provide forms for documenting procedures and outcomes"@en .