-
Notifications
You must be signed in to change notification settings - Fork 2
/
swp.ttl
5989 lines (4801 loc) · 259 KB
/
swp.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
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix : <http://hitontology.eu/ontology/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix ov: <http://open.vocab.org/terms/> .
@prefix dbo: <http://dbpedia.org/ontology/> .
@prefix yago: <http://dbpedia.org/class/yago/> .
@prefix doap: <http://usefulinc.com/ns/doap#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix swo: <http://www.ebi.ac.uk/swo/> .
@prefix dbr: <http://dbpedia.org/resource/> .
@prefix ui: <http://www.w3.org/ns/ui#> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .
<http://hitontology.eu/ontology/3LGM2AppSysModelingTool>
a :ApplicationSystemTypeCitation ;
rdfs:label "modeling tool"@en .
<http://hitontology.eu/ontology/3LGM2Baukasten>
:client :Native ;
:homepage <https://www.3lgm2.de> ;
:interoperability :XML ;
:language dbr:English_language, dbr:German_language ;
:operatingSystem dbr:Linux, dbr:MacOS, dbr:Microsoft_Windows ;
:programmingLanguage <http://dbpedia.org/resource/Java_(programming_language)> ;
:spIsOfAstCit <http://hitontology.eu/ontology/3LGM2AppSysModelingTool> ;
:spOffersFCit <http://hitontology.eu/ontology/3LGM2FeatAnalysisFunctions>, <http://hitontology.eu/ontology/3LGM2FeatAnalyzingModels>, <http://hitontology.eu/ontology/3LGM2FeatAuswertungvonModellen>, <http://hitontology.eu/ontology/3LGM2FeatBeispielmodelle>, <http://hitontology.eu/ontology/3LGM2FeatDefinitionSprachkonzepteBeziehungen>, <http://hitontology.eu/ontology/3LGM2FeatDescribingCommunicationPaths>, <http://hitontology.eu/ontology/3LGM2FeatDescribingInformationProcesses>, <http://hitontology.eu/ontology/3LGM2FeatErstellungvonModellen>, <http://hitontology.eu/ontology/3LGM2FeatExtractSubmodels>, <http://hitontology.eu/ontology/3LGM2FeatFachlicheEbeneBeschreibungAufgaben>, <http://hitontology.eu/ontology/3LGM2FeatInterEbenenBeziehungen>, <http://hitontology.eu/ontology/3LGM2FeatLogischeWerkzeugebeneAnwendungsbausteine>, <http://hitontology.eu/ontology/3LGM2FeatMultilayerView>, <http://hitontology.eu/ontology/3LGM2FeatPhysischeWerkzeugebeneHardwareKomponenten>, <http://hitontology.eu/ontology/3LGM2FeatReferenzmodelle>, <http://hitontology.eu/ontology/3LGM2FeatSwitchingLevelsGranularity> ;
:spSupportsEfCit <http://hitontology.eu/ontology/3LGM2FuncAssessingQuality>, <http://hitontology.eu/ontology/3LGM2FuncBeschreibungInformationssysteme>, <http://hitontology.eu/ontology/3LGM2FuncBewertungInformationssysteme>, <http://hitontology.eu/ontology/3LGM2FuncInformationManagement>, <http://hitontology.eu/ontology/3LGM2FuncPlanungInformationssysteme>, <http://hitontology.eu/ontology/3LGM2FuncstrategicInformationManagementPlanning> ;
:spUsedInOuCit <http://hitontology.eu/ontology/3LGM2OrgBeratungsunternehmen>, <http://hitontology.eu/ontology/3LGM2OrgKrankenhaus>, <http://hitontology.eu/ontology/3LGM2OrgLehre>, <http://hitontology.eu/ontology/3LGM2OrgSoftwareHersteller> ;
a :SoftwareProduct ;
rdfs:comment "Software zur Unterstützung des strategischen Informationsmanagements bei der Modellierung von Informationssystemen im Gesundheitswesen"@en ;
rdfs:label "3LGM2 Baukasten"@en .
<http://hitontology.eu/ontology/3LGM2FeatAnalysisFunctions>
:fCitClassifiedAs :BbAnalyzeData ;
a :FeatureCitation ;
rdfs:label "set of predefined analysis functions"@en .
<http://hitontology.eu/ontology/3LGM2FeatAnalyzingModels>
:fCitClassifiedAs :BbAnalyzeData ;
a :FeatureCitation ;
rdfs:label "analyzing models of information systems"@en .
<http://hitontology.eu/ontology/3LGM2FeatAuswertungvonModellen>
a :FeatureCitation ;
rdfs:label "Auswertung von Modellen"@en .
<http://hitontology.eu/ontology/3LGM2FeatBeispielmodelle>
a :FeatureCitation ;
rdfs:label "Beispielmodelle"@en .
<http://hitontology.eu/ontology/3LGM2FeatDefinitionSprachkonzepteBeziehungen>
:fCitClassifiedAs :EhrSfmStandardTerminologyAndTerminologyModels ;
a :FeatureCitation ;
rdfs:label "Definition notwendiger Sprachkonzepte und deren Beziehungen"@en .
<http://hitontology.eu/ontology/3LGM2FeatDescribingCommunicationPaths>
a :FeatureCitation ;
rdfs:label "describing communication paths between application components"@en .
<http://hitontology.eu/ontology/3LGM2FeatDescribingInformationProcesses>
a :FeatureCitation ;
rdfs:label "describing information processes"@en .
<http://hitontology.eu/ontology/3LGM2FeatErstellungvonModellen>
a :FeatureCitation ;
rdfs:label "Erstellung von Modellen"@en .
<http://hitontology.eu/ontology/3LGM2FeatExtractSubmodels>
a :FeatureCitation ;
rdfs:label "extract subsets of models into submodels"@en .
<http://hitontology.eu/ontology/3LGM2FeatFachlicheEbeneBeschreibungAufgaben>
a :FeatureCitation ;
rdfs:label "Fachliche Ebene für die Beschreibung der Aufgaben"@en .
<http://hitontology.eu/ontology/3LGM2FeatInterEbenenBeziehungen>
a :FeatureCitation ;
rdfs:label "Inter-Ebenen-Beziehungen"@en .
<http://hitontology.eu/ontology/3LGM2FeatLogischeWerkzeugebeneAnwendungsbausteine>
a :FeatureCitation ;
rdfs:label "Logische Werkzeugebene für die Beschreibung der Anwendungsbausteine"@en .
<http://hitontology.eu/ontology/3LGM2FeatMultilayerView>
a :FeatureCitation ;
rdfs:label "multi-layer view"@en .
<http://hitontology.eu/ontology/3LGM2FeatPhysischeWerkzeugebeneHardwareKomponenten>
a :FeatureCitation ;
rdfs:label "Physische Werkzeugebene für die Beschreibung der Hardware-Komponenten"@en .
<http://hitontology.eu/ontology/3LGM2FeatReferenzmodelle>
a :FeatureCitation ;
rdfs:label "Referenzmodelle"@en .
<http://hitontology.eu/ontology/3LGM2FeatSwitchingLevelsGranularity>
a :FeatureCitation ;
rdfs:label "switching between different levels of granularity"@en .
<http://hitontology.eu/ontology/3LGM2FuncAssessingQuality>
:efCitClassifiedAs :BbQualityManagement ;
a :EnterpriseFunctionCitation ;
rdfs:label "assessing quality of information systems"@en .
<http://hitontology.eu/ontology/3LGM2FuncBeschreibungInformationssysteme>
:efCitClassifiedAs :BbStrategicInformationManagement ;
a :EnterpriseFunctionCitation ;
rdfs:label "Beschreibung von Informationssystemen"@en .
<http://hitontology.eu/ontology/3LGM2FuncBewertungInformationssysteme>
a :EnterpriseFunctionCitation ;
rdfs:label "Bewertung von Informationssystemen"@en .
<http://hitontology.eu/ontology/3LGM2FuncInformationManagement>
:efCitClassifiedAs :BbInformationManagement ;
a :EnterpriseFunctionCitation ;
rdfs:label "Information Management"@en .
<http://hitontology.eu/ontology/3LGM2FuncPlanungInformationssysteme>
:efCitClassifiedAs :BbStrategicInformationManagement ;
a :EnterpriseFunctionCitation ;
rdfs:label "Planung von Informationssystemen"@en .
<http://hitontology.eu/ontology/3LGM2FuncstrategicInformationManagementPlanning>
:efCitClassifiedAs :BbStrategicInformationManagement ;
a :EnterpriseFunctionCitation ;
rdfs:label "strategic information management planning"@en .
<http://hitontology.eu/ontology/3LGM2OrgBeratungsunternehmen>
a :OrganizationalUnitCitation ;
rdfs:label "Beratungsunternehmen"@en .
<http://hitontology.eu/ontology/3LGM2OrgKrankenhaus>
:ouCitClassifiedAs :SnomedHospitalEnvironment ;
a :OrganizationalUnitCitation ;
rdfs:label "Krankenhaus"@en .
<http://hitontology.eu/ontology/3LGM2OrgLehre>
a :OrganizationalUnitCitation ;
rdfs:label "Lehre"@en .
<http://hitontology.eu/ontology/3LGM2OrgSoftwareHersteller>
a :OrganizationalUnitCitation ;
rdfs:label "Software-Hersteller"@en .
:AbbotIStatFeatureCompleteTestResults
:fCitClassifiedAs :EhrSfmManageResults, :EhrSfmManageResultsOfDiagnosticTests ;
a :FeatureCitation ;
rdfs:label "complete test results"@en .
:AbbotIStatFeatureReadBarCodeLabel
:fCitClassifiedAs :EhrSfmManageOrders, :EhrSfmManageOrdersForDiagnosticscreeningTests ;
a :FeatureCitation ;
rdfs:label "read bar code label"@en .
:AbbottAppBloodAnalysisSystem
:astCitClassifiedAs :WhoDhiLaboratoryAndDiagnosticsInformationSystem ;
a :ApplicationSystemTypeCitation ;
rdfs:label "Blood Analysis System"@en .
:AbbottIStat
:license <http://www.ebi.ac.uk/swo/license/SWO_1000002> ;
:spIsOfAstCit :AbbottAppBloodAnalysisSystem ;
:spOffersFCit :AbbotIStatFeatureCompleteTestResults, :AbbotIStatFeatureReadBarCodeLabel ;
a :SoftwareProduct ;
rdfs:comment "Softwareprodukt aus Studie, keine weiteren Informationen vorhanden"@en ;
rdfs:label "Abbott i-Stat"@en .
:AgfaPacsImpax
:license <http://www.ebi.ac.uk/swo/license/SWO_1000002> ;
:spIsOfAstCit :AgfaPacsImpaxAppPacs, :AgfaPacsImpaxAppRisPacsReporting ;
:spOffersFCit :AgfaPacsImpaxFeatureBookingOfExaminations, :AgfaPacsImpaxFeaturePatientRegistration, :AgfaPacsImpaxFeatureSpeechRecognition ;
a :SoftwareProduct ;
rdfs:comment "Softwareprodukt aus Studie, keine weiteren Informationen vorhanden"@en ;
rdfs:label "Agfa PACS IMPAX"@en .
:AgfaPacsImpaxAppPacs
:astCitClassifiedAs :BbPictureArchivingAndCommunicationSystem ;
a :ApplicationSystemTypeCitation ;
rdfs:label "Picture Archiving and Communication System (PACS)"@en .
:AgfaPacsImpaxAppRisPacsReporting
:astCitClassifiedAs :BbPictureArchivingAndCommunicationSystem, :BbRadiologyInformationSystem ;
a :ApplicationSystemTypeCitation ;
rdfs:label "RIS/PACS/Reporting (Radiology Information System/Picture Archiving and Communications System) Solution"@en .
:AgfaPacsImpaxFeatureBookingOfExaminations
a :FeatureCitation ;
rdfs:label "booking of examinations"@en .
:AgfaPacsImpaxFeaturePatientRegistration
:fCitClassifiedAs :EhrSfmManageOrders, :EhrSfmManageOrdersForDiagnosticscreeningTests, :EhrSfmSupportForCommunicationsBetweenOrganizations ;
a :FeatureCitation ;
rdfs:label "patient registration"@en .
:AgfaPacsImpaxFeatureSpeechRecognition
a :FeatureCitation ;
rdfs:label "speech recognition"@en .
:AgfaRisElefante
:license <http://www.ebi.ac.uk/swo/license/SWO_1000002> ;
:spIsOfAstCit :AgfaRisElefanteAppRis ;
:spOffersFCit :AgfaRisElefanteFeatureAutomaticAndPaperlessOperations, :AgfaRisElefanteFeatureBookingOfExaminations, :AgfaRisElefanteFeaturePatientRegistration, :AgfaRisElefanteFeatureSpeechRecognition ;
a :SoftwareProduct ;
rdfs:comment "Softwareprodukt aus Studie, keine weiteren Informationen vorhanden"@en ;
rdfs:label "Agfa RIS Elefante"@en .
:AgfaRisElefanteAppRis
:astCitClassifiedAs :BbRadiologyInformationSystem ;
a :ApplicationSystemTypeCitation ;
rdfs:label "Radiology Information System (RIS)"@en .
:AgfaRisElefanteFeatureAutomaticAndPaperlessOperations
a :FeatureCitation ;
rdfs:label "automatic and paperless operations"@en .
:AgfaRisElefanteFeatureBookingOfExaminations
a :FeatureCitation ;
rdfs:label "booking of examinations"@en .
:AgfaRisElefanteFeaturePatientRegistration
a :FeatureCitation ;
rdfs:label "patient registration"@en .
:AgfaRisElefanteFeatureSpeechRecognition
:fCitClassifiedAs :EhrSfmManageResults, :EhrSfmManageResultsOfDiagnosticTests, :EhrSfmSupportOrders, :EhrSfmSupportOrdersForDiagnosticscreeningTests ;
a :FeatureCitation ;
rdfs:label "speech recognition"@en .
:Bahmni
:client :WebBased ;
:databaseManagementSystem :MySql, :PostgreSql ;
:homepage <https://www.bahmni.org/> ;
:language dbr:English_language ;
:license <http://www.ebi.ac.uk/swo/license/SWO_1000070> ;
:operatingSystem dbr:CentOS ;
:programmingLanguage <http://dbpedia.org/resource/Java_(programming_language)> ;
:spIsOfAstCit :BahmniAppHospitalSystem ;
:spOffersFCit :BahmniFeatCaptureClinicalRecords, :BahmniFeatCaptureDrugPrescriptions, :BahmniFeatClinicalReporting, :BahmniFeatCreateDiseaseSpecificForms, :BahmniFeatCreateGeneralForms, :BahmniFeatDisplayLaboratoryWorkload, :BahmniFeatMaintainAccurateRecords, :BahmniFeatMaintainClinicalRecords, :BahmniFeatManageAccurateRecords, :BahmniFeatManagePatientOrders, :BahmniFeatManagePatientsAdmissions, :BahmniFeatManageSamples, :BahmniFeatManageStock, :BahmniFeatManageTests, :BahmniFeatMonitorStockLevels, :BahmniFeatMoveStock, :BahmniFeatOrderInvestigation, :BahmniFeatOrderLab, :BahmniFeatOrderRadiology, :BahmniFeatPerformBedAssignments, :BahmniFeatPerformOperationalReporting, :BahmniFeatPrintPatientId, :BahmniFeatPublicHealthReporting, :BahmniFeatReorderStock, :BahmniFeatSearchPatients, :BahmniFeatSendSamplesForReferrals, :BahmniFeatTrackStock, :BahmniFeatTrackWardOccupancy, :BahmniFeatUseDrugPrescriptionTemplates ;
:spSupportsEfCit :BahmniFuncBilling, :BahmniFuncClinicalServices, :BahmniFuncInpatientManagement, :BahmniFuncLaboratory, :BahmniFuncPatientRegistration, :BahmniFuncReporting, :BahmniFuncStockManagement ;
:spUsedInOuCit :BahmniEmergency, :BahmniGynaecology, :BahmniIntakeOutput, :BahmniSurgery ;
dcterms:source <https://www.medfloss.org/node/1103> ;
a :SoftwareProduct ;
rdfs:comment "easy-to-use EMR & hospital system"@en ;
rdfs:label "Bahmni"@en .
:BahmniAppHospitalSystem
:astCitClassifiedAs :BbClinicalInformationSystem, :WhoDhiHealthManagementInformationSystemHmis ;
a :ApplicationSystemTypeCitation ;
rdfs:label "Hospital System"@en .
:BahmniEmergency
:ouCitClassifiedAs :SnomedAccidentAndEmergencyDepartmentEnvironment ;
a :OrganizationalUnitCitation ;
rdfs:label "emergency"@en .
:BahmniFeatCaptureClinicalRecords
:supportsFunction :BahmniFuncClinicalServices ;
a :FeatureCitation ;
rdfs:label "Capture Clinical Records"@en .
:BahmniFeatCaptureDrugPrescriptions
:fCitClassifiedAs :WhoDhiReportEffectsAdverseDrug, :WhoDhiTrackClientsMedicationConsumption, :WhoDhiTransmitOrTrackPrescriptionOrders ;
:supportsFunction :BahmniFuncClinicalServices ;
a :FeatureCitation ;
rdfs:label "Capture Drug Prescriptions"@en .
:BahmniFeatClinicalReporting
:fCitClassifiedAs :WhoDhiIdentifyClientsInNeedOfServices, :WhoDhiScheduleHealthcareProvidersActivities ;
:supportsFunction :BahmniFuncReporting ;
a :FeatureCitation ;
rdfs:label "Clinical Reporting"@en .
:BahmniFeatCreateDiseaseSpecificForms
:fCitClassifiedAs :WhoDhiScheduleHealthcareProvidersActivities ;
:supportsFunction :BahmniFuncClinicalServices ;
a :FeatureCitation ;
rdfs:label "Create Disease Specific Forms"@en .
:BahmniFeatCreateGeneralForms
:fCitClassifiedAs :WhoDhiEnrolClientForHealthServicesclinicalCarePlan, :WhoDhiVerifyClientUniqueIdentity ;
:supportsFunction :BahmniFuncClinicalServices ;
a :FeatureCitation ;
rdfs:label "Create General Forms"@en .
:BahmniFeatDisplayLaboratoryWorkload
:fCitClassifiedAs :WhoDhiCaptureFromDigitalDevices, :WhoDhiTrackBiologicalSpecimens, :WhoDhiTransmitDiagnosticOrdersDiagnosticResults, :WhoDhiTransmitToHealthcareProviderAndTrack ;
:supportsFunction :BahmniFuncLaboratory ;
a :FeatureCitation ;
rdfs:label "Display Laboratory Workload"@en .
:BahmniFeatMaintainAccurateRecords
:fCitClassifiedAs :WhoDhiRoutineHealthIndicatorDataCollectionAndManagement ;
:supportsFunction :BahmniFuncBilling ;
a :FeatureCitation ;
rdfs:label "Maintain Accurate Records"@en .
:BahmniFeatMaintainClinicalRecords
:fCitClassifiedAs :WhoDhiManageClientsStructuredClinicalRecords, :WhoDhiManageClientsUnstructuredClinicalRecords, :WhoDhiRoutineHealthIndicatorDataCollectionAndManagement ;
:supportsFunction :BahmniFuncClinicalServices ;
a :FeatureCitation ;
rdfs:label "Maintain Clinical Records"@en .
:BahmniFeatManageAccurateRecords
:fCitClassifiedAs :WhoDhiLongitudinalTrackingOfClientsHealthStatusAndServices, :WhoDhiManageClientsStructuredClinicalRecords ;
:supportsFunction :BahmniFuncBilling ;
a :FeatureCitation ;
rdfs:label "Manage Accurate Records"@en .
:BahmniFeatManagePatientOrders
:fCitClassifiedAs :WhoDhiLongitudinalTrackingOfClientsHealthStatusAndServices, :WhoDhiManageClientsStructuredClinicalRecords, :WhoDhiManageClientsUnstructuredClinicalRecords, :WhoDhiRoutineHealthIndicatorDataCollectionAndManagement ;
:supportsFunction :BahmniFuncLaboratory ;
a :FeatureCitation ;
rdfs:label "Manage Patient Orders"@en .
:BahmniFeatManagePatientsAdmissions
:supportsFunction :BahmniFuncInpatientManagement ;
a :FeatureCitation ;
rdfs:label "Manage Patients Admissions"@en .
:BahmniFeatManageSamples
:fCitClassifiedAs :WhoDhiTransmitToHealthcareProviderAndTrack ;
:supportsFunction :BahmniFuncLaboratory ;
a :FeatureCitation ;
rdfs:label "Manage Samples"@en .
:BahmniFeatManageStock
:fCitClassifiedAs :WhoDhiManageInventoryAndDistributionOfHealthCommoditiesStockLevelsOf, :WhoDhiManageOfCommodities, :WhoDhiMonitorColdchainSensitiveCommoditiesLicensedDrugs, :WhoDhiMonitorStatusOfHealthEquipment, :WhoDhiNotifyHealthCommodities, :WhoDhiReportCounterfeitOrSubstandardDrugsByClients ;
:supportsFunction :BahmniFuncStockManagement ;
a :FeatureCitation ;
rdfs:label "Manage Stock"@en .
:BahmniFeatManageTests
:fCitClassifiedAs :WhoDhiTransmitDiagnosticOrdersDiagnosticResults ;
:supportsFunction :BahmniFuncLaboratory ;
a :FeatureCitation ;
rdfs:label "Manage Tests"@en .
:BahmniFeatMonitorStockLevels
:fCitClassifiedAs :WhoDhiMonitorColdchainSensitiveCommoditiesLicensedDrugs, :WhoDhiMonitorStatusOfHealthEquipment, :WhoDhiNotifyHealthCommodities, :WhoDhiRegisterAndHealthCommoditiesProcurement ;
:supportsFunction :BahmniFuncStockManagement ;
a :FeatureCitation ;
rdfs:label "Monitor Stock Levels"@en .
:BahmniFeatMoveStock
:supportsFunction :BahmniFuncStockManagement ;
a :FeatureCitation ;
rdfs:label "Move Stock"@en .
:BahmniFeatOrderInvestigation
:supportsFunction :BahmniFuncClinicalServices ;
a :FeatureCitation ;
rdfs:label "Order Investigation"@en .
:BahmniFeatOrderLab
:fCitClassifiedAs :WhoDhiTransmitDiagnosticOrdersDiagnosticResults ;
:supportsFunction :BahmniFuncClinicalServices ;
a :FeatureCitation ;
rdfs:label "Order Lab"@en .
:BahmniFeatOrderRadiology
:fCitClassifiedAs :WhoDhiTransmitDiagnosticOrdersDiagnosticResults ;
:supportsFunction :BahmniFuncClinicalServices ;
a :FeatureCitation ;
rdfs:label "Order Radiology"@en .
:BahmniFeatPerformBedAssignments
:supportsFunction :BahmniFuncInpatientManagement ;
a :FeatureCitation ;
rdfs:label "Perform Bed Assignments"@en .
:BahmniFeatPerformOperationalReporting
:supportsFunction :BahmniFuncReporting ;
a :FeatureCitation ;
rdfs:label "Perform Operational Reporting"@en .
:BahmniFeatPrintPatientId
:fCitClassifiedAs :WhoDhiVerifyClientUniqueIdentity ;
:supportsFunction :BahmniFuncPatientRegistration ;
a :FeatureCitation ;
rdfs:label "Print Patient Id"@en .
:BahmniFeatPublicHealthReporting
:fCitClassifiedAs :WhoDhiReportingOfHealthSystemFeedbackByClients, :WhoDhiReportingOfPublicHealthEventsByClient ;
:supportsFunction :BahmniFuncReporting ;
a :FeatureCitation ;
rdfs:label "Public Health Reporting"@en .
:BahmniFeatReorderStock
:fCitClassifiedAs :WhoDhiCoordinateEmergencyResponseAndTransport, :WhoDhiManageReferralsBetweenHealthAndOtherSectors, :WhoDhiManageReferralsBetweenPointsOfServiceWithinHealthSector ;
:supportsFunction :BahmniFuncStockManagement ;
a :FeatureCitation ;
rdfs:label "Reorder Stock"@en .
:BahmniFeatSearchPatients
:supportsFunction :BahmniFuncPatientRegistration ;
a :FeatureCitation ;
rdfs:label "Search Patients"@en .
:BahmniFeatSendSamplesForReferrals
:fCitClassifiedAs :WhoDhiTransmissionOfMedicalDataToHealthcareProvider ;
:supportsFunction :BahmniFuncInpatientManagement ;
a :FeatureCitation ;
rdfs:label "Send Samples For Referrals"@en .
:BahmniFeatTrackStock
:supportsFunction :BahmniFuncStockManagement ;
a :FeatureCitation ;
rdfs:label "Track Stock"@en .
:BahmniFeatTrackWardOccupancy
:supportsFunction :BahmniFuncInpatientManagement ;
a :FeatureCitation ;
rdfs:label "Track Ward Occupancy"@en .
:BahmniFeatUseDrugPrescriptionTemplates
:fCitClassifiedAs :WhoDhiReportEffectsAdverseDrug ;
:supportsFunction :BahmniFuncClinicalServices ;
a :FeatureCitation ;
rdfs:label "Use Drug Prescription Templates"@en .
:BahmniFuncBilling
:efCitClassifiedAs :WhoDhiHealthFinancing ;
a :EnterpriseFunctionCitation ;
rdfs:label "Billing"@en .
:BahmniFuncClinicalServices
:efCitClassifiedAs :WhoDhiClientHealthRecords, :WhoDhiHealthWorkerActivityPlanningAndScheduling, :WhoDhiHealthcareProviderCommunication, :WhoDhiHealthcareProviderTraining, :WhoDhiPrescriptionAndMedicationManagement ;
a :EnterpriseFunctionCitation ;
rdfs:label "Clinical Services"@en .
:BahmniFuncInpatientManagement
:efCitClassifiedAs :WhoDhiClientHealthRecords, :WhoDhiClientIdentificationAndRegistration ;
a :EnterpriseFunctionCitation ;
rdfs:label "Inpatient Management"@en .
:BahmniFuncLaboratory
:efCitClassifiedAs :WhoDhiClientIdentificationAndRegistration ;
a :EnterpriseFunctionCitation ;
rdfs:label "Laboratory"@en .
:BahmniFuncPatientRegistration
:efCitClassifiedAs :WhoDhiClientIdentificationAndRegistration ;
a :EnterpriseFunctionCitation ;
rdfs:label "Patient Registration"@en .
:BahmniFuncReporting
a :EnterpriseFunctionCitation ;
rdfs:label "Reporting"@en .
:BahmniFuncStockManagement
:efCitClassifiedAs :WhoDhiSupplyChainManagement ;
a :EnterpriseFunctionCitation ;
rdfs:label "Stock Management"@en .
:BahmniGynaecology
:ouCitClassifiedAs :SnomedGynecologyDepartmentEnvironment ;
a :OrganizationalUnitCitation ;
rdfs:label "gynaecology"@en .
:BahmniIntakeOutput
a :OrganizationalUnitCitation ;
rdfs:label "intake-output"@en .
:BahmniSurgery
:ouCitClassifiedAs :SnomedSurgicalDepartmentEnvironment ;
a :OrganizationalUnitCitation ;
rdfs:label "surgery"@en .
:BetterMeds
:client :Native ;
:homepage <https://meds.better.care> ;
:interoperability :HL7_FHIR, :OpenEHR, :SNOMED_CT ;
:language dbr:English_language ;
:license <http://www.ebi.ac.uk/swo/license/SWO_1000008> ;
:spIsOfAstCit :BetterMedsAppAElectronicPrescribingAndMedicationAdministrationSolution ;
:spOffersFCit :BetterMedsFeatClinicalPharmacistReview, :BetterMedsFeatCreatesAMedicationListOnAdmission, :BetterMedsFeatCreatesDailyMedicationAdministrationPlans, :BetterMedsFeatDischargeSummary, :BetterMedsFeatEnablesBarcodeScanning, :BetterMedsFeatEquippedWithMedicationDischargePrescription, :BetterMedsFeatGeneratesAutomatedTasks, :BetterMedsFeatGivesRealtimeWarningsWithADecisionsupportSystem, :BetterMedsFeatIncreasedSafetyWithAllergyrelatedWarnings, :BetterMedsFeatInpatientPrescribing, :BetterMedsFeatMedicationAdministrationRecord, :BetterMedsFeatMedicationReconciliation, :BetterMedsFeatOrderSetsAvailableOnAHospitalwideLevel, :BetterMedsFeatOrderSetsCustomisable, :BetterMedsFeatOutpatientPrescribing, :BetterMedsFeatPediatricPrescriptions, :BetterMedsFeatPharmacyIntegration, :BetterMedsFeatProvidesATimelineForUpcomingMedicationAdministrations, :BetterMedsFeatProvidesAnAuditLogOfPrescriptionsAndChanges, :BetterMedsFeatReconcilesThePrescriptionListUponDischarge, :BetterMedsFeatShowsAClearOverviewOfMedicationsAtEveryStep, :BetterMedsFeatSimpleAndComplexIVPrescriptions, :BetterMedsFeatSupportsMedicationTitration, :BetterMedsFeatWitnessingOption, :BetterMedsFeatcapturesPrescriptionsFromDifferentSources ;
:spSupportsEfCit :BetterMedsFeatMedicationManagement ;
a :SoftwareProduct ;
rdfs:comment "Better Meds (formerly OPENeP) is an electronic prescribing and medication administration solution."@en ;
rdfs:label "BetterMeds"@en .
:BetterMedsAppAElectronicPrescribingAndMedicationAdministrationSolution
:astCitClassifiedAs :BbDecisionSupportSystem ;
a :ApplicationSystemTypeCitation ;
rdfs:label "Electronic Prescribing and Medication Administration Solution"@en .
:BetterMedsFeatClinicalPharmacistReview
a :FeatureCitation ;
rdfs:label "Clinical pharmacist review"@en .
:BetterMedsFeatCreatesAMedicationListOnAdmission
a :FeatureCitation ;
rdfs:label "creates a medication list on admission"@en .
:BetterMedsFeatCreatesDailyMedicationAdministrationPlans
a :FeatureCitation ;
rdfs:label "creates daily medication administration plans"@en .
:BetterMedsFeatDischargeSummary
a :FeatureCitation ;
rdfs:label "Discharge summary"@en .
:BetterMedsFeatEnablesBarcodeScanning
a :FeatureCitation ;
rdfs:label "enables barcode scanning"@en .
:BetterMedsFeatEquippedWithMedicationDischargePrescription
a :FeatureCitation ;
rdfs:label "equipped with medication discharge prescription"@en .
:BetterMedsFeatGeneratesAutomatedTasks
a :FeatureCitation ;
rdfs:label "generates automated tasks"@en .
:BetterMedsFeatGivesRealtimeWarningsWithADecisionsupportSystem
a :FeatureCitation ;
rdfs:label "gives real-time warnings with a decision-support system"@en .
:BetterMedsFeatIncreasedSafetyWithAllergyrelatedWarnings
a :FeatureCitation ;
rdfs:label "increased safety with allergy-related warnings"@en .
:BetterMedsFeatInpatientPrescribing
a :FeatureCitation ;
rdfs:label "Inpatient prescribing"@en .
:BetterMedsFeatMedicationAdministrationRecord
a :FeatureCitation ;
rdfs:label "Medication administration record"@en .
:BetterMedsFeatMedicationManagement
:efCitClassifiedAs :BbMaterialAndMedicationManagement, :WhoDhiPrescriptionAndMedicationManagement ;
a :EnterpriseFunctionCitation ;
rdfs:label "medication management"@en .
:BetterMedsFeatMedicationReconciliation
a :FeatureCitation ;
rdfs:label "Medication reconciliation"@en .
:BetterMedsFeatOrderSetsAvailableOnAHospitalwideLevel
a :FeatureCitation ;
rdfs:label "Order sets available on a hospital-wide level"@en .
:BetterMedsFeatOrderSetsCustomisable
a :FeatureCitation ;
rdfs:label "Order sets customisable for a specific user, or as patient related"@en .
:BetterMedsFeatOutpatientPrescribing
a :FeatureCitation ;
rdfs:label "Outpatient prescribing"@en .
:BetterMedsFeatPediatricPrescriptions
a :FeatureCitation ;
rdfs:label "pediatric prescriptions forms"@en .
:BetterMedsFeatPharmacyIntegration
a :FeatureCitation ;
rdfs:label "Pharmacy integration"@en .
:BetterMedsFeatProvidesATimelineForUpcomingMedicationAdministrations
a :FeatureCitation ;
rdfs:label "provides a timeline for upcoming medication administrations"@en .
:BetterMedsFeatProvidesAnAuditLogOfPrescriptionsAndChanges
a :FeatureCitation ;
rdfs:label "provides an audit log of prescriptions and changes"@en .
:BetterMedsFeatReconcilesThePrescriptionListUponDischarge
a :FeatureCitation ;
rdfs:label "reconciles the prescription list upon discharge"@en .
:BetterMedsFeatShowsAClearOverviewOfMedicationsAtEveryStep
a :FeatureCitation ;
rdfs:label "shows a clear overview of medications at every step"@en .
:BetterMedsFeatSimpleAndComplexIVPrescriptions
a :FeatureCitation ;
rdfs:label "simple and complex IV prescriptions"@en .
:BetterMedsFeatSupportsMedicationTitration
a :FeatureCitation ;
rdfs:label "supports medication titration"@en .
:BetterMedsFeatWitnessingOption
a :FeatureCitation ;
rdfs:label "witnessing option"@en .
:BetterMedsFeatcapturesPrescriptionsFromDifferentSources
a :FeatureCitation ;
rdfs:label "captures prescriptions from different sources"@en .
:BikaLims
:client :WebBased ;
:homepage <https://www.bikalims.org> ;
:language dbr:English_language ;
:license <http://www.ebi.ac.uk/swo/license/SWO_1000046> ;
:programmingLanguage dbr:JavaScript, <http://dbpedia.org/resource/Python_(programming_language)> ;
:programmingLibrary :Zope ;
:repository <https://github.com/bikalims> ;
:spIsOfAstCit :BikaLimsAppLaboratoryInformationManagementSystem ;
:spOffersFCit :BikaLimsFeatAlerts, :BikaLimsFeatAliquotManagement, :BikaLimsFeatAnalysisCategories, :BikaLimsFeatAnalysisSpecifications, :BikaLimsFeatAuthorisationMatrix, :BikaLimsFeatBarcodeScanning, :BikaLimsFeatBarcodedStickerTemplates, :BikaLimsFeatBatchSampleImport, :BikaLimsFeatBatching, :BikaLimsFeatBulkImports, :BikaLimsFeatCapturingQcResults, :BikaLimsFeatChainOfCustody, :BikaLimsFeatConfigurableCalculations, :BikaLimsFeatControlCharts, :BikaLimsFeatCorrectiveActionWorkflow, :BikaLimsFeatCreateOrEditACalculation, :BikaLimsFeatCreatingAnalysisServices, :BikaLimsFeatCreatingAndEditingContacts, :BikaLimsFeatCreatingBatchedSamples, :BikaLimsFeatCreatingReferenceSamples, :BikaLimsFeatCreatingUsers, :BikaLimsFeatCreatingWorksheets, :BikaLimsFeatDashboard, :BikaLimsFeatDiscounting, :BikaLimsFeatDisplayPreferences, :BikaLimsFeatEditableTemplatesForAnalysisProfiles, :BikaLimsFeatEditableTemplatesForReferenceSpecifications, :BikaLimsFeatEditableTemplatesForWorksheets, :BikaLimsFeatEfficiencyReports, :BikaLimsFeatEncryption, :BikaLimsFeatErpInterface, :BikaLimsFeatFullAuditTrail, :BikaLimsFeatInstrumentCalibration, :BikaLimsFeatInstrumentConfiguration, :BikaLimsFeatInstrumentMaintenance, :BikaLimsFeatInstrumentResultsImport, :BikaLimsFeatIntelligentIds, :BikaLimsFeatInvoicesExports, :BikaLimsFeatInvoicesPrints, :BikaLimsFeatLabelingSamples, :BikaLimsFeatManagementReports, :BikaLimsFeatPriceListsPerAnalysisOrPanel, :BikaLimsFeatPrioritisation, :BikaLimsFeatReferenceAnalyses, :BikaLimsFeatReferenceDefinitions, :BikaLimsFeatRejectionWorkflow, :BikaLimsFeatRequestingAnalyses, :BikaLimsFeatResultsCapturing, :BikaLimsFeatResultsPublication, :BikaLimsFeatRoleBasedSecurity, :BikaLimsFeatSampleReception, :BikaLimsFeatSampleRegistration, :BikaLimsFeatSampleRejection, :BikaLimsFeatUnitConversion, :BikaLimsFeatUserGroups, :BikaLimsFeatWorksheetsExports, :BikaLimsFuncSampleManagement, :BikaLimsFuncStorage ;
:spSupportsEfCit :BikaLimsFuncAnalysis, :BikaLimsFuncBilling, :BikaLimsFuncManagingClients, :BikaLimsFuncQualityControl ;
:spUsedInOuCit :BikaLimsOrgLaboratory ;
a :SoftwareProduct ;
rdfs:comment "Open Source LIMS"@en ;
rdfs:label "BikaLIMS"@en .
:BikaLimsAppLaboratoryInformationManagementSystem
:astCitClassifiedAs :BbLaboratoryInformationSystem ;
a :ApplicationSystemTypeCitation ;
rdfs:label "Laboratory Information Management System (LIMS)"@en .
:BikaLimsFeatAlerts
:fCitClassifiedAs :WhoDhiProvidePromptsAndAlertsBasedAccordingToProtocol ;
a :FeatureCitation ;
rdfs:label "Alerts"@en .
:BikaLimsFeatAliquotManagement
a :FeatureCitation ;
rdfs:label "Aliquot management"@en .
:BikaLimsFeatAnalysisCategories
:fCitClassifiedAs :BbAnalyzeData ;
a :FeatureCitation ;
rdfs:label "Analysis Categories"@en .
:BikaLimsFeatAnalysisSpecifications
:fCitClassifiedAs :BbAnalyzeData ;
a :FeatureCitation ;
rdfs:label "Analysis Specifications"@en .
:BikaLimsFeatAuthorisationMatrix
:fCitClassifiedAs :BbProvideMeansForControlOfSecurityIssues, :EhrSfmSecurity, :JoshiPacsSecurityBackupAndDowntimePrevention ;
a :FeatureCitation ;
rdfs:label "Authorisation matrix"@en .
:BikaLimsFeatBarcodeScanning
a :FeatureCitation ;
rdfs:label "Barcode scanning"@en .
:BikaLimsFeatBarcodedStickerTemplates
a :FeatureCitation ;
rdfs:label "Barcoded sticker templates"@en .
:BikaLimsFeatBatchSampleImport
a :FeatureCitation ;
rdfs:label "Batch Sample Import"@en .
:BikaLimsFeatBatching
a :FeatureCitation ;
rdfs:label "Batching"@en .
:BikaLimsFeatBulkImports
a :FeatureCitation ;
rdfs:label "Bulk Imports"@en .
:BikaLimsFeatCapturingQcResults
:fCitClassifiedAs :EhrSfmQualityPreformanceAndAccountabilityMeasures ;
a :FeatureCitation ;
rdfs:label "Capturing QC results"@en .
:BikaLimsFeatChainOfCustody
a :FeatureCitation ;
rdfs:label "Chain of Custody"@en .
:BikaLimsFeatConfigurableCalculations
a :FeatureCitation ;
rdfs:label "Configurable Calculations"@en .
:BikaLimsFeatControlCharts
:fCitClassifiedAs :WhoDhiDataSynthesisAndVisualization ;
a :FeatureCitation ;
rdfs:label "Control charts"@en .
:BikaLimsFeatCorrectiveActionWorkflow
:fCitClassifiedAs :EhrSfmWorkflowManagement, :JoshiPacsWorklistAndWorkflowOrganization ;
a :FeatureCitation ;
rdfs:label "corrective action workflow"@en .
:BikaLimsFeatCreateOrEditACalculation
a :FeatureCitation ;
rdfs:label "Create or Edit a Calculation"@en .
:BikaLimsFeatCreatingAnalysisServices
:fCitClassifiedAs :BbAnalyzeData ;
a :FeatureCitation ;
rdfs:label "Creating Analysis Services"@en .
:BikaLimsFeatCreatingAndEditingContacts
a :FeatureCitation ;
rdfs:label "Creating and Editing Contacts"@en .
:BikaLimsFeatCreatingBatchedSamples
a :FeatureCitation ;
rdfs:label "Creating Batched Samples"@en .
:BikaLimsFeatCreatingReferenceSamples
a :FeatureCitation ;
rdfs:label "Creating Reference Samples"@en .
:BikaLimsFeatCreatingUsers
a :FeatureCitation ;
rdfs:label "Creating users"@en .
:BikaLimsFeatCreatingWorksheets
a :FeatureCitation ;
rdfs:label "Creating Worksheets"@en .
:BikaLimsFeatDashboard
a :FeatureCitation ;
rdfs:label "Dashboard"@en .
:BikaLimsFeatDiscounting
a :FeatureCitation ;
rdfs:label "Discounting"@en .
:BikaLimsFeatDisplayPreferences
a :FeatureCitation ;
rdfs:label "Display preferences"@en .
:BikaLimsFeatEditableTemplatesForAnalysisProfiles
a :FeatureCitation ;
rdfs:label "Editable Templates for Analysis Profiles"@en .
:BikaLimsFeatEditableTemplatesForReferenceSpecifications
a :FeatureCitation ;
rdfs:label "Editable Templates for Reference Specifications"@en .
:BikaLimsFeatEditableTemplatesForWorksheets
a :FeatureCitation ;
rdfs:label "Editable Templates for Worksheets"@en .
:BikaLimsFeatEfficiencyReports
a :FeatureCitation ;
rdfs:label "efficiency reports"@en .
:BikaLimsFeatEncryption
:fCitClassifiedAs :BbProvideMeansForControlOfSecurityIssues, :EhrSfmSecurity, :JoshiPacsSecurityBackupAndDowntimePrevention ;
a :FeatureCitation ;
rdfs:label "Encryption"@en .
:BikaLimsFeatErpInterface
a :FeatureCitation ;
rdfs:label "ERP Interface"@en .
:BikaLimsFeatFullAuditTrail
:fCitClassifiedAs :EhrSfmAudit, :EhrSfmAuditLogManagement ;
a :FeatureCitation ;
rdfs:label "Full Audit trail"@en .
:BikaLimsFeatInstrumentCalibration
a :FeatureCitation ;
rdfs:label "Instrument Calibration"@en .
:BikaLimsFeatInstrumentConfiguration
a :FeatureCitation ;
rdfs:label "Instrument Configuration"@en .
:BikaLimsFeatInstrumentMaintenance
:fCitClassifiedAs :BbProvideMeansForPreventiveMaintenance ;
a :FeatureCitation ;
rdfs:label "Instrument Maintenance"@en .
:BikaLimsFeatInstrumentResultsImport
a :FeatureCitation ;
rdfs:label "Instrument results import"@en .
:BikaLimsFeatIntelligentIds
a :FeatureCitation ;
rdfs:label "Intelligent IDs"@en .
:BikaLimsFeatInvoicesExports
a :FeatureCitation ;
rdfs:label "Invoices exports"@en .
:BikaLimsFeatInvoicesPrints
a :FeatureCitation ;
rdfs:label "Invoices prints"@en .
:BikaLimsFeatLabelingSamples
a :FeatureCitation ;
rdfs:label "Labeling Samples"@en .
:BikaLimsFeatManagementReports
:fCitClassifiedAs :BbPrepareReport, :EhrSfmManageCareCoordinationReporting ;
a :FeatureCitation ;
rdfs:label "Management reports"@en .
:BikaLimsFeatPriceListsPerAnalysisOrPanel
a :FeatureCitation ;
rdfs:label "Price lists per Analysis or Panel"@en .
:BikaLimsFeatPrioritisation
a :FeatureCitation ;
rdfs:label "Prioritisation"@en .
:BikaLimsFeatReferenceAnalyses
:fCitClassifiedAs :BbAnalyzeData ;
a :FeatureCitation ;
rdfs:label "Reference Analyses"@en .
:BikaLimsFeatReferenceDefinitions
a :FeatureCitation ;
rdfs:label "Reference Definitions"@en .
:BikaLimsFeatRejectionWorkflow
:fCitClassifiedAs :EhrSfmWorkflowManagement, :JoshiPacsWorklistAndWorkflowOrganization ;
a :FeatureCitation ;
rdfs:label "Rejection workflow"@en .
:BikaLimsFeatRequestingAnalyses
:fCitClassifiedAs :BbAnalyzeData ;
a :FeatureCitation ;
rdfs:label "Requesting Analyses"@en .
:BikaLimsFeatResultsCapturing
:fCitClassifiedAs :BbCollectResultsFromDevices, :EhrSfmManageResults ;
a :FeatureCitation ;
rdfs:label "Results capturing"@en .
:BikaLimsFeatResultsPublication
:fCitClassifiedAs :EhrSfmManageResults ;
a :FeatureCitation ;
rdfs:label "Results Publication"@en .
:BikaLimsFeatRoleBasedSecurity
:fCitClassifiedAs :BbProvideMeansForControlOfSecurityIssues, :EhrSfmSecurity, :JoshiPacsSecurityBackupAndDowntimePrevention ;
a :FeatureCitation ;
rdfs:label "Role based security"@en .
:BikaLimsFeatSampleReception
a :FeatureCitation ;
rdfs:label "Sample Reception"@en .
:BikaLimsFeatSampleRegistration
a :FeatureCitation ;
rdfs:label "Sample Registration"@en .
:BikaLimsFeatSampleRejection
a :FeatureCitation ;
rdfs:label "Sample Rejection"@en .
:BikaLimsFeatUnitConversion
a :FeatureCitation ;
rdfs:label "Unit Conversion"@en .
:BikaLimsFeatUserGroups
a :FeatureCitation ;
rdfs:label "User Groups"@en .
:BikaLimsFeatWorksheetsExports
a :FeatureCitation ;
rdfs:label "Worksheets exports"@en .
:BikaLimsFuncAnalysis
a :EnterpriseFunctionCitation ;
rdfs:label "Analysis"@en .
:BikaLimsFuncBilling
:efCitClassifiedAs :BbAdministrativeDischargeAndBilling, :BbAdministrativeDischargeAndFinalBilling ;
a :EnterpriseFunctionCitation ;
rdfs:label "Billing"@en .
:BikaLimsFuncManagingClients
:efCitClassifiedAs :WhoDhiClientIdentificationAndRegistration ;
a :EnterpriseFunctionCitation ;
rdfs:label "Managing Clients"@en .
:BikaLimsFuncQualityControl
:efCitClassifiedAs :BbQualityManagement ;
a :EnterpriseFunctionCitation ;
rdfs:label "Quality Control"@en .
:BikaLimsFuncSampleManagement
a :FeatureCitation ;
rdfs:label "Sample management"@en .
:BikaLimsFuncStorage
a :FeatureCitation ;
rdfs:label "Storage"@en .
:BikaLimsOrgLaboratory
:ouCitClassifiedAs :SnomedLaboratoryEnvironment ;
a :OrganizationalUnitCitation ;
rdfs:label "Laboratory"@en .
:CernerFirstNet
:license <http://www.ebi.ac.uk/swo/license/SWO_1000002> ;
:spIsOfAstCit :FirstNetAppEmergencyMedicineInformationSystem ;
:spOffersFCit :CernerFirstNetFeatureCreationOfDataRelationToTriage, :CernerFirstNetFeatureDischargeSummaries, :CernerFirstNetFeatureMandatoryReporting, :CernerFirstNetPatientManagementPlans ;
a :SoftwareProduct ;
rdfs:comment "Softwareprodukt aus Studie, keine weiteren Informationen vorhanden"@en ;
rdfs:label "Cerner First Net"@en .
:CernerFirstNetFeatureCreationOfDataRelationToTriage
:fCitClassifiedAs :EhrSfmManageCareCoordinationReporting, :EhrSfmManageHealthcareResourceScheduling, :EhrSfmSupportCareCoordinationReporting, :EhrSfmSupportTriageCategorization ;
a :FeatureCitation ;
rdfs:label "creation of data relation to triage"@en .
:CernerFirstNetFeatureDischargeSummaries
:fCitClassifiedAs :EhrSfmProduceASummaryRecordOfCare ;
a :FeatureCitation ;
rdfs:label "discharge summaries"@en .
:CernerFirstNetFeatureMandatoryReporting
:fCitClassifiedAs :EhrSfmManageCareCoordinationReporting, :EhrSfmSupportCareCoordinationReporting ;
a :FeatureCitation ;
rdfs:label "mandatory reporting"@en .
:CernerFirstNetPatientManagementPlans
:fCitClassifiedAs :EhrSfmManageClinicalDocumentation ;
a :FeatureCitation ;
rdfs:label "patient management plans"@en .
:CernerMilleniumPowerOrders
:license <http://www.ebi.ac.uk/swo/license/SWO_1000002> ;
:spIsOfAstCit :CernerMilleniumPowerOrdersAppCPOE ;
:spOffersFCit :CernerMilleniumPowerOrdersFeatureDropdownMenuOfPredefinedOrderSentencesTriggeredOnDrugSelection, :CernerMilleniumPowerOrdersFeaturePredefinedOrderSentencesWithDetailsOfDrugStrengthDoseAndForm ;
a :SoftwareProduct ;
rdfs:comment "Softwareprodukt aus Studie, keine weiteren Informationen vorhanden"@en ;
rdfs:label "Cerner Millenium Power Orders"@en .
:CernerMilleniumPowerOrdersAppCPOE
:astCitClassifiedAs :BbProviderOrPhysicianOrderEntrySystem ;
a :ApplicationSystemTypeCitation ;
rdfs:label "Computerized Physician Order Entry (CPOE) System"@en .
:CernerMilleniumPowerOrdersFeatureDropdownMenuOfPredefinedOrderSentencesTriggeredOnDrugSelection
:fCitClassifiedAs :EhrSfmManageOrderSetTemplates, :EhrSfmManageOrders, :EhrSfmMedicationOrderEfficiencies, :EhrSfmSupportForMedicationOrderingEfficiencies, :EhrSfmSupportOrders, :EhrSfmUseOrderSets ;
a :FeatureCitation ;
rdfs:label "dropdown menu of predefined order sentences triggered on drug selection"@en .
:CernerMilleniumPowerOrdersFeaturePredefinedOrderSentencesWithDetailsOfDrugStrengthDoseAndForm
:fCitClassifiedAs :EhrSfmManageOrderSetTemplates, :EhrSfmManageOrders, :EhrSfmMedicationOrderEfficiencies, :EhrSfmSupportForMedicationOrderingEfficiencies, :EhrSfmSupportOrders, :EhrSfmUseOrderSets ;
a :FeatureCitation ;
rdfs:label "predefined order sentences with details of drug strength dose and form"@en .
:CernerSoarianCpoePlatform
:license <http://www.ebi.ac.uk/swo/license/SWO_1000002> ;
:spIsOfAstCit :SoarianAppEnterpriseRevenueCycleManagementSoftware, :SoarianAppFinancialsSystem ;
:spOffersFCit :CernerSoarianCpoePlatformFeatureMedicationSpecificOrderSet, :CernerSoarianCpoePlatformFeatureUnitSpecificOderSet ;
a :SoftwareProduct ;
rdfs:comment "Softwareprodukt aus Studie, keine weiteren Informationen vorhanden"@en ;
rdfs:label "Cerner Soarian CPOE platform"@en .
:CernerSoarianCpoePlatformFeatureMedicationSpecificOrderSet
:fCitClassifiedAs :EhrSfmManageMedicationOrders, :EhrSfmManageOrderSetTemplates, :EhrSfmManageOrders, :EhrSfmMedicationOrderEfficiencies, :EhrSfmSupportForMedicationOrderingEfficiencies, :EhrSfmSupportOrders, :EhrSfmUseOrderSets ;
a :FeatureCitation ;
rdfs:label "medication-specific order set"@en .
:CernerSoarianCpoePlatformFeatureUnitSpecificOderSet
:fCitClassifiedAs :EhrSfmManageMedicationOrders, :EhrSfmManageOrderSetTemplates, :EhrSfmManageOrders, :EhrSfmManageOrdersForDiagnosticscreeningTests, :EhrSfmMedicationOrderEfficiencies, :EhrSfmSupportForMedicationOrderingEfficiencies, :EhrSfmSupportOrders, :EhrSfmUseOrderSets ;
a :FeatureCitation ;
rdfs:label "unit-specific oder set"@en .
:Cis1
:client :Mobile, :Native ;
:license <http://www.ebi.ac.uk/swo/license/SWO_1000002> ;
:spIsOfAstCit :CommercialCis1AppSys ;
:spOffersFCit :Cis1FeatSupportOfIntegratedPatientCentredDocumentationForDifferentDisciplines, :Cis1FeatSupportOfMedicationOrderingAndMedicationDocumentation, :Cis1FeatSupportOfNursingDocumentation, :Cis1FeatSupportOfQualityAssurance, :Cis1FeatSupportOfTriage, :Cis1FeatSupportOfVariousTypesOfBilling, :Cis1FeatSupportOfWardOrganization, :Cis1FeatSupportSurveillanceOfInfectiousDiseases, :Cis1FeatSupportToManagevariousClinicalAndDiagnosticResults, :CisFeatSupportOfServiceRecording ;
:spSupportsEfCit :Cis1FuncAccounting, :Cis1FuncControlling, :Cis1FuncIntegratedPatientCentredDocumentationForDifferentDisciplines, :Cis1FuncKnowledgeManagement, :Cis1FuncLogistics, :Cis1FuncManageVariousClinicalAndDiagnosticResults, :Cis1FuncMedicationOrderingAndMedicationDocumentation, :Cis1FuncNursingDocumentation, :Cis1FuncQualityAssurance, :Cis1FuncScheduling, :Cis1FuncServiceRecording, :Cis1FuncSurveillanceOfInfectiousDiseases, :Cis1FuncVariousTypesOfBilling, :Cis1FuncWardOrganization, :CisFuncTriage ;
a :SoftwareProduct ;
rdfs:comment "Clinical information system (integrated EHR system) Dummy 1"@en ;
rdfs:label "Commercial CIS1"@en .
:Cis1FeatSupportOfIntegratedPatientCentredDocumentationForDifferentDisciplines
:fCitClassifiedAs :EhrSfmManageClinicalDocumentation, :EhrSfmManagePatientHistory, :EhrSfmManagePatientspecificCareAndTreatmentPlans ;
a :FeatureCitation ;
rdfs:label "Support of integrated patient centred documentation for different disciplines"@en .
:Cis1FeatSupportOfMedicationOrderingAndMedicationDocumentation
:fCitClassifiedAs :EhrSfmManageMedicationAdministration, :EhrSfmManageMedicationList, :EhrSfmManageMedicationOrders, :EhrSfmManageOrders ;
a :FeatureCitation ;
rdfs:label "Support of medication ordering and medication documentation"@en .
:Cis1FeatSupportOfNursingDocumentation
:fCitClassifiedAs :EhrSfmManageClinicalDocumentation ;
a :FeatureCitation ;
rdfs:label "Support of nursing documentation"@en .
:Cis1FeatSupportOfQualityAssurance
:fCitClassifiedAs :EhrSfmQualityPreformanceAndAccountabilityMeasures, :EhrSfmSupportForProcessImprovement ;
a :FeatureCitation ;
rdfs:label "Support of quality assurance"@en .
:Cis1FeatSupportOfTriage
:fCitClassifiedAs :EhrSfmSupportTriageCategorization ;
a :FeatureCitation ;
rdfs:label "Support of triage"@en .
:Cis1FeatSupportOfVariousTypesOfBilling
:fCitClassifiedAs :EhrSfmSupportRulesdrivenFinancialAdministrativeCoding ;
a :FeatureCitation ;
rdfs:label "Support of various types of billing"@en .