-
Notifications
You must be signed in to change notification settings - Fork 1
/
it4it.ttl
2301 lines (1901 loc) · 113 KB
/
it4it.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://www.snik.eu/ontology/> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix meta: <meta/> .
@prefix bb: <bb/> .
@prefix ob: <ob/> .
@prefix ciox: <ciox/> .
@prefix he: <he/> .
@prefix it: <it/> .
@prefix it4it: <it4it/> .
@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 vann: <http://purl.org/vocab/vann/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix dc: <http://purl.org/dc/terms/> .
dc:source
a owl:AnnotationProperty .
<it4it>
ov:defines <it4it>, it4it:Acceptance, it4it:AccessRight, it4it:Activity, it4it:ActualServiceCIs, it4it:ActualValue, it4it:AdmittingPhysician, it4it:ApprovalOfITPolicies, it4it:AuditOfITPolicies, it4it:Availibility, it4it:BindingCharacter, it4it:Build, it4it:BuildComponent, it4it:BuildKeyDataObject, it4it:BuildPackage, it4it:BuildPackageComponent, it4it:BusinessValueChain, it4it:CIN, it4it:CareComprisedGroupsOfPatients, it4it:CareCoordinationOfCareProcess, it4it:CatalogCompositionComponent, it4it:ChangeControlComponent, it4it:ChargebackContract, it4it:ChargebackShowbackComponent, it4it:ClassName, it4it:ConceptDomain, it4it:ConceptType, it4it:ConceptualService, it4it:ConceptualServiceBlueprint, it4it:ConfigurationManagementComponent, it4it:Consumption, it4it:Correctness, it4it:CostModelingComponent, it4it:CreationOfBuildPackages, it4it:CreationOfBuilds, it4it:CreationOfITInitiatives, it4it:CreationOfITPolicies, it4it:CreationOfLontermITInvestment, it4it:CreationOfScopeAgreementsForProjects, it4it:CreationOfSourceCode, it4it:DataObject, it4it:Deadline, it4it:Defect, it4it:DefectComponent, it4it:DegreeOfNormativity, it4it:Deliver, it4it:DesignOfLogicalServicesBlueprints, it4it:DesiredServiceModel, it4it:DetectToCorrect, it4it:DiagnosticsRemediationComponent, it4it:Duration, it4it:EndDate, it4it:EnterpriseArchitectureComponent, it4it:Error, it4it:Event, it4it:EventComponent, it4it:ExecutionPlanOfAction, it4it:Extent, it4it:FeatureAdministrateTheMasterPatientIndex, it4it:FeatureAdmitPatientsToTheWard, it4it:FeatureAnalyzeData, it4it:FeatureArchivePictures, it4it:FeatureAssignDoctorsToPatientsOrRooms, it4it:FeatureAssignOrderAndBloodSamplesToDevices, it4it:FeatureAssignOrdersToModalities, it4it:FeatureAssignPatientsToModalities, it4it:FeatureAssignPatientsToRoomsAndBeds, it4it:FeatureAssignStaffToPatientsOrOutpatientUnits, it4it:FeatureAssignStaffToPatientsOrRooms, it4it:FeatureAttachDigitalSignatures, it4it:FeatureCalculateDosageOfDrugs, it4it:FeatureCollectResultsFromDevices, it4it:FeatureCommunicateDischargeInformation, it4it:FeatureCommunicateDocumentsToOtherApplications, it4it:FeatureCommunicatePictures, it4it:FeatureCommunicateReportToOrderingUnit, it4it:FeatureCreateWorklistForAGroupOfPatients, it4it:FeatureCreatingARoster, it4it:FeatureCreationOfRadiologyReports, it4it:FeatureDisplayEarlierLabResultsOfAPatient, it4it:FeatureDisplayPictures, it4it:FeatureDisplayVitalParametersFromMonitoringDevices, it4it:FeatureDisplayWarningMessages, it4it:FeatureImportDocuments, it4it:FeatureIndexDocumentContent, it4it:FeatureIntegrateDataFromDifferentApplicationComponents, it4it:FeatureManageModalities, it4it:FeatureManageStorageFormats, it4it:FeatureManageStorageMedia, it4it:FeatureMergePatientInformationFromTwoRecords, it4it:FeatureMessageQueuing, it4it:FeatureModifyPresentationOfPictures, it4it:FeatureMulticasting, it4it:FeatureOfferDecisionSupportForCarePlanning, it4it:FeatureOrganizePatientTransport, it4it:FeaturePrepareReport, it4it:FeaturePreparingStatistics, it4it:FeaturePrintForms, it4it:FeaturePrintReports, it4it:FeaturePrintingOfLabels, it4it:FeatureProvideACollectionOfInternalProcessesAndRegulations, it4it:FeatureProvideAccessToArchivedInformation, it4it:FeatureProvideCatalogsAndOtherMeansForCodingOfNursingDiagnosis, it4it:FeatureProvideCatalogsAndOtherMeansForCodingOfNursingProcedures, it4it:FeatureProvideCatalogsAndOtherMeansForCodingPatient-relatedProcedures, <it4it/FeatureProvideCatalogsAndOtherMeansForCodingPatients’Diagnoses>, it4it:FeatureProvideCatalogsAndOtherMeansForCodingRadiologicalDiagnoses, it4it:FeatureProvideCatalogsAndOtherMeansForCodingRadiologicalProcedures, it4it:FeatureProvideContext-relatedMedicalKnowledge, it4it:FeatureProvideDrugCatalogs, it4it:FeatureProvideFormsForClinicalReports, it4it:FeatureProvideFormsForDocumentingClinicalProcedures, it4it:FeatureProvideFormsForDocumentingDiagnosis, it4it:FeatureProvideFormsForDocumentingDiagnosisAndProblems, it4it:FeatureProvideFormsForDocumentingMedicalAnamnesis, it4it:FeatureProvideFormsForDocumentingMedications, it4it:FeatureProvideFormsForDocumentingNursingAims, it4it:FeatureProvideFormsForDocumentingNursingTasks, <it4it/FeatureProvideFormsForDocumentingPatients_’InformedConsent>, <it4it/FeatureProvideFormsForDocumentingPatient’sInformedConsent>, it4it:FeatureProvideFormsForDocumentingPerformedTasks, it4it:FeatureProvideFormsForDocumentingPlannedTasks, it4it:FeatureProvideFormsForDocumentingProceduresAndOutcomes, it4it:FeatureProvideFormsForDocumentingTheNursingHistory, it4it:FeatureProvideFormsForDocumentingTheOutcomeOfNursingTasks, it4it:FeatureProvideFormsForEnteringClinicalData, it4it:FeatureProvideFormsForEnteringOrUpdatingPatientAdministrativeInformation, <it4it/FeatureProvideFormsForPatients_’InformedConsent>, it4it:FeatureProvideFormsForPreparingABillForThePatientInsurance, it4it:FeatureProvideFormsForPreparingClinicalReports, it4it:FeatureProvideFormsForPreparingOperationReports, it4it:FeatureProvideFormsForWritingAReport, it4it:FeatureProvideFormsForWritingATransferLetterOrDischargeReport, it4it:FeatureProvideFormsForWritingTheDischargeLetterOrDischargeReport, it4it:FeatureProvideFormsForWritingTheDischargeReport, it4it:FeatureProvideFormsForWritingTheNursingDischargeReport, it4it:FeatureProvideGuidelinesForCarePlanning, it4it:FeatureProvideGuidelinesForTreatmentPlanning, it4it:FeatureProvideMeansForAccountsPayable, it4it:FeatureProvideMeansForAccountsReceivable, it4it:FeatureProvideMeansForAssetAccounting, it4it:FeatureProvideMeansForCheck-inOfPatient, it4it:FeatureProvideMeansForControlOfSecurityIssues, it4it:FeatureProvideMeansForCostCenterAccounting, it4it:FeatureProvideMeansForCostElementAccounting, it4it:FeatureProvideMeansForCreatingARoster, it4it:FeatureProvideMeansForCreatingOperationPlans, it4it:FeatureProvideMeansForCreatingStatistics, it4it:FeatureProvideMeansForDataMining, it4it:FeatureProvideMeansForEditingAndGraphicallyIllustratingCollectionsOfInternalProcessesAndRegulations, it4it:FeatureProvideMeansForFiNalizingDocumentation, it4it:FeatureProvideMeansForFinalizingDocumentation, it4it:FeatureProvideMeansForFinalizingNursingDocumentation, it4it:FeatureProvideMeansForGeneralLedgerAccounting, it4it:FeatureProvideMeansForIncidentTracking, it4it:FeatureProvideMeansForInitiatingFinalBillingForOutpatientTreatment, it4it:FeatureProvideMeansForInitiationOfFinalBilling, it4it:FeatureProvideMeansForManagingAndMonitoringDisposal, it4it:FeatureProvideMeansForManagingAppointments, it4it:FeatureProvideMeansForManagingLogistics, it4it:FeatureProvideMeansForManagingMedicalDevices, <it4it/FeatureProvideMeansForManagingOutpatientUnit’sStaff>, it4it:FeatureProvideMeansForManagingRooms, it4it:FeatureProvideMeansForManagingWardStaff, it4it:FeatureProvideMeansForMinimizingAdverseDrugEvents, it4it:FeatureProvideMeansForOrderManagement, it4it:FeatureProvideMeansForOrderingConsumables, it4it:FeatureProvideMeansForOrderingDrugs, it4it:FeatureProvideMeansForOrderingDrugsMaterialsAndLaundry, it4it:FeatureProvideMeansForOrderingLaundry, it4it:FeatureProvideMeansForOrderingPatientTransferToOtherUnits, it4it:FeatureProvideMeansForOrderingPatientTransferToWard, it4it:FeatureProvideMeansForOrderingPatientTransferWithinTheInstitution, it4it:FeatureProvideMeansForOrderingTransportServices, it4it:FeatureProvideMeansForOrganizingCareerDevelopment, it4it:FeatureProvideMeansForOrganizingRecruitment, it4it:FeatureProvideMeansForOrganizingTraining, it4it:FeatureProvideMeansForOverheadCostManagement, it4it:FeatureProvideMeansForPerformanceEvaluation, it4it:FeatureProvideMeansForPreparingACarePlan, it4it:FeatureProvideMeansForPreparingHospital-wideStatistics, it4it:FeatureProvideMeansForPreparingStatistics, it4it:FeatureProvideMeansForPreparingWard-relatedStatistics, it4it:FeatureProvideMeansForPreparingWorkSchedules, it4it:FeatureProvideMeansForPreventiveMaintenance, it4it:FeatureProvideMeansForProductCosting, it4it:FeatureProvideMeansForRecruitingOfPatients, <it4it/FeatureProvideMeansForSchedulingAPatient_’sAppointment>, <it4it/FeatureProvideMeansForSchedulingPatients_’Appointments>, it4it:FeatureProvideMeansForStockKeeping, it4it:FeatureProvideMeansForVerifyingCodingDoneInDepartments, it4it:FeatureProvideOrdersForPatient-relatedDrugs, it4it:FeatureProvideOrdersForPatient-relatedExaminations, it4it:FeatureProvideRelativesWithInformationOnTheLocationOfAPatient, it4it:FeatureProvideReminderForFulfillingOfLegalReportingRequirements, it4it:FeatureProvisionOfPatientDataAndExaminationParameters, it4it:FeatureReceiveBloodSamples, it4it:FeatureReceiveOrders, it4it:FeatureRegisteringPatients, it4it:FeatureRetrievePatient, it4it:FeatureScanDocuments, it4it:FeatureScanningDocumentsFromReferringPhysicianAndOtherSources, it4it:FeatureScoringOfThePatient, it4it:FeatureSearchForOldPictures, it4it:FeatureSelectOrdersFromOrderSets, it4it:FeatureServiceCombination, it4it:FeatureServiceOrchestration, it4it:FeatureStructureData, it4it:FeatureSupportCreationOfANursingCarePlan, it4it:FeatureValidateResults, it4it:FeatureViewPatient-relatedAppointments, it4it:FeatureWorkScheduling, it4it:FeatureWorkflowManagement, it4it:Finance, it4it:Fulfillment, it4it:FulfillmentExecutionComponent, it4it:FulfillmentRequest, it4it:FunctionalComponent, it4it:Governance, it4it:HumanResource, it4it:ICDCode, it4it:ID, it4it:IT4IT, it4it:ITAssetManagement, it4it:ITBudget, it4it:ITCostModel, it4it:ITInitiative, it4it:ITInvestmentPortfolioComponent, it4it:ITValueChain, it4it:Incident, it4it:IncidentComponent, it4it:Insurance, it4it:IsCentralized, it4it:IsObjective, it4it:IsProlective, it4it:IsRedundant, it4it:IsRetrolective, it4it:IsSubjective, it4it:It4ItFunction, it4it:LaborManagement, it4it:Location, it4it:LogicalServiceBlueprint, it4it:Maintainability, it4it:ManagementCentralityOfInformationManagement, it4it:ManagementCentralityOfNetworkManagement, it4it:ManagementFinancingForm, it4it:ManagementLegalForm, it4it:ManagementOfBuildPackages, it4it:ManagementOfBuilds, it4it:ManagementOfDemands, it4it:ManagementOfITInitiatives, it4it:ManagementOfITInvestments, it4it:ManagementOfITPolicies, it4it:ManagementOfITProposals, it4it:ManagementOfLontermITInvestment, it4it:ManagementOfProblems, it4it:ManagementOfRequirements, it4it:ManagementOfServicePortfolio, it4it:ManagementOfSourceCode, it4it:ManagementOpenness, it4it:Measurability, it4it:Offer, it4it:OfferConsumptionComponent, it4it:OfferManagementComponent, it4it:OfficialUserGroup, it4it:Ontology, it4it:OntologyMaintainer, it4it:OntologyQuestion-Types, it4it:OperatingModel, it4it:PIN, it4it:Performance, it4it:Person, it4it:Pertinency, it4it:Place, it4it:Plan, it4it:Planning, it4it:Policy, it4it:PolicyComponent, it4it:PortfolioBacklogItem, it4it:PortfolioDemandComponent, it4it:PrimaryActivity, it4it:Priority, it4it:ProblemComponent, it4it:ProblemKnownError, it4it:Production, it4it:ProjectComponent, it4it:ProposalComponent, it4it:Quantifiability, it4it:RFC, it4it:Redundancy, it4it:Relative, it4it:ReleaseComposotionComponent, it4it:Relevancy, it4it:Request, it4it:RequestRealisationComponent, it4it:RequestToFullfil, it4it:Requirement, it4it:RequirementComponent, it4it:RequirementsToDeploy, it4it:ResponsiblePerson, it4it:ReviewOfITPolicies, it4it:Run, it4it:RunBook, it4it:ScopeAgreement, it4it:ServiceArchitecture, it4it:ServiceCatalogEntry, it4it:ServiceContract, it4it:ServiceDesignComponent, it4it:ServiceLevelComponent, it4it:ServiceMonitor, it4it:ServiceMonitoringComponent, it4it:ServicePortfolioComponent, it4it:ServiceRelease, it4it:ServiceReleaseBlueprint, it4it:ShoppingCart, it4it:Source, it4it:SourceControlComponent, it4it:Stability, it4it:StartDate, it4it:StartEvent, it4it:StrategyToPortfolio, it4it:StructureConfiguration, it4it:StructureRange, it4it:StructureSize, it4it:StructureStability, it4it:Subscription, it4it:SupplierManagement, it4it:Support, it4it:SupportingActivity, it4it:Synonym, it4it:SystemOfRecord, it4it:TargetValue, it4it:TemporalDevelopmentStage, it4it:TemporalLifeSpan, it4it:TestCase, it4it:TestComponent, it4it:Timeslot, it4it:TransferDiagnosis, it4it:TripelPage, it4it:TripelRowNr, it4it:Type, it4it:Understandability, it4it:Up-to-Dateness, it4it:UsageComponent, it4it:UsageDescription, it4it:UsageRecord, it4it:ValueChain, it4it:ValueStream, it4it:assetsAvailability, it4it:auxiliaryDataObject, it4it:auxiliaryFunctionalComponent, it4it:chapter, it4it:competencyAvailability, it4it:conceptualServiceBlueprint, it4it:currentPracticeEngagementDataflow, it4it:currentPracticeEntityRelationship, it4it:dataObject, it4it:engagementDataflow, it4it:entityRelationship, it4it:functionalComponent, <it4it/in_€>, it4it:isHeterogeneous, it4it:isHomogeneous, it4it:it4itObjectProperty, it4it:keyDataObject, it4it:keyFunctionalComponent, it4it:mainFunctions, it4it:ontologyDomain, it4it:ontologyUse, it4it:ontologyUser, it4it:policy, it4it:policyToConceptualService, it4it:portfolioBacklogItem, it4it:portfolioBacklogItemRationalizedPrioritzed, it4it:purpose, it4it:recordFabricIntegration, it4it:scopeAgreement, it4it:serviceArchitectureToConceptualService, it4it:serviceModelBackboneDataObject ;
dc:modified "2017-08-02" ;
dc:publisher <../de/Team> ;
vann:preferredNamespacePrefix "it4it" ;
vann:preferredNamespaceUri "http://www.snik.eu/ontology/it4it/" ;
it4it:ontologyDomain "The Domain of this ontology is information management of a company."^^xsd:string ;
it4it:ontologyQuestionTypes "Relevant concept and their relationship of the domain."^^xsd:string ;
it4it:ontologyUse """- Overview of the Domain.
- Teaching.
- Basis for Software Artifacts: CIONs and CIONw."""^^xsd:string ;
it4it:ontologyUser "Information Managers, Studends, Consultants, Software Developer, Researcher"^^xsd:string ;
a owl:Ontology ;
rdfs:comment "The Open Group IT4ITTM Reference Architecture, Version 2.0, Document Number: C155, ISBN: 1-937218-69-0, The Open Group, October 2015"@en ;
rdfs:label "IT4IT", "IT4IT Ontology"@en ;
foaf:homepage <http://www.snik.eu> .
it4it:Acceptance
a owl:DatatypeProperty ;
rdfs:label "Acceptance"@en .
it4it:AccessRight
a owl:DatatypeProperty ;
rdfs:label "Access Right"@en .
it4it:Activity
a owl:Class ;
rdfs:label "Activity"@en ;
rdfs:subClassOf it4it:IT4IT .
it4it:ActualServiceCIs
it4it:serviceModelBackboneDataObject it4it:ConfigurationManagementComponent ;
a meta:EntityType, owl:Class ;
rdfs:label "Actual Service CIs"@en ;
rdfs:subClassOf it4it:DataObject .
it4it:ActualValue
a owl:DatatypeProperty ;
rdfs:label "Actual Value"@en .
it4it:AdmittingPhysician
a owl:DatatypeProperty ;
rdfs:label "Admitting Physician"@en .
it4it:ApprovalOfITPolicies
a meta:Function, owl:Class ;
rdfs:label "Approval Of ITPolicies"@en ;
rdfs:subClassOf it4it:It4ItFunction .
it4it:AuditOfITPolicies
a meta:Function, owl:Class ;
rdfs:label "Audit Of ITPolicies"@en ;
rdfs:subClassOf it4it:It4ItFunction .
it4it:Availibility
a owl:DatatypeProperty ;
rdfs:label "Availibility"@en .
it4it:BindingCharacter
a owl:DatatypeProperty ;
rdfs:label "Binding Character"@en .
it4it:Build
a owl:Class ;
rdfs:label "Build"@en ;
rdfs:subClassOf it4it:PrimaryActivity ;
owl:equivalentClass it4it:RequirementsToDeploy .
it4it:BuildComponent
a meta:EntityType, meta:ApplicationComponent, owl:Class ;
it4it:purpose """* Receive the Source data object from the Source Control functional component and manage the creation, implementation, automation, and security and storage of all Builds.
* Create Build from the Source data object for a particular service component.
* Automate the Build process to support the Build schedule and build frequency requirements in order to support daily Build and smoke test plans or continuous integration plans.
* Run dynamic application security testing no later than when the final Build data object is received and before the RFCs are created for moving the new or changed service into production.
* Manage Builds and versioning in a Definitive Media Library (DML).
* Develop automated Build storage procedures and automated compilation techniques and tools.
* Monitor and report on the results of each integration Build.
* Initiate or automate the delivery of Builds to the Build Package functional component for validation by the acceptance testing team as candidate release builds.""" ;
meta:supports it4it:CreationOfBuilds, it4it:ManagementOfBuilds ;
rdfs:label "Build Component"@en ;
rdfs:subClassOf it4it:FunctionalComponent .
it4it:BuildKeyDataObject
it4it:keyDataObject it4it:BuildComponent ;
a meta:EntityType, owl:Class ;
rdfs:label "Build Key Data Object"@en ;
rdfs:subClassOf it4it:DataObject .
it4it:BuildPackage
it4it:keyDataObject it4it:BuildPackageComponent ;
a meta:EntityType, owl:Class ;
rdfs:label "Build Package"@en ;
rdfs:subClassOf it4it:DataObject .
it4it:BuildPackageComponent
a meta:EntityType, meta:ApplicationComponent, owl:Class ;
it4it:purpose """* Creation of a deployable package made up of one or many Builds.
* Manage the Build Packages and relationships to the Service Release Blueprints.""" ;
meta:supports it4it:CreationOfBuildPackages, it4it:ManagementOfBuildPackages ;
rdfs:label "Build Package Component"@en ;
rdfs:subClassOf it4it:FunctionalComponent .
it4it:BusinessValueChain
a owl:Class ;
rdfs:label "Business Value Chain"@en .
it4it:CIN
a owl:DatatypeProperty ;
rdfs:label "CIN"@en .
it4it:CareComprisedGroupsOfPatients
a owl:DatatypeProperty ;
rdfs:label "Care Comprised Groups of Patients"@en .
it4it:CareCoordinationOfCareProcess
a owl:DatatypeProperty ;
rdfs:label "Care Coordination of care process"@en .
it4it:CatalogCompositionComponent
a meta:EntityType, owl:Class ;
rdfs:label "Catalog Composition Component"@en ;
rdfs:subClassOf it4it:FunctionalComponent .
it4it:ChangeControlComponent
a meta:EntityType, owl:Class ;
rdfs:label "Change Control Component"@en ;
rdfs:subClassOf it4it:FunctionalComponent .
it4it:Chapter2-8
meta:book <it4it> ;
meta:chapterNumber "2.8" ;
a meta:Chapter ;
rdfs:label "chapter 2.8" .
it4it:Chapter5-4-1
meta:book <it4it> ;
meta:chapterNumber "5.4.1" ;
a meta:Chapter ;
rdfs:label "chapter 5.4.1" .
it4it:Chapter5-4-2
meta:book <it4it> ;
meta:chapterNumber "5.4.2" ;
a meta:Chapter ;
rdfs:label "chapter 5.4.2" .
it4it:Chapter5-4-3
meta:book <it4it> ;
meta:chapterNumber "5.4.3" ;
a meta:Chapter ;
rdfs:label "chapter 5.4.3" .
it4it:Chapter5-4-4
meta:book <it4it> ;
meta:chapterNumber "5.4.4" ;
a meta:Chapter ;
rdfs:label "chapter 5.4.4" .
it4it:Chapter5-4-5
meta:book <it4it> ;
meta:chapterNumber "5.4.5" ;
a meta:Chapter ;
rdfs:label "chapter 5.4.5" .
it4it:Chapter5-4-6
meta:book <it4it> ;
meta:chapterNumber "5.4.6" ;
a meta:Chapter ;
rdfs:label "chapter 5.4.6" .
it4it:Chapter6-4-1
meta:book <it4it> ;
meta:chapterNumber "6.4.1" ;
a meta:Chapter ;
rdfs:label "chapter 6.4.1" .
it4it:Chapter6-4-2
meta:book <it4it> ;
meta:chapterNumber "6.4.2" ;
a meta:Chapter ;
rdfs:label "chapter 6.4.2" .
it4it:Chapter6-4-3
meta:book <it4it> ;
meta:chapterNumber "6.4.3" ;
a meta:Chapter ;
rdfs:label "chapter 6.4.3" .
it4it:Chapter8-4-4
meta:book <it4it> ;
meta:chapterNumber "8.4.4" ;
a meta:Chapter ;
rdfs:label "chapter 8.4.4" .
it4it:ChargebackContract
it4it:keyDataObject it4it:ChargebackShowbackComponent ;
a meta:EntityType, owl:Class ;
rdfs:label "Chargeback Contract"@en ;
rdfs:subClassOf it4it:DataObject .
it4it:ChargebackShowbackComponent
a meta:EntityType, owl:Class ;
rdfs:label "Chargeback / Showback Component"@en ;
rdfs:subClassOf it4it:FunctionalComponent .
it4it:ClassName
a owl:DatatypeProperty ;
rdfs:label "Class Name"@en .
it4it:ConceptDomain
a owl:AnnotationProperty ;
rdfs:label "Concept Domain"@en .
it4it:ConceptType
a owl:AnnotationProperty ;
rdfs:label "Concept Type"@en .
it4it:ConceptualService
it4it:entityRelationship it4it:ITBudget, it4it:Policy ;
it4it:page "56"^^xsd:positiveInteger ;
it4it:serviceModelBackboneDataObject it4it:ServicePortfolioComponent ;
meta:chapter it4it:Chapter5-4-5 ;
meta:isAssociatedWith it4it:StrategyToPortfolio ;
a meta:EntityType, owl:Class, owl:NamedIndividual ;
rdfs:comment """Key Attributes
The Conceptual Service data object shall have the following key data attributes:
* ServiceID: Unique identifier of the Conceptual Service.
* ConceptualServiceDetails: Details of the Conceptual Service.
* ServiceOwner: Owner of the Conceptual Service.
* ServiceStatus: Status; e.g., planned, retired, etc."""@en, """Key Data Object Relationships
The Conceptual Service data object shall maintain the following relationships:
* Service Architecture to Conceptual Service (n:m): Traceability is maintained between one or more Conceptual Services and the Enterprise Architecture drawings, diagrams, and other documents that describe those services.
* Conceptual Service to Portfolio Backlog Item (1:n): One Conceptual Service may be related to one or more Portfolio Backlog Items.
* Conceptual Service to IT Budget (n:m): Budget for one Conceptual Service may be spread across multiple budget items and one budget item could hold budget for multiple Conceptual Services.
* Conceptual Service to Policy (n:m): Multiple Policies might be applicable for a single service or a single Policy may be applicable for multiple services."""@en ;
rdfs:label "Conceptual Service"@en ;
rdfs:subClassOf it4it:DataObject ;
skos:definition "The Service Model is an authoritative source for the list of services that the enterprise consumes. It represents services planned, in transition, in production, or retired."^^xsd:string .
it4it:ConceptualServiceBlueprint
it4it:page "56"^^xsd:positiveInteger ;
it4it:serviceModelBackboneDataObject it4it:ServicePortfolioComponent ;
meta:chapter it4it:Chapter5-4-5 ;
meta:isAssociatedWith it4it:StrategyToPortfolio ;
a meta:EntityType, owl:Class, owl:NamedIndividual ;
rdfs:comment """Key Attributes
The Conceptual Service Blueprint data object shall have the following key data attributes:
* ConceptualServiceBlueprintID: Unique identifier of the Conceptual Service Blueprint.
* ConceptualServiceBlueprint: Details of the Conceptual Service Blueprint.
* ServiceID: Unique identifier of the Conceptual Service to which Blueprint is associated."""@en, """Key Data Object Relationships
The Conceptual Service Blueprint data object shall maintain the following relationships:
* Conceptual Service to Conceptual Service Blueprint (1:n): One Conceptual Service may have multiple Conceptual Service Blueprints.
* IT Cost Model to Conceptual Service Blueprint (1:n): One IT cost model (rule engine) can be applicable for multiple Conceptual Service Blueprints.
* Conceptual Service Blueprint to Logical Service Blueprint (1:n): One Conceptual Service Blueprint could have one or more Logical Service Blueprints."""@en ;
rdfs:label "Conceptual Service Blueprint"@en ;
rdfs:subClassOf it4it:DataObject ;
skos:definition "The Conceptual Service Blueprint contains the list of all service blueprints associated with a given Conceptual Service. (Each Conceptual Service Blueprint has a comprehensive view of the service that depicts endpoints and interfaces that can be understood by Architects and BRMs)."^^xsd:string .
it4it:ConfigurationManagementComponent
a meta:EntityType, owl:Class ;
rdfs:label "Configuration Management Component"@en ;
rdfs:subClassOf it4it:FunctionalComponent .
it4it:Consumption
a it4it:PrimaryActivity, owl:NamedIndividual ;
rdfs:label "Consumption"@en .
it4it:Correctness
a owl:DatatypeProperty ;
rdfs:label "Correctness"@en .
it4it:CostModelingComponent
it4it:auxiliaryFunctionalComponent it4it:StrategyToPortfolio ;
a meta:EntityType, owl:Class ;
rdfs:label "Cost Modeling Component"@en ;
rdfs:subClassOf it4it:FunctionalComponent .
it4it:CreationOfBuildPackages
a meta:Function, owl:Class ;
rdfs:label "Creation Of Build Packages"@en ;
rdfs:subClassOf it4it:It4ItFunction .
it4it:CreationOfBuilds
a meta:Function, owl:Class ;
rdfs:label "Creation Of Builds"@en ;
rdfs:subClassOf it4it:It4ItFunction .
it4it:CreationOfITInitiatives
a meta:Function, owl:Class ;
rdfs:comment "Creation of IT initiatives is in detail, what ist described in attributes IT4IT:Purpose and IT4IT:MainFunction of ProjectComponent."@en ;
rdfs:label "Creation Of ITInitiatives"@en ;
rdfs:subClassOf it4it:It4ItFunction .
it4it:CreationOfITPolicies
a meta:Function, owl:Class ;
rdfs:label "Creation Of ITPolicies"@en ;
rdfs:subClassOf it4it:It4ItFunction .
it4it:CreationOfLontermITInvestment
a meta:Function, owl:Class ;
rdfs:label "Creation Of Lonterm ITInvestment"@en ;
rdfs:subClassOf it4it:It4ItFunction .
it4it:CreationOfScopeAgreementsForProjects
a meta:Function, owl:Class ;
rdfs:label "Creation Of Scope Agreements For Projects"@en ;
rdfs:subClassOf it4it:It4ItFunction .
it4it:CreationOfSourceCode
a meta:Function, owl:Class ;
rdfs:label "Creation Of Source Code"@en ;
rdfs:subClassOf it4it:It4ItFunction .
it4it:DataObject
it4it:entityRelationship it4it:DataObject ;
a meta:EntityType, owl:Class ;
rdfs:label "DataObject"^^xsd:string, "LifecycleDataObject"^^xsd:string ;
rdfs:subClassOf meta:EntityType .
it4it:Deadline
a owl:DatatypeProperty ;
rdfs:label "Deadline"@en .
it4it:Defect
it4it:keyDataObject it4it:DefectComponent ;
a meta:EntityType, owl:Class ;
rdfs:label "Defect"@en ;
rdfs:subClassOf it4it:DataObject .
it4it:DefectComponent
a meta:EntityType, owl:Class ;
rdfs:label "Defect Component"@en ;
rdfs:subClassOf it4it:FunctionalComponent .
it4it:DegreeOfNormativity
a owl:DatatypeProperty ;
rdfs:label "Degree Of Normativity"@en .
it4it:Deliver
a owl:Class ;
rdfs:label "Deliver"@en ;
rdfs:subClassOf it4it:PrimaryActivity ;
owl:equivalentClass it4it:RequestToFullfil .
it4it:DesignOfLogicalServicesBlueprints
a meta:Function, owl:Class ;
rdfs:label "Design Of Logical Services Blueprints"@en ;
rdfs:subClassOf it4it:It4ItFunction .
it4it:DesiredServiceModel
it4it:serviceModelBackboneDataObject it4it:FulfillmentExecutionComponent ;
a meta:EntityType, owl:Class ;
rdfs:label "Desired Service Model"@en ;
rdfs:subClassOf it4it:DataObject .
it4it:DetectToCorrect
a owl:Class ;
rdfs:label "Detect To Correct"@en ;
rdfs:subClassOf it4it:ValueStream ;
owl:equivalentClass it4it:Run .
it4it:DiagnosticsRemediationComponent
a meta:EntityType, owl:Class ;
rdfs:label "Diagnostics & Remediation Component"@en ;
rdfs:subClassOf it4it:FunctionalComponent .
it4it:Duration
a owl:DatatypeProperty ;
rdfs:label "Duration"@en .
it4it:EndDate
a owl:DatatypeProperty ;
rdfs:label "End Date"@en .
it4it:EnterpriseArchitectureComponent
a meta:EntityType, meta:ApplicationComponent, owl:Class;
it4it:conceptualServiceBlueprint it4it:ServicePortfolioComponent ;
it4it:keyDataObject it4it:ServiceArchitecture ;
it4it:keyFunctionalComponent it4it:StrategyToPortfolio ;
it4it:mainFunctions """The Enterprise Architecture functional component:
* Shall identify strategic IT architectural components based on current business vision, strategy, goals, and requirements.
* Shall develop target state business, information, application, technology, and security blueprints based on strategies, principles, and policies.
* Shall develop IT roadmaps based on business roadmap and input.
* Shall develop and maintain enterprise guiding principles.
* Shall manage IT architecture guideline and standards."""@en ;
it4it:page "48"^^xsd:positiveInteger ;
it4it:purpose """Create and manage long-term IT investment and execution plan-of-action that are critical to
business strategic objectives."""@en ;
meta:chapter it4it:Chapter5-4-1 ;
meta:isAssociatedWith it4it:ServiceArchitecture, it4it:StrategyToPortfolio ;
meta:supports it4it:CreationOfLontermITInvestment, it4it:ExecutionPlanOfAction, it4it:ManagementOfLontermITInvestment ;
meta:updates it4it:ServiceArchitecture ;
meta:uses it4it:ServiceArchitecture ;
rdfs:label "Enterprise Architecture Component"@en ;
rdfs:subClassOf it4it:FunctionalComponent .
it4it:Error
a owl:AnnotationProperty ;
rdfs:label "Error"@en .
it4it:Event
it4it:keyDataObject it4it:EventComponent ;
a meta:EntityType, owl:Class ;
rdfs:label "Event"@en ;
rdfs:subClassOf it4it:DataObject .
it4it:EventComponent
a meta:EntityType, owl:Class ;
rdfs:label "Event Component"@en ;
rdfs:subClassOf it4it:FunctionalComponent .
it4it:ExecutionPlanOfAction
a meta:Function, owl:Class ;
rdfs:label "Execution Plan Of Action"@en ;
rdfs:subClassOf it4it:It4ItFunction .
it4it:Extent
a owl:DatatypeProperty ;
rdfs:label "Extent"@en .
it4it:FeatureAdministrateTheMasterPatientIndex
a owl:DatatypeProperty ;
rdfs:label "Feature Administrate the master patient index (MPI)"@en .
it4it:FeatureAdmitPatientsToTheWard
a owl:DatatypeProperty ;
rdfs:label "Feature Admit patients to the ward"@en .
it4it:FeatureAnalyzeData
a owl:DatatypeProperty ;
rdfs:label "Feature Analyze data"@en .
it4it:FeatureArchivePictures
a owl:DatatypeProperty ;
rdfs:label "Feature Archive pictures"@en .
it4it:FeatureAssignDoctorsToPatientsOrRooms
a owl:DatatypeProperty ;
rdfs:label "Feature Assign doctors to patients or rooms"@en .
it4it:FeatureAssignOrderAndBloodSamplesToDevices
a owl:DatatypeProperty ;
rdfs:label "Feature Assign order and blood samples to devices"@en .
it4it:FeatureAssignOrdersToModalities
a owl:DatatypeProperty ;
rdfs:label "Feature Assign orders to modalities"@en .
it4it:FeatureAssignPatientsToModalities
a owl:DatatypeProperty ;
rdfs:label "Feature Assign patients to modalities"@en .
it4it:FeatureAssignPatientsToRoomsAndBeds
a owl:DatatypeProperty ;
rdfs:label "Feature Assign patients to rooms and beds"@en .
it4it:FeatureAssignStaffToPatientsOrOutpatientUnits
a owl:DatatypeProperty ;
rdfs:label "Feature Assign staff to patients or outpatient units"@en .
it4it:FeatureAssignStaffToPatientsOrRooms
a owl:DatatypeProperty ;
rdfs:label "Feature Assign staff to patients or rooms"@en .
it4it:FeatureAttachDigitalSignatures
a owl:DatatypeProperty ;
rdfs:label "Feature Attach digital signatures"@en .
it4it:FeatureCalculateDosageOfDrugs
a owl:DatatypeProperty ;
rdfs:label "Feature Calculate dosage of drugs"@en .
it4it:FeatureCollectResultsFromDevices
a owl:DatatypeProperty ;
rdfs:label "Feature Collect results from devices"@en .
it4it:FeatureCommunicateDischargeInformation
a owl:DatatypeProperty ;
rdfs:label "Feature Communicate discharge information"@en .
it4it:FeatureCommunicateDocumentsToOtherApplications
a owl:DatatypeProperty ;
rdfs:label "Feature Communicate documents to other applications"@en .
it4it:FeatureCommunicatePictures
a owl:DatatypeProperty ;
rdfs:label "Feature Communicate pictures"@en .
it4it:FeatureCommunicateReportToOrderingUnit
a owl:DatatypeProperty ;
rdfs:label "Feature Communicate report to ordering unit"@en .
it4it:FeatureCreateWorklistForAGroupOfPatients
a owl:DatatypeProperty ;
rdfs:label "Feature Create worklist for a group of patients"@en .
it4it:FeatureCreatingARoster
a owl:DatatypeProperty ;
rdfs:label "Feature Creating a roster"@en .
it4it:FeatureCreationOfRadiologyReports
a owl:DatatypeProperty ;
rdfs:label "Feature Creation of Radiology Reports"@en .
it4it:FeatureDisplayEarlierLabResultsOfAPatient
a owl:DatatypeProperty ;
rdfs:label "Feature Display earlier lab results of a patient"@en .
it4it:FeatureDisplayPictures
a owl:DatatypeProperty ;
rdfs:label "Feature Display pictures"@en .
it4it:FeatureDisplayVitalParametersFromMonitoringDevices
a owl:DatatypeProperty ;
rdfs:label "Feature Display vital parameters from monitoring devices"@en .
it4it:FeatureDisplayWarningMessages
a owl:DatatypeProperty ;
rdfs:label "Feature Display warning messages"@en .
it4it:FeatureImportDocuments
a owl:DatatypeProperty ;
rdfs:label "Feature Import documents"@en .
it4it:FeatureIndexDocumentContent
a owl:DatatypeProperty ;
rdfs:label "Feature Index document content"@en .
it4it:FeatureIntegrateDataFromDifferentApplicationComponents
a owl:DatatypeProperty ;
rdfs:label "Feature Integrate data from different application components"@en .
it4it:FeatureManageModalities
a owl:DatatypeProperty ;
rdfs:label "Feature Manage modalities"@en .
it4it:FeatureManageStorageFormats
a owl:DatatypeProperty ;
rdfs:label "Feature Manage storage formats"@en .
it4it:FeatureManageStorageMedia
a owl:DatatypeProperty ;
rdfs:label "Feature Manage storage media"@en .
it4it:FeatureMergePatientInformationFromTwoRecords
a owl:DatatypeProperty ;
rdfs:label "Feature Merge patient information from two records"@en .
it4it:FeatureMessageQueuing
a owl:DatatypeProperty ;
rdfs:label "Feature Message Queuing"@en .
it4it:FeatureModifyPresentationOfPictures
a owl:DatatypeProperty ;
rdfs:label "Feature Modify presentation of pictures"@en .
it4it:FeatureMulticasting
a owl:DatatypeProperty ;
rdfs:label "Feature Multicasting"@en .
it4it:FeatureOfferDecisionSupportForCarePlanning
a owl:DatatypeProperty ;
rdfs:label "Feature Offer decision support for care planning"@en .
it4it:FeatureOrganizePatientTransport
a owl:DatatypeProperty ;
rdfs:label "Feature Organize patient transport"@en .
it4it:FeaturePrepareReport
a owl:DatatypeProperty ;
rdfs:label "Feature Prepare report"@en .
it4it:FeaturePreparingStatistics
a owl:DatatypeProperty ;
rdfs:label "Feature Preparing Statistics"@en .
it4it:FeaturePrintForms
a owl:DatatypeProperty ;
rdfs:label "Feature Print forms"@en .
it4it:FeaturePrintReports
a owl:DatatypeProperty ;
rdfs:label "Feature Print reports"@en .
it4it:FeaturePrintingOfLabels
a owl:DatatypeProperty ;
rdfs:label "Feature Printing of Labels"@en .
it4it:FeatureProvideACollectionOfInternalProcessesAndRegulations
a owl:DatatypeProperty ;
rdfs:label "Feature Provide a collection of internal processes and regulations"@en .
it4it:FeatureProvideAccessToArchivedInformation
a owl:DatatypeProperty ;
rdfs:label "Feature Provide access to archived information"@en .
it4it:FeatureProvideCatalogsAndOtherMeansForCodingOfNursingDiagnosis
a owl:DatatypeProperty ;
rdfs:label "Feature Provide catalogs and other means for coding of nursing diagnosis"@en .
it4it:FeatureProvideCatalogsAndOtherMeansForCodingOfNursingProcedures
a owl:DatatypeProperty ;
rdfs:label "Feature Provide catalogs and other means for coding of nursing procedures"@en .
it4it:FeatureProvideCatalogsAndOtherMeansForCodingPatient-relatedProcedures
a owl:DatatypeProperty ;
rdfs:label "Feature Provide catalogs and other means for coding patient-related procedures"@en .
<it4it/FeatureProvideCatalogsAndOtherMeansForCodingPatients’Diagnoses>
a owl:DatatypeProperty ;
rdfs:label "Feature Provide catalogs and other means for coding patients’ diagnoses"@en .
it4it:FeatureProvideCatalogsAndOtherMeansForCodingRadiologicalDiagnoses
a owl:DatatypeProperty ;
rdfs:label "Feature Provide catalogs and other means for coding radiological diagnoses"@en .
it4it:FeatureProvideCatalogsAndOtherMeansForCodingRadiologicalProcedures
a owl:DatatypeProperty ;
rdfs:label "Feature Provide catalogs and other means for coding radiological procedures"@en .
it4it:FeatureProvideContext-relatedMedicalKnowledge
a owl:DatatypeProperty ;
rdfs:label "Feature Provide context-related medical knowledge"@en .
it4it:FeatureProvideDrugCatalogs
a owl:DatatypeProperty ;
rdfs:label "Feature Provide drug catalogs"@en .
it4it:FeatureProvideFormsForClinicalReports
a owl:DatatypeProperty ;
rdfs:label "Feature Provide forms for clinical reports"@en .
it4it:FeatureProvideFormsForDocumentingClinicalProcedures
a owl:DatatypeProperty ;
rdfs:label "Feature Provide forms for documenting clinical procedures"@en .
it4it:FeatureProvideFormsForDocumentingDiagnosis
a owl:DatatypeProperty ;
rdfs:label "Feature Provide forms for documenting diagnosis"@en .
it4it:FeatureProvideFormsForDocumentingDiagnosisAndProblems
a owl:DatatypeProperty ;
rdfs:label "Feature Provide forms for documenting diagnosis and problems"@en .
it4it:FeatureProvideFormsForDocumentingMedicalAnamnesis
a owl:DatatypeProperty ;
rdfs:label "Feature Provide forms for documenting medical anamnesis"@en .
it4it:FeatureProvideFormsForDocumentingMedications
a owl:DatatypeProperty ;
rdfs:label "Feature Provide forms for documenting medications"@en .
it4it:FeatureProvideFormsForDocumentingNursingAims
a owl:DatatypeProperty ;
rdfs:label "Feature Provide forms for documenting nursing aims"@en .
it4it:FeatureProvideFormsForDocumentingNursingTasks
a owl:DatatypeProperty ;
rdfs:label "Feature Provide forms for documenting nursing tasks"@en .
<it4it/FeatureProvideFormsForDocumentingPatients_’InformedConsent>
a owl:DatatypeProperty ;
rdfs:label "Feature Provide forms for documenting patients ’ informed consent"@en .
<it4it/FeatureProvideFormsForDocumentingPatient’sInformedConsent>
a owl:DatatypeProperty ;
rdfs:label "Feature Provide forms for documenting patient’s informed consent"@en .
it4it:FeatureProvideFormsForDocumentingPerformedTasks
a owl:DatatypeProperty ;
rdfs:label "Feature Provide forms for documenting performed tasks"@en .
it4it:FeatureProvideFormsForDocumentingPlannedTasks
a owl:DatatypeProperty ;
rdfs:label "Feature Provide forms for documenting planned tasks"@en .
it4it:FeatureProvideFormsForDocumentingProceduresAndOutcomes
a owl:DatatypeProperty ;
rdfs:label "Feature Provide forms for documenting procedures and outcomes"@en .
it4it:FeatureProvideFormsForDocumentingTheNursingHistory
a owl:DatatypeProperty ;
rdfs:label "Feature Provide forms for documenting the nursing history"@en .
it4it:FeatureProvideFormsForDocumentingTheOutcomeOfNursingTasks
a owl:DatatypeProperty ;
rdfs:label "Feature Provide forms for documenting the outcome of nursing tasks"@en .
it4it:FeatureProvideFormsForEnteringClinicalData
a owl:DatatypeProperty ;
rdfs:label "Feature Provide forms for entering clinical data (free-text or structured)"@en .
it4it:FeatureProvideFormsForEnteringOrUpdatingPatientAdministrativeInformation
a owl:DatatypeProperty ;
rdfs:label "Feature Provide forms for entering or updating patient administrative information"@en .
<it4it/FeatureProvideFormsForPatients_’InformedConsent>
a owl:DatatypeProperty ;
rdfs:label "Feature Provide forms for patients ’ informed consent"@en .
it4it:FeatureProvideFormsForPreparingABillForThePatientInsurance
a owl:DatatypeProperty ;
rdfs:label "Feature Provide forms for preparing a bill for the patient insurance"@en .
it4it:FeatureProvideFormsForPreparingClinicalReports
a owl:DatatypeProperty ;
rdfs:label "Feature Provide forms for preparing clinical reports"@en .
it4it:FeatureProvideFormsForPreparingOperationReports
a owl:DatatypeProperty ;
rdfs:label "Feature Provide forms for preparing operation reports"@en .
it4it:FeatureProvideFormsForWritingAReport
a owl:DatatypeProperty ;
rdfs:label "Feature Provide forms for writing a report"@en .
it4it:FeatureProvideFormsForWritingATransferLetterOrDischargeReport
a owl:DatatypeProperty ;
rdfs:label "Feature Provide forms for writing a transfer letter or discharge report"@en .
it4it:FeatureProvideFormsForWritingTheDischargeLetterOrDischargeReport
a owl:DatatypeProperty ;
rdfs:label "Feature Provide forms for writing the discharge letter or discharge report"@en .
it4it:FeatureProvideFormsForWritingTheDischargeReport
a owl:DatatypeProperty ;
rdfs:label "Feature Provide forms for writing the discharge report"@en .
it4it:FeatureProvideFormsForWritingTheNursingDischargeReport
a owl:DatatypeProperty ;
rdfs:label "Feature Provide forms for writing the nursing discharge report"@en .
it4it:FeatureProvideGuidelinesForCarePlanning
a owl:DatatypeProperty ;
rdfs:label "Feature Provide guidelines for care planning"@en .
it4it:FeatureProvideGuidelinesForTreatmentPlanning
a owl:DatatypeProperty ;
rdfs:label "Feature Provide guidelines for treatment planning"@en .
it4it:FeatureProvideMeansForAccountsPayable
a owl:DatatypeProperty ;
rdfs:label "Feature Provide means for accounts payable"@en .
it4it:FeatureProvideMeansForAccountsReceivable
a owl:DatatypeProperty ;
rdfs:label "Feature Provide means for accounts receivable"@en .
it4it:FeatureProvideMeansForAssetAccounting
a owl:DatatypeProperty ;
rdfs:label "Feature Provide means for asset accounting"@en .
it4it:FeatureProvideMeansForCheck-inOfPatient
a owl:DatatypeProperty ;
rdfs:label "Feature Provide means for check-in of patient"@en .
it4it:FeatureProvideMeansForControlOfSecurityIssues
a owl:DatatypeProperty ;
rdfs:label "Feature Provide means for control of security issues"@en .
it4it:FeatureProvideMeansForCostCenterAccounting
a owl:DatatypeProperty ;
rdfs:label "Feature Provide means for cost center accounting"@en .
it4it:FeatureProvideMeansForCostElementAccounting
a owl:DatatypeProperty ;
rdfs:label "Feature Provide means for cost element accounting"@en .
it4it:FeatureProvideMeansForCreatingARoster
a owl:DatatypeProperty ;
rdfs:label "Feature Provide means for creating a roster"@en .
it4it:FeatureProvideMeansForCreatingOperationPlans
a owl:DatatypeProperty ;
rdfs:label "Feature Provide means for creating operation plans (daily weekly)"@en .
it4it:FeatureProvideMeansForCreatingStatistics
a owl:DatatypeProperty ;
rdfs:label "Feature Provide means for creating statistics"@en .
it4it:FeatureProvideMeansForDataMining
a owl:DatatypeProperty ;
rdfs:label "Feature Provide means for data mining"@en .
it4it:FeatureProvideMeansForEditingAndGraphicallyIllustratingCollectionsOfInternalProcessesAndRegulations
a owl:DatatypeProperty ;
rdfs:label "Feature Provide means for editing and graphically illustrating collections of internal processes and regulations"@en .
it4it:FeatureProvideMeansForFiNalizingDocumentation
a owl:DatatypeProperty ;
rdfs:label "Feature Provide means for fi nalizing documentation"@en .
it4it:FeatureProvideMeansForFinalizingDocumentation
a owl:DatatypeProperty ;
rdfs:label "Feature Provide means for finalizing documentation"@en .
it4it:FeatureProvideMeansForFinalizingNursingDocumentation
a owl:DatatypeProperty ;
rdfs:label "Feature Provide means for finalizing nursing documentation"@en .
it4it:FeatureProvideMeansForGeneralLedgerAccounting
a owl:DatatypeProperty ;
rdfs:label "Feature Provide means for general ledger accounting"@en .
it4it:FeatureProvideMeansForIncidentTracking
a owl:DatatypeProperty ;
rdfs:label "Feature Provide means for incident tracking"@en .
it4it:FeatureProvideMeansForInitiatingFinalBillingForOutpatientTreatment
a owl:DatatypeProperty ;
rdfs:label "Feature Provide means for initiating final billing for outpatient treatment"@en .
it4it:FeatureProvideMeansForInitiationOfFinalBilling
a owl:DatatypeProperty ;
rdfs:label "Feature Provide means for initiation of final billing"@en .
it4it:FeatureProvideMeansForManagingAndMonitoringDisposal
a owl:DatatypeProperty ;
rdfs:label "Feature Provide means for managing and monitoring disposal"@en .
it4it:FeatureProvideMeansForManagingAppointments
a owl:DatatypeProperty ;
rdfs:label "Feature Provide means for managing appointments"@en .
it4it:FeatureProvideMeansForManagingLogistics
a owl:DatatypeProperty ;
rdfs:label "Feature Provide means for managing logistics"@en .
it4it:FeatureProvideMeansForManagingMedicalDevices
a owl:DatatypeProperty ;
rdfs:label "Feature Provide means for managing medical devices"@en .
<it4it/FeatureProvideMeansForManagingOutpatientUnit’sStaff>
a owl:DatatypeProperty ;
rdfs:label "Feature Provide means for managing outpatient unit’s staff"@en .
it4it:FeatureProvideMeansForManagingRooms
a owl:DatatypeProperty ;
rdfs:label "Feature Provide means for managing rooms"@en .
it4it:FeatureProvideMeansForManagingWardStaff
a owl:DatatypeProperty ;
rdfs:label "Feature Provide means for managing ward staff"@en .
it4it:FeatureProvideMeansForMinimizingAdverseDrugEvents
a owl:DatatypeProperty ;
rdfs:label "Feature Provide means for minimizing adverse drug events"@en .
it4it:FeatureProvideMeansForOrderManagement
a owl:DatatypeProperty ;
rdfs:label "Feature Provide means for order management"@en .
it4it:FeatureProvideMeansForOrderingConsumables
a owl:DatatypeProperty ;
rdfs:label "Feature Provide means for ordering consumables"@en .
it4it:FeatureProvideMeansForOrderingDrugs
a owl:DatatypeProperty ;
rdfs:label "Feature Provide means for ordering drugs"@en .
it4it:FeatureProvideMeansForOrderingDrugsMaterialsAndLaundry
a owl:DatatypeProperty ;
rdfs:label "Feature Provide means for ordering drugs materials and laundry"@en .
it4it:FeatureProvideMeansForOrderingLaundry
a owl:DatatypeProperty ;
rdfs:label "Feature Provide means for ordering laundry"@en .
it4it:FeatureProvideMeansForOrderingPatientTransferToOtherUnits
a owl:DatatypeProperty ;
rdfs:label "Feature Provide means for ordering patient transfer to other units"@en .
it4it:FeatureProvideMeansForOrderingPatientTransferToWard
a owl:DatatypeProperty ;
rdfs:label "Feature Provide means for ordering patient transfer to ward"@en .
it4it:FeatureProvideMeansForOrderingPatientTransferWithinTheInstitution
a owl:DatatypeProperty ;
rdfs:label "Feature Provide means for ordering patient transfer within the institution"@en .
it4it:FeatureProvideMeansForOrderingTransportServices
a owl:DatatypeProperty ;
rdfs:label "Feature Provide means for ordering transport services"@en .
it4it:FeatureProvideMeansForOrganizingCareerDevelopment
a owl:DatatypeProperty ;
rdfs:label "Feature Provide means for organizing career development"@en .
it4it:FeatureProvideMeansForOrganizingRecruitment
a owl:DatatypeProperty ;
rdfs:label "Feature Provide means for organizing recruitment"@en .
it4it:FeatureProvideMeansForOrganizingTraining
a owl:DatatypeProperty ;
rdfs:label "Feature Provide means for organizing training"@en .
it4it:FeatureProvideMeansForOverheadCostManagement
a owl:DatatypeProperty ;
rdfs:label "Feature Provide means for overhead cost management"@en .
it4it:FeatureProvideMeansForPerformanceEvaluation
a owl:DatatypeProperty ;
rdfs:label "Feature Provide means for performance evaluation"@en .
it4it:FeatureProvideMeansForPreparingACarePlan
a owl:DatatypeProperty ;
rdfs:label "Feature Provide means for preparing a care plan"@en .
it4it:FeatureProvideMeansForPreparingHospital-wideStatistics
a owl:DatatypeProperty ;
rdfs:label "Feature Provide means for preparing hospital-wide statistics"@en .
it4it:FeatureProvideMeansForPreparingStatistics
a owl:DatatypeProperty ;
rdfs:label "Feature Provide means for preparing statistics"@en .
it4it:FeatureProvideMeansForPreparingWard-relatedStatistics
a owl:DatatypeProperty ;
rdfs:label "Feature Provide means for preparing ward-related statistics"@en .
it4it:FeatureProvideMeansForPreparingWorkSchedules
a owl:DatatypeProperty ;
rdfs:label "Feature Provide means for preparing work schedules"@en .
it4it:FeatureProvideMeansForPreventiveMaintenance
a owl:DatatypeProperty ;
rdfs:label "Feature Provide means for preventive maintenance"@en .
it4it:FeatureProvideMeansForProductCosting
a owl:DatatypeProperty ;
rdfs:label "Feature Provide means for product costing"@en .
it4it:FeatureProvideMeansForRecruitingOfPatients
a owl:DatatypeProperty ;
rdfs:label "Feature Provide means for recruiting of patients"@en .
<it4it/FeatureProvideMeansForSchedulingAPatient_’sAppointment>
a owl:DatatypeProperty ;
rdfs:label "Feature Provide means for scheduling a patient ’s appointment"@en .
<it4it/FeatureProvideMeansForSchedulingPatients_’Appointments>
a owl:DatatypeProperty ;
rdfs:label "Feature Provide means for scheduling patients ’ appointments"@en .
it4it:FeatureProvideMeansForStockKeeping
a owl:DatatypeProperty ;
rdfs:label "Feature Provide means for stock keeping"@en .
it4it:FeatureProvideMeansForVerifyingCodingDoneInDepartments
a owl:DatatypeProperty ;
rdfs:label "Feature Provide means for verifying coding done in departments"@en .
it4it:FeatureProvideOrdersForPatient-relatedDrugs
a owl:DatatypeProperty ;
rdfs:label "Feature Provide orders for patient-related drugs"@en .
it4it:FeatureProvideOrdersForPatient-relatedExaminations
a owl:DatatypeProperty ;
rdfs:label "Feature Provide orders for patient-related examinations"@en .
it4it:FeatureProvideRelativesWithInformationOnTheLocationOfAPatient
a owl:DatatypeProperty ;
rdfs:label "Feature Provide relatives with information on the location of a patient"@en .
it4it:FeatureProvideReminderForFulfillingOfLegalReportingRequirements
a owl:DatatypeProperty ;
rdfs:label "Feature Provide reminder for fulfilling of legal reporting requirements"@en .
it4it:FeatureProvisionOfPatientDataAndExaminationParameters
a owl:DatatypeProperty ;
rdfs:label "Feature Provision of Patient Data and Examination Parameters"@en .
it4it:FeatureReceiveBloodSamples
a owl:DatatypeProperty ;
rdfs:label "Feature Receive blood samples"@en .
it4it:FeatureReceiveOrders
a owl:DatatypeProperty ;