-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathresource_types.yaml
4410 lines (4403 loc) · 176 KB
/
resource_types.yaml
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
resourceType: CodeSystem
id: resource-types
meta:
lastUpdated: '2019-11-01T09:29:23.356+11:00'
text:
status: generated
div: >-
<div xmlns="http://www.w3.org/1999/xhtml"><h2>ResourceType</h2><div><p>One
of the resource types defined as part of this version of FHIR.</p>
</div><p>This code system http://hl7.org/fhir/resource-types defines the
following codes:</p><table class="codes"><tr><td
style="white-space:nowrap"><b>Code</b></td><td><b>Display</b></td><td><b>Definition</b></td></tr><tr><td
style="white-space:nowrap">Account<a name="resource-types-Account">
</a></td><td>Account</td><td>A financial tool for tracking value accrued for
a particular purpose. In the healthcare field, used to track charges for a
patient, cost centers, etc.</td></tr><tr><td
style="white-space:nowrap">ActivityDefinition<a
name="resource-types-ActivityDefinition">
</a></td><td>ActivityDefinition</td><td>This resource allows for the
definition of some activity to be performed, independent of a particular
patient, practitioner, or other performance context.</td></tr><tr><td
style="white-space:nowrap">AdverseEvent<a
name="resource-types-AdverseEvent"> </a></td><td>AdverseEvent</td><td>Actual
or potential/avoided event causing unintended physical injury resulting
from or contributed to by medical care, a research study or other healthcare
setting factors that requires additional monitoring, treatment, or
hospitalization, or that results in death.</td></tr><tr><td
style="white-space:nowrap">AllergyIntolerance<a
name="resource-types-AllergyIntolerance">
</a></td><td>AllergyIntolerance</td><td>Risk of harmful or undesirable,
physiological response which is unique to an individual and associated with
exposure to a substance.</td></tr><tr><td
style="white-space:nowrap">Appointment<a name="resource-types-Appointment">
</a></td><td>Appointment</td><td>A booking of a healthcare event among
patient(s), practitioner(s), related person(s) and/or device(s) for a
specific date/time. This may result in one or more
Encounter(s).</td></tr><tr><td
style="white-space:nowrap">AppointmentResponse<a
name="resource-types-AppointmentResponse">
</a></td><td>AppointmentResponse</td><td>A reply to an appointment request
for a patient and/or practitioner(s), such as a confirmation or
rejection.</td></tr><tr><td style="white-space:nowrap">AuditEvent<a
name="resource-types-AuditEvent"> </a></td><td>AuditEvent</td><td>A record
of an event made for purposes of maintaining a security log. Typical uses
include detection of intrusion attempts and monitoring for inappropriate
usage.</td></tr><tr><td style="white-space:nowrap">Basic<a
name="resource-types-Basic"> </a></td><td>Basic</td><td>Basic is used for
handling concepts not yet defined in FHIR, narrative-only resources that
don't map to an existing resource, and custom resources not appropriate for
inclusion in the FHIR specification.</td></tr><tr><td
style="white-space:nowrap">Binary<a name="resource-types-Binary">
</a></td><td>Binary</td><td>A resource that represents the data of a single
raw artifact as digital content accessible in its native format. A Binary
resource can contain any content, whether text, image, pdf, zip archive,
etc.</td></tr><tr><td
style="white-space:nowrap">BiologicallyDerivedProduct<a
name="resource-types-BiologicallyDerivedProduct">
</a></td><td>BiologicallyDerivedProduct</td><td>A material substance
originating from a biological entity intended to be transplanted or infused
into another (possibly the same) biological entity.</td></tr><tr><td
style="white-space:nowrap">BodyStructure<a
name="resource-types-BodyStructure">
</a></td><td>BodyStructure</td><td>Record details about an anatomical
structure. This resource may be used when a coded concept does not provide
the necessary detail needed for the use case.</td></tr><tr><td
style="white-space:nowrap">Bundle<a name="resource-types-Bundle">
</a></td><td>Bundle</td><td>A container for a collection of
resources.</td></tr><tr><td style="white-space:nowrap">CapabilityStatement<a
name="resource-types-CapabilityStatement">
</a></td><td>CapabilityStatement</td><td>A Capability Statement documents a
set of capabilities (behaviors) of a FHIR Server for a particular version of
FHIR that may be used as a statement of actual server functionality or a
statement of required or desired server implementation.</td></tr><tr><td
style="white-space:nowrap">CarePlan<a name="resource-types-CarePlan">
</a></td><td>CarePlan</td><td>Describes the intention of how one or more
practitioners intend to deliver care for a particular patient, group or
community for a period of time, possibly limited to care for a specific
condition or set of conditions.</td></tr><tr><td
style="white-space:nowrap">CareTeam<a name="resource-types-CareTeam">
</a></td><td>CareTeam</td><td>The Care Team includes all the people and
organizations who plan to participate in the coordination and delivery of
care for a patient.</td></tr><tr><td
style="white-space:nowrap">CatalogEntry<a
name="resource-types-CatalogEntry">
</a></td><td>CatalogEntry</td><td>Catalog entries are wrappers that
contextualize items included in a catalog.</td></tr><tr><td
style="white-space:nowrap">ChargeItem<a name="resource-types-ChargeItem">
</a></td><td>ChargeItem</td><td>The resource ChargeItem describes the
provision of healthcare provider products for a certain patient, therefore
referring not only to the product, but containing in addition details of the
provision, like date, time, amounts and participating organizations and
persons. Main Usage of the ChargeItem is to enable the billing process and
internal cost allocation.</td></tr><tr><td
style="white-space:nowrap">ChargeItemDefinition<a
name="resource-types-ChargeItemDefinition">
</a></td><td>ChargeItemDefinition</td><td>The ChargeItemDefinition resource
provides the properties that apply to the (billing) codes necessary to
calculate costs and prices. The properties may differ largely depending on
type and realm, therefore this resource gives only a rough structure and
requires profiling for each type of billing code system.</td></tr><tr><td
style="white-space:nowrap">Claim<a name="resource-types-Claim">
</a></td><td>Claim</td><td>A provider issued list of professional services
and products which have been provided, or are to be provided, to a patient
which is sent to an insurer for reimbursement.</td></tr><tr><td
style="white-space:nowrap">ClaimResponse<a
name="resource-types-ClaimResponse"> </a></td><td>ClaimResponse</td><td>This
resource provides the adjudication details from the processing of a Claim
resource.</td></tr><tr><td style="white-space:nowrap">ClinicalImpression<a
name="resource-types-ClinicalImpression">
</a></td><td>ClinicalImpression</td><td>A record of a clinical assessment
performed to determine what problem(s) may affect the patient and before
planning the treatments or management strategies that are best to manage a
patient's condition. Assessments are often 1:1 with a clinical consultation
/ encounter, but this varies greatly depending on the clinical workflow.
This resource is called "ClinicalImpression" rather than
"ClinicalAssessment" to avoid confusion with the recording of
assessment tools such as Apgar score.</td></tr><tr><td
style="white-space:nowrap">CodeSystem<a name="resource-types-CodeSystem">
</a></td><td>CodeSystem</td><td>The CodeSystem resource is used to declare
the existence of and describe a code system or code system supplement and
its key properties, and optionally define a part or all of its
content.</td></tr><tr><td style="white-space:nowrap">Communication<a
name="resource-types-Communication"> </a></td><td>Communication</td><td>An
occurrence of information being transmitted; e.g. an alert that was sent to
a responsible provider, a public health agency that was notified about a
reportable condition.</td></tr><tr><td
style="white-space:nowrap">CommunicationRequest<a
name="resource-types-CommunicationRequest">
</a></td><td>CommunicationRequest</td><td>A request to convey information;
e.g. the CDS system proposes that an alert be sent to a responsible
provider, the CDS system proposes that the public health agency be notified
about a reportable condition.</td></tr><tr><td
style="white-space:nowrap">CompartmentDefinition<a
name="resource-types-CompartmentDefinition">
</a></td><td>CompartmentDefinition</td><td>A compartment definition that
defines how resources are accessed on a server.</td></tr><tr><td
style="white-space:nowrap">Composition<a name="resource-types-Composition">
</a></td><td>Composition</td><td>A set of healthcare-related information
that is assembled together into a single logical package that provides a
single coherent statement of meaning, establishes its own context and that
has clinical attestation with regard to who is making the statement. A
Composition defines the structure and narrative content necessary for a
document. However, a Composition alone does not constitute a document.
Rather, the Composition must be the first entry in a Bundle where
Bundle.type=document, and any other resources referenced from Composition
must be included as subsequent entries in the Bundle (for example Patient,
Practitioner, Encounter, etc.).</td></tr><tr><td
style="white-space:nowrap">ConceptMap<a name="resource-types-ConceptMap">
</a></td><td>ConceptMap</td><td>A statement of relationships from one set of
concepts to one or more other concepts - either concepts in code systems, or
data element/data element concepts, or classes in class
models.</td></tr><tr><td style="white-space:nowrap">Condition<a
name="resource-types-Condition"> </a></td><td>Condition</td><td>A clinical
condition, problem, diagnosis, or other event, situation, issue, or clinical
concept that has risen to a level of concern.</td></tr><tr><td
style="white-space:nowrap">Consent<a name="resource-types-Consent">
</a></td><td>Consent</td><td>A record of a healthcare consumer’s choices,
which permits or denies identified recipient(s) or recipient role(s) to
perform one or more actions within a given policy context, for specific
purposes and periods of time.</td></tr><tr><td
style="white-space:nowrap">Contract<a name="resource-types-Contract">
</a></td><td>Contract</td><td>Legally enforceable, formally recorded
unilateral or bilateral directive i.e., a policy or
agreement.</td></tr><tr><td style="white-space:nowrap">Coverage<a
name="resource-types-Coverage"> </a></td><td>Coverage</td><td>Financial
instrument which may be used to reimburse or pay for health care products
and services. Includes both insurance and self-payment.</td></tr><tr><td
style="white-space:nowrap">CoverageEligibilityRequest<a
name="resource-types-CoverageEligibilityRequest">
</a></td><td>CoverageEligibilityRequest</td><td>The
CoverageEligibilityRequest provides patient and insurance coverage
information to an insurer for them to respond, in the form of an
CoverageEligibilityResponse, with information regarding whether the stated
coverage is valid and in-force and optionally to provide the insurance
details of the policy.</td></tr><tr><td
style="white-space:nowrap">CoverageEligibilityResponse<a
name="resource-types-CoverageEligibilityResponse">
</a></td><td>CoverageEligibilityResponse</td><td>This resource provides
eligibility and plan details from the processing of an
CoverageEligibilityRequest resource.</td></tr><tr><td
style="white-space:nowrap">DetectedIssue<a
name="resource-types-DetectedIssue">
</a></td><td>DetectedIssue</td><td>Indicates an actual or potential clinical
issue with or between one or more active or proposed clinical actions for a
patient; e.g. Drug-drug interaction, Ineffective treatment frequency,
Procedure-condition conflict, etc.</td></tr><tr><td
style="white-space:nowrap">Device<a name="resource-types-Device">
</a></td><td>Device</td><td>A type of a manufactured item that is used in
the provision of healthcare without being substantially changed through that
activity. The device may be a medical or non-medical
device.</td></tr><tr><td style="white-space:nowrap">DeviceDefinition<a
name="resource-types-DeviceDefinition">
</a></td><td>DeviceDefinition</td><td>The characteristics, operational
status and capabilities of a medical-related component of a medical
device.</td></tr><tr><td style="white-space:nowrap">DeviceMetric<a
name="resource-types-DeviceMetric">
</a></td><td>DeviceMetric</td><td>Describes a measurement, calculation or
setting capability of a medical device.</td></tr><tr><td
style="white-space:nowrap">DeviceRequest<a
name="resource-types-DeviceRequest">
</a></td><td>DeviceRequest</td><td>Represents a request for a patient to
employ a medical device. The device may be an implantable device, or an
external assistive device, such as a walker.</td></tr><tr><td
style="white-space:nowrap">DeviceUseStatement<a
name="resource-types-DeviceUseStatement">
</a></td><td>DeviceUseStatement</td><td>A record of a device being used by a
patient where the record is the result of a report from the patient or
another clinician.</td></tr><tr><td
style="white-space:nowrap">DiagnosticReport<a
name="resource-types-DiagnosticReport">
</a></td><td>DiagnosticReport</td><td>The findings and interpretation of
diagnostic tests performed on patients, groups of patients, devices, and
locations, and/or specimens derived from these. The report includes clinical
context such as requesting and provider information, and some mix of atomic
results, images, textual and coded interpretations, and formatted
representation of diagnostic reports.</td></tr><tr><td
style="white-space:nowrap">DocumentManifest<a
name="resource-types-DocumentManifest">
</a></td><td>DocumentManifest</td><td>A collection of documents compiled for
a purpose together with metadata that applies to the
collection.</td></tr><tr><td style="white-space:nowrap">DocumentReference<a
name="resource-types-DocumentReference">
</a></td><td>DocumentReference</td><td>A reference to a document of any kind
for any purpose. Provides metadata about the document so that the document
can be discovered and managed. The scope of a document is any seralized
object with a mime-type, so includes formal patient centric documents (CDA),
cliical notes, scanned paper, and non-patient specific documents like policy
text.</td></tr><tr><td style="white-space:nowrap">DomainResource<a
name="resource-types-DomainResource"> </a></td><td>DomainResource</td><td>A
resource that includes narrative, extensions, and contained
resources.</td></tr><tr><td
style="white-space:nowrap">EffectEvidenceSynthesis<a
name="resource-types-EffectEvidenceSynthesis">
</a></td><td>EffectEvidenceSynthesis</td><td>The EffectEvidenceSynthesis
resource describes the difference in an outcome between exposures states in
a population where the effect estimate is derived from a combination of
research studies.</td></tr><tr><td style="white-space:nowrap">Encounter<a
name="resource-types-Encounter"> </a></td><td>Encounter</td><td>An
interaction between a patient and healthcare provider(s) for the purpose of
providing healthcare service(s) or assessing the health status of a
patient.</td></tr><tr><td style="white-space:nowrap">Endpoint<a
name="resource-types-Endpoint"> </a></td><td>Endpoint</td><td>The technical
details of an endpoint that can be used for electronic services, such as for
web services providing XDS.b or a REST endpoint for another FHIR server.
This may include any security context information.</td></tr><tr><td
style="white-space:nowrap">EnrollmentRequest<a
name="resource-types-EnrollmentRequest">
</a></td><td>EnrollmentRequest</td><td>This resource provides the insurance
enrollment details to the insurer regarding a specified
coverage.</td></tr><tr><td style="white-space:nowrap">EnrollmentResponse<a
name="resource-types-EnrollmentResponse">
</a></td><td>EnrollmentResponse</td><td>This resource provides enrollment
and plan details from the processing of an EnrollmentRequest
resource.</td></tr><tr><td style="white-space:nowrap">EpisodeOfCare<a
name="resource-types-EpisodeOfCare"> </a></td><td>EpisodeOfCare</td><td>An
association between a patient and an organization / healthcare provider(s)
during which time encounters may occur. The managing organization assumes a
level of responsibility for the patient during this time.</td></tr><tr><td
style="white-space:nowrap">EventDefinition<a
name="resource-types-EventDefinition">
</a></td><td>EventDefinition</td><td>The EventDefinition resource provides a
reusable description of when a particular event can occur.</td></tr><tr><td
style="white-space:nowrap">Evidence<a name="resource-types-Evidence">
</a></td><td>Evidence</td><td>The Evidence resource describes the
conditional state (population and any exposures being compared within the
population) and outcome (if specified) that the knowledge (evidence,
assertion, recommendation) is about.</td></tr><tr><td
style="white-space:nowrap">EvidenceVariable<a
name="resource-types-EvidenceVariable">
</a></td><td>EvidenceVariable</td><td>The EvidenceVariable resource
describes a "PICO" element that knowledge (evidence, assertion,
recommendation) is about.</td></tr><tr><td
style="white-space:nowrap">ExampleScenario<a
name="resource-types-ExampleScenario">
</a></td><td>ExampleScenario</td><td>Example of workflow
instance.</td></tr><tr><td style="white-space:nowrap">ExplanationOfBenefit<a
name="resource-types-ExplanationOfBenefit">
</a></td><td>ExplanationOfBenefit</td><td>This resource provides: the claim
details; adjudication details from the processing of a Claim; and optionally
account balance information, for informing the subscriber of the benefits
provided.</td></tr><tr><td style="white-space:nowrap">FamilyMemberHistory<a
name="resource-types-FamilyMemberHistory">
</a></td><td>FamilyMemberHistory</td><td>Significant health conditions for a
person related to the patient relevant in the context of care for the
patient.</td></tr><tr><td style="white-space:nowrap">Flag<a
name="resource-types-Flag"> </a></td><td>Flag</td><td>Prospective warnings
of potential issues when providing care to the patient.</td></tr><tr><td
style="white-space:nowrap">Goal<a name="resource-types-Goal">
</a></td><td>Goal</td><td>Describes the intended objective(s) for a patient,
group or organization care, for example, weight loss, restoring an activity
of daily living, obtaining herd immunity via immunization, meeting a process
improvement objective, etc.</td></tr><tr><td
style="white-space:nowrap">GraphDefinition<a
name="resource-types-GraphDefinition">
</a></td><td>GraphDefinition</td><td>A formal computable definition of a
graph of resources - that is, a coherent set of resources that form a graph
by following references. The Graph Definition resource defines a set and
makes rules about the set.</td></tr><tr><td
style="white-space:nowrap">Group<a name="resource-types-Group">
</a></td><td>Group</td><td>Represents a defined collection of entities that
may be discussed or acted upon collectively but which are not expected to
act collectively, and are not formally or legally recognized; i.e. a
collection of entities that isn't an Organization.</td></tr><tr><td
style="white-space:nowrap">GuidanceResponse<a
name="resource-types-GuidanceResponse">
</a></td><td>GuidanceResponse</td><td>A guidance response is the formal
response to a guidance request, including any output parameters returned by
the evaluation, as well as the description of any proposed actions to be
taken.</td></tr><tr><td style="white-space:nowrap">HealthcareService<a
name="resource-types-HealthcareService">
</a></td><td>HealthcareService</td><td>The details of a healthcare service
available at a location.</td></tr><tr><td
style="white-space:nowrap">ImagingStudy<a
name="resource-types-ImagingStudy">
</a></td><td>ImagingStudy</td><td>Representation of the content produced in
a DICOM imaging study. A study comprises a set of series, each of which
includes a set of Service-Object Pair Instances (SOP Instances - images or
other data) acquired or produced in a common context. A series is of only
one modality (e.g. X-ray, CT, MR, ultrasound), but a study may have multiple
series of different modalities.</td></tr><tr><td
style="white-space:nowrap">Immunization<a
name="resource-types-Immunization">
</a></td><td>Immunization</td><td>Describes the event of a patient being
administered a vaccine or a record of an immunization as reported by a
patient, a clinician or another party.</td></tr><tr><td
style="white-space:nowrap">ImmunizationEvaluation<a
name="resource-types-ImmunizationEvaluation">
</a></td><td>ImmunizationEvaluation</td><td>Describes a comparison of an
immunization event against published recommendations to determine if the
administration is "valid" in relation to those
recommendations.</td></tr><tr><td
style="white-space:nowrap">ImmunizationRecommendation<a
name="resource-types-ImmunizationRecommendation">
</a></td><td>ImmunizationRecommendation</td><td>A patient's point-in-time
set of recommendations (i.e. forecasting) according to a published schedule
with optional supporting justification.</td></tr><tr><td
style="white-space:nowrap">ImplementationGuide<a
name="resource-types-ImplementationGuide">
</a></td><td>ImplementationGuide</td><td>A set of rules of how a particular
interoperability or standards problem is solved - typically through the use
of FHIR resources. This resource is used to gather all the parts of an
implementation guide into a logical whole and to publish a computable
definition of all the parts.</td></tr><tr><td
style="white-space:nowrap">InsurancePlan<a
name="resource-types-InsurancePlan">
</a></td><td>InsurancePlan</td><td>Details of a Health Insurance
product/plan provided by an organization.</td></tr><tr><td
style="white-space:nowrap">Invoice<a name="resource-types-Invoice">
</a></td><td>Invoice</td><td>Invoice containing collected ChargeItems from
an Account with calculated individual and total price for Billing
purpose.</td></tr><tr><td style="white-space:nowrap">Library<a
name="resource-types-Library"> </a></td><td>Library</td><td>The Library
resource is a general-purpose container for knowledge asset definitions. It
can be used to describe and expose existing knowledge assets such as logic
libraries and information model descriptions, as well as to describe a
collection of knowledge assets.</td></tr><tr><td
style="white-space:nowrap">Linkage<a name="resource-types-Linkage">
</a></td><td>Linkage</td><td>Identifies two or more records (resource
instances) that refer to the same real-world
"occurrence".</td></tr><tr><td style="white-space:nowrap">List<a
name="resource-types-List"> </a></td><td>List</td><td>A list is a curated
collection of resources.</td></tr><tr><td
style="white-space:nowrap">Location<a name="resource-types-Location">
</a></td><td>Location</td><td>Details and position information for a
physical place where services are provided and resources and participants
may be stored, found, contained, or accommodated.</td></tr><tr><td
style="white-space:nowrap">Measure<a name="resource-types-Measure">
</a></td><td>Measure</td><td>The Measure resource provides the definition of
a quality measure.</td></tr><tr><td
style="white-space:nowrap">MeasureReport<a
name="resource-types-MeasureReport"> </a></td><td>MeasureReport</td><td>The
MeasureReport resource contains the results of the calculation of a measure;
and optionally a reference to the resources involved in that
calculation.</td></tr><tr><td style="white-space:nowrap">Media<a
name="resource-types-Media"> </a></td><td>Media</td><td>A photo, video, or
audio recording acquired or used in healthcare. The actual content may be
inline or provided by direct reference.</td></tr><tr><td
style="white-space:nowrap">Medication<a name="resource-types-Medication">
</a></td><td>Medication</td><td>This resource is primarily used for the
identification and definition of a medication for the purposes of
prescribing, dispensing, and administering a medication as well as for
making statements about medication use.</td></tr><tr><td
style="white-space:nowrap">MedicationAdministration<a
name="resource-types-MedicationAdministration">
</a></td><td>MedicationAdministration</td><td>Describes the event of a
patient consuming or otherwise being administered a medication. This may be
as simple as swallowing a tablet or it may be a long running infusion.
Related resources tie this event to the authorizing prescription, and the
specific encounter between patient and health care
practitioner.</td></tr><tr><td
style="white-space:nowrap">MedicationDispense<a
name="resource-types-MedicationDispense">
</a></td><td>MedicationDispense</td><td>Indicates that a medication product
is to be or has been dispensed for a named person/patient. This includes a
description of the medication product (supply) provided and the instructions
for administering the medication. The medication dispense is the result of
a pharmacy system responding to a medication order.</td></tr><tr><td
style="white-space:nowrap">MedicationKnowledge<a
name="resource-types-MedicationKnowledge">
</a></td><td>MedicationKnowledge</td><td>Information about a medication that
is used to support knowledge.</td></tr><tr><td
style="white-space:nowrap">MedicationRequest<a
name="resource-types-MedicationRequest">
</a></td><td>MedicationRequest</td><td>An order or request for both supply
of the medication and the instructions for administration of the medication
to a patient. The resource is called "MedicationRequest" rather
than "MedicationPrescription" or "MedicationOrder" to
generalize the use across inpatient and outpatient settings, including care
plans, etc., and to harmonize with workflow patterns.</td></tr><tr><td
style="white-space:nowrap">MedicationStatement<a
name="resource-types-MedicationStatement">
</a></td><td>MedicationStatement</td><td>A record of a medication that is
being consumed by a patient. A MedicationStatement may indicate that the
patient may be taking the medication now or has taken the medication in the
past or will be taking the medication in the future. The source of this
information can be the patient, significant other (such as a family member
or spouse), or a clinician. A common scenario where this information is
captured is during the history taking process during a patient visit or
stay. The medication information may come from sources such as the
patient's memory, from a prescription bottle, or from a list of medications
the patient, clinician or other party maintains.
The primary difference between a medication statement and a medication
administration is that the medication administration has complete
administration information and is based on actual administration information
from the person who administered the medication. A medication statement is
often, if not always, less specific. There is no required date/time when
the medication was administered, in fact we only know that a source has
reported the patient is taking this medication, where details such as time,
quantity, or rate or even medication product may be incomplete or missing or
less precise. As stated earlier, the medication statement information may
come from the patient's memory, from a prescription bottle or from a list of
medications the patient, clinician or other party maintains. Medication
administration is more formal and is not missing detailed
information.</td></tr><tr><td style="white-space:nowrap">MedicinalProduct<a
name="resource-types-MedicinalProduct">
</a></td><td>MedicinalProduct</td><td>Detailed definition of a medicinal
product, typically for uses other than direct patient care (e.g. regulatory
use).</td></tr><tr><td
style="white-space:nowrap">MedicinalProductAuthorization<a
name="resource-types-MedicinalProductAuthorization">
</a></td><td>MedicinalProductAuthorization</td><td>The regulatory
authorization of a medicinal product.</td></tr><tr><td
style="white-space:nowrap">MedicinalProductContraindication<a
name="resource-types-MedicinalProductContraindication">
</a></td><td>MedicinalProductContraindication</td><td>The clinical
particulars - indications, contraindications etc. of a medicinal product,
including for regulatory purposes.</td></tr><tr><td
style="white-space:nowrap">MedicinalProductIndication<a
name="resource-types-MedicinalProductIndication">
</a></td><td>MedicinalProductIndication</td><td>Indication for the Medicinal
Product.</td></tr><tr><td
style="white-space:nowrap">MedicinalProductIngredient<a
name="resource-types-MedicinalProductIngredient">
</a></td><td>MedicinalProductIngredient</td><td>An ingredient of a
manufactured item or pharmaceutical product.</td></tr><tr><td
style="white-space:nowrap">MedicinalProductInteraction<a
name="resource-types-MedicinalProductInteraction">
</a></td><td>MedicinalProductInteraction</td><td>The interactions of the
medicinal product with other medicinal products, or other forms of
interactions.</td></tr><tr><td
style="white-space:nowrap">MedicinalProductManufactured<a
name="resource-types-MedicinalProductManufactured">
</a></td><td>MedicinalProductManufactured</td><td>The manufactured item as
contained in the packaged medicinal product.</td></tr><tr><td
style="white-space:nowrap">MedicinalProductPackaged<a
name="resource-types-MedicinalProductPackaged">
</a></td><td>MedicinalProductPackaged</td><td>A medicinal product in a
container or package.</td></tr><tr><td
style="white-space:nowrap">MedicinalProductPharmaceutical<a
name="resource-types-MedicinalProductPharmaceutical">
</a></td><td>MedicinalProductPharmaceutical</td><td>A pharmaceutical product
described in terms of its composition and dose form.</td></tr><tr><td
style="white-space:nowrap">MedicinalProductUndesirableEffect<a
name="resource-types-MedicinalProductUndesirableEffect">
</a></td><td>MedicinalProductUndesirableEffect</td><td>Describe the
undesirable effects of the medicinal product.</td></tr><tr><td
style="white-space:nowrap">MessageDefinition<a
name="resource-types-MessageDefinition">
</a></td><td>MessageDefinition</td><td>Defines the characteristics of a
message that can be shared between systems, including the type of event that
initiates the message, the content to be transmitted and what response(s),
if any, are permitted.</td></tr><tr><td
style="white-space:nowrap">MessageHeader<a
name="resource-types-MessageHeader"> </a></td><td>MessageHeader</td><td>The
header for a message exchange that is either requesting or responding to an
action. The reference(s) that are the subject of the action as well as
other information related to the action are typically transmitted in a
bundle in which the MessageHeader resource instance is the first resource in
the bundle.</td></tr><tr><td style="white-space:nowrap">MolecularSequence<a
name="resource-types-MolecularSequence">
</a></td><td>MolecularSequence</td><td>Raw data describing a biological
sequence.</td></tr><tr><td style="white-space:nowrap">NamingSystem<a
name="resource-types-NamingSystem"> </a></td><td>NamingSystem</td><td>A
curated namespace that issues unique symbols within that namespace for the
identification of concepts, people, devices, etc. Represents a
"System" used within the Identifier and Coding data
types.</td></tr><tr><td style="white-space:nowrap">NutritionOrder<a
name="resource-types-NutritionOrder"> </a></td><td>NutritionOrder</td><td>A
request to supply a diet, formula feeding (enteral) or oral nutritional
supplement to a patient/resident.</td></tr><tr><td
style="white-space:nowrap">Observation<a name="resource-types-Observation">
</a></td><td>Observation</td><td>Measurements and simple assertions made
about a patient, device or other subject.</td></tr><tr><td
style="white-space:nowrap">ObservationDefinition<a
name="resource-types-ObservationDefinition">
</a></td><td>ObservationDefinition</td><td>Set of definitional
characteristics for a kind of observation or measurement produced or
consumed by an orderable health care service.</td></tr><tr><td
style="white-space:nowrap">OperationDefinition<a
name="resource-types-OperationDefinition">
</a></td><td>OperationDefinition</td><td>A formal computable definition of
an operation (on the RESTful interface) or a named query (using the search
interaction).</td></tr><tr><td style="white-space:nowrap">OperationOutcome<a
name="resource-types-OperationOutcome">
</a></td><td>OperationOutcome</td><td>A collection of error, warning, or
information messages that result from a system action.</td></tr><tr><td
style="white-space:nowrap">Organization<a
name="resource-types-Organization"> </a></td><td>Organization</td><td>A
formally or informally recognized grouping of people or organizations formed
for the purpose of achieving some form of collective action. Includes
companies, institutions, corporations, departments, community groups,
healthcare practice groups, payer/insurer, etc.</td></tr><tr><td
style="white-space:nowrap">OrganizationAffiliation<a
name="resource-types-OrganizationAffiliation">
</a></td><td>OrganizationAffiliation</td><td>Defines an
affiliation/assotiation/relationship between 2 distinct oganizations, that
is not a part-of relationship/sub-division relationship.</td></tr><tr><td
style="white-space:nowrap">Parameters<a name="resource-types-Parameters">
</a></td><td>Parameters</td><td>This resource is a non-persisted resource
used to pass information into and back from an [operation](operations.html).
It has no other use, and there is no RESTful endpoint associated with
it.</td></tr><tr><td style="white-space:nowrap">Patient<a
name="resource-types-Patient"> </a></td><td>Patient</td><td>Demographics and
other administrative information about an individual or animal receiving
care or other health-related services.</td></tr><tr><td
style="white-space:nowrap">PaymentNotice<a
name="resource-types-PaymentNotice"> </a></td><td>PaymentNotice</td><td>This
resource provides the status of the payment for goods and services rendered,
and the request and response resource references.</td></tr><tr><td
style="white-space:nowrap">PaymentReconciliation<a
name="resource-types-PaymentReconciliation">
</a></td><td>PaymentReconciliation</td><td>This resource provides the
details including amount of a payment and allocates the payment items being
paid.</td></tr><tr><td style="white-space:nowrap">Person<a
name="resource-types-Person"> </a></td><td>Person</td><td>Demographics and
administrative information about a person independent of a specific
health-related context.</td></tr><tr><td
style="white-space:nowrap">PlanDefinition<a
name="resource-types-PlanDefinition">
</a></td><td>PlanDefinition</td><td>This resource allows for the definition
of various types of plans as a sharable, consumable, and executable
artifact. The resource is general enough to support the description of a
broad range of clinical artifacts such as clinical decision support rules,
order sets and protocols.</td></tr><tr><td
style="white-space:nowrap">Practitioner<a
name="resource-types-Practitioner"> </a></td><td>Practitioner</td><td>A
person who is directly or indirectly involved in the provisioning of
healthcare.</td></tr><tr><td style="white-space:nowrap">PractitionerRole<a
name="resource-types-PractitionerRole">
</a></td><td>PractitionerRole</td><td>A specific set of
Roles/Locations/specialties/services that a practitioner may perform at an
organization for a period of time.</td></tr><tr><td
style="white-space:nowrap">Procedure<a name="resource-types-Procedure">
</a></td><td>Procedure</td><td>An action that is or was performed on or for
a patient. This can be a physical intervention like an operation, or less
invasive like long term services, counseling, or
hypnotherapy.</td></tr><tr><td style="white-space:nowrap">Provenance<a
name="resource-types-Provenance"> </a></td><td>Provenance</td><td>Provenance
of a resource is a record that describes entities and processes involved in
producing and delivering or otherwise influencing that resource. Provenance
provides a critical foundation for assessing authenticity, enabling trust,
and allowing reproducibility. Provenance assertions are a form of contextual
metadata and can themselves become important records with their own
provenance. Provenance statement indicates clinical significance in terms of
confidence in authenticity, reliability, and trustworthiness, integrity, and
stage in lifecycle (e.g. Document Completion - has the artifact been legally
authenticated), all of which may impact security, privacy, and trust
policies.</td></tr><tr><td style="white-space:nowrap">Questionnaire<a
name="resource-types-Questionnaire"> </a></td><td>Questionnaire</td><td>A
structured set of questions intended to guide the collection of answers from
end-users. Questionnaires provide detailed control over order, presentation,
phraseology and grouping to allow coherent, consistent data
collection.</td></tr><tr><td
style="white-space:nowrap">QuestionnaireResponse<a
name="resource-types-QuestionnaireResponse">
</a></td><td>QuestionnaireResponse</td><td>A structured set of questions and
their answers. The questions are ordered and grouped into coherent subsets,
corresponding to the structure of the grouping of the questionnaire being
responded to.</td></tr><tr><td style="white-space:nowrap">RelatedPerson<a
name="resource-types-RelatedPerson">
</a></td><td>RelatedPerson</td><td>Information about a person that is
involved in the care for a patient, but who is not the target of healthcare,
nor has a formal responsibility in the care process.</td></tr><tr><td
style="white-space:nowrap">RequestGroup<a
name="resource-types-RequestGroup"> </a></td><td>RequestGroup</td><td>A
group of related requests that can be used to capture intended activities
that have inter-dependencies such as "give this medication after that
one".</td></tr><tr><td style="white-space:nowrap">ResearchDefinition<a
name="resource-types-ResearchDefinition">
</a></td><td>ResearchDefinition</td><td>The ResearchDefinition resource
describes the conditional state (population and any exposures being compared
within the population) and outcome (if specified) that the knowledge
(evidence, assertion, recommendation) is about.</td></tr><tr><td
style="white-space:nowrap">ResearchElementDefinition<a
name="resource-types-ResearchElementDefinition">
</a></td><td>ResearchElementDefinition</td><td>The ResearchElementDefinition
resource describes a "PICO" element that knowledge (evidence,
assertion, recommendation) is about.</td></tr><tr><td
style="white-space:nowrap">ResearchStudy<a
name="resource-types-ResearchStudy"> </a></td><td>ResearchStudy</td><td>A
process where a researcher or organization plans and then executes a series
of steps intended to increase the field of healthcare-related knowledge.
This includes studies of safety, efficacy, comparative effectiveness and
other information about medications, devices, therapies and other
interventional and investigative techniques. A ResearchStudy involves the
gathering of information about human or animal subjects.</td></tr><tr><td
style="white-space:nowrap">ResearchSubject<a
name="resource-types-ResearchSubject">
</a></td><td>ResearchSubject</td><td>A physical entity which is the primary
unit of operational and/or administrative interest in a
study.</td></tr><tr><td style="white-space:nowrap">Resource<a
name="resource-types-Resource"> </a></td><td>Resource</td><td>This is the
base resource type for everything.</td></tr><tr><td
style="white-space:nowrap">RiskAssessment<a
name="resource-types-RiskAssessment"> </a></td><td>RiskAssessment</td><td>An
assessment of the likely outcome(s) for a patient or other subject as well
as the likelihood of each outcome.</td></tr><tr><td
style="white-space:nowrap">RiskEvidenceSynthesis<a
name="resource-types-RiskEvidenceSynthesis">
</a></td><td>RiskEvidenceSynthesis</td><td>The RiskEvidenceSynthesis
resource describes the likelihood of an outcome in a population plus
exposure state where the risk estimate is derived from a combination of
research studies.</td></tr><tr><td style="white-space:nowrap">Schedule<a
name="resource-types-Schedule"> </a></td><td>Schedule</td><td>A container
for slots of time that may be available for booking
appointments.</td></tr><tr><td style="white-space:nowrap">SearchParameter<a
name="resource-types-SearchParameter">
</a></td><td>SearchParameter</td><td>A search parameter that defines a named
search item that can be used to search/filter on a
resource.</td></tr><tr><td style="white-space:nowrap">ServiceRequest<a
name="resource-types-ServiceRequest"> </a></td><td>ServiceRequest</td><td>A
record of a request for service such as diagnostic investigations,
treatments, or operations to be performed.</td></tr><tr><td
style="white-space:nowrap">Slot<a name="resource-types-Slot">
</a></td><td>Slot</td><td>A slot of time on a schedule that may be available
for booking appointments.</td></tr><tr><td
style="white-space:nowrap">Specimen<a name="resource-types-Specimen">
</a></td><td>Specimen</td><td>A sample to be used for
analysis.</td></tr><tr><td style="white-space:nowrap">SpecimenDefinition<a
name="resource-types-SpecimenDefinition">
</a></td><td>SpecimenDefinition</td><td>A kind of specimen with associated
set of requirements.</td></tr><tr><td
style="white-space:nowrap">StructureDefinition<a
name="resource-types-StructureDefinition">
</a></td><td>StructureDefinition</td><td>A definition of a FHIR structure.
This resource is used to describe the underlying resources, data types
defined in FHIR, and also for describing extensions and constraints on
resources and data types.</td></tr><tr><td
style="white-space:nowrap">StructureMap<a
name="resource-types-StructureMap"> </a></td><td>StructureMap</td><td>A Map
of relationships between 2 structures that can be used to transform
data.</td></tr><tr><td style="white-space:nowrap">Subscription<a
name="resource-types-Subscription"> </a></td><td>Subscription</td><td>The
subscription resource is used to define a push-based subscription from a
server to another system. Once a subscription is registered with the server,
the server checks every resource that is created or updated, and if the
resource matches the given criteria, it sends a message on the defined
"channel" so that another system can take an appropriate
action.</td></tr><tr><td style="white-space:nowrap">Substance<a
name="resource-types-Substance"> </a></td><td>Substance</td><td>A
homogeneous material with a definite composition.</td></tr><tr><td
style="white-space:nowrap">SubstanceNucleicAcid<a
name="resource-types-SubstanceNucleicAcid">
</a></td><td>SubstanceNucleicAcid</td><td>Nucleic acids are defined by three
distinct elements: the base, sugar and linkage. Individual substance/moiety
IDs will be created for each of these elements. The nucleotide sequence will
be always entered in the 5’-3’ direction.</td></tr><tr><td
style="white-space:nowrap">SubstancePolymer<a
name="resource-types-SubstancePolymer">
</a></td><td>SubstancePolymer</td><td>Todo.</td></tr><tr><td
style="white-space:nowrap">SubstanceProtein<a
name="resource-types-SubstanceProtein">
</a></td><td>SubstanceProtein</td><td>A SubstanceProtein is defined as a
single unit of a linear amino acid sequence, or a combination of subunits
that are either covalently linked or have a defined invariant stoichiometric
relationship. This includes all synthetic, recombinant and purified
SubstanceProteins of defined sequence, whether the use is therapeutic or
prophylactic. This set of elements will be used to describe albumins,
coagulation factors, cytokines, growth factors, peptide/SubstanceProtein
hormones, enzymes, toxins, toxoids, recombinant vaccines, and
immunomodulators.</td></tr><tr><td
style="white-space:nowrap">SubstanceReferenceInformation<a
name="resource-types-SubstanceReferenceInformation">
</a></td><td>SubstanceReferenceInformation</td><td>Todo.</td></tr><tr><td
style="white-space:nowrap">SubstanceSourceMaterial<a
name="resource-types-SubstanceSourceMaterial">
</a></td><td>SubstanceSourceMaterial</td><td>Source material shall capture
information on the taxonomic and anatomical origins as well as the fraction
of a material that can result in or can be modified to form a substance.
This set of data elements shall be used to define polymer substances
isolated from biological matrices. Taxonomic and anatomical origins shall be
described using a controlled vocabulary as required. This information is
captured for naturally derived polymers ( . starch) and structurally diverse
substances. For Organisms belonging to the Kingdom Plantae the Substance
level defines the fresh material of a single species or infraspecies, the
Herbal Drug and the Herbal preparation. For Herbal preparations, the
fraction information will be captured at the Substance information level and
additional information for herbal extracts will be captured at the Specified
Substance Group 1 information level. See for further explanation the
Substance Class: Structurally Diverse and the herbal annex.</td></tr><tr><td
style="white-space:nowrap">SubstanceSpecification<a
name="resource-types-SubstanceSpecification">
</a></td><td>SubstanceSpecification</td><td>The detailed description of a
substance, typically at a level beyond what is used for
prescribing.</td></tr><tr><td style="white-space:nowrap">SupplyDelivery<a
name="resource-types-SupplyDelivery">
</a></td><td>SupplyDelivery</td><td>Record of delivery of what is
supplied.</td></tr><tr><td style="white-space:nowrap">SupplyRequest<a
name="resource-types-SupplyRequest"> </a></td><td>SupplyRequest</td><td>A
record of a request for a medication, substance or device used in the
healthcare setting.</td></tr><tr><td style="white-space:nowrap">Task<a
name="resource-types-Task"> </a></td><td>Task</td><td>A task to be
performed.</td></tr><tr><td
style="white-space:nowrap">TerminologyCapabilities<a
name="resource-types-TerminologyCapabilities">
</a></td><td>TerminologyCapabilities</td><td>A TerminologyCapabilities
resource documents a set of capabilities (behaviors) of a FHIR Terminology
Server that may be used as a statement of actual server functionality or a
statement of required or desired server implementation.</td></tr><tr><td
style="white-space:nowrap">TestReport<a name="resource-types-TestReport">
</a></td><td>TestReport</td><td>A summary of information based on the
results of executing a TestScript.</td></tr><tr><td
style="white-space:nowrap">TestScript<a name="resource-types-TestScript">
</a></td><td>TestScript</td><td>A structured set of tests against a FHIR
server or client implementation to determine compliance against the FHIR
specification.</td></tr><tr><td style="white-space:nowrap">ValueSet<a
name="resource-types-ValueSet"> </a></td><td>ValueSet</td><td>A ValueSet
resource instance specifies a set of codes drawn from one or more code
systems, intended for use in a particular context. Value sets link between
[[[CodeSystem]]] definitions and their use in [coded
elements](terminologies.html).</td></tr><tr><td
style="white-space:nowrap">VerificationResult<a
name="resource-types-VerificationResult">
</a></td><td>VerificationResult</td><td>Describes validation requirements,
source(s), status and dates for one or more elements.</td></tr><tr><td
style="white-space:nowrap">VisionPrescription<a
name="resource-types-VisionPrescription">
</a></td><td>VisionPrescription</td><td>An authorization for the provision
of glasses and/or contact lenses to a patient.</td></tr></table></div>
extension:
- url: 'http://hl7.org/fhir/StructureDefinition/valueset-special-status'
valueString: >-
This Code System is normative - it is generated based on the information
defined in this specification. The definition will remain fixed across
versions, but the actual contents will change from version to version
- url: >-
http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status
valueCode: normative
- url: >-
http://hl7.org/fhir/StructureDefinition/structuredefinition-normative-version
valueCode: 4.0.0
- url: 'http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm'
valueInteger: 5
- url: 'http://hl7.org/fhir/StructureDefinition/structuredefinition-wg'
valueCode: inm
url: 'http://hl7.org/fhir/resource-types'
version: 4.0.1
name: ResourceType
title: ResourceType
status: active
experimental: false
date: '2019-11-01T09:29:23+11:00'
publisher: HL7 (FHIR Project)
contact:
- telecom:
- system: url
value: 'http://hl7.org/fhir'
- system: email
value: [email protected]
description: One of the resource types defined as part of this version of FHIR.
caseSensitive: true
content: complete
concept:
- code: Account
display: Account
definition: >-
A financial tool for tracking value accrued for a particular purpose. In
the healthcare field, used to track charges for a patient, cost centers,
etc.
designation:
- language: en
use:
system: 'http://terminology.hl7.org/CodeSystem/designation-usage'
code: display
value: Account
- language: es
use:
system: 'http://terminology.hl7.org/CodeSystem/designation-usage'
code: display
value: Cuenta
- language: zh
use:
system: 'http://terminology.hl7.org/CodeSystem/designation-usage'
code: display
value: 账户
- code: ActivityDefinition
display: ActivityDefinition
definition: >-
This resource allows for the definition of some activity to be performed,
independent of a particular patient, practitioner, or other performance
context.
designation:
- language: en
use:
system: 'http://terminology.hl7.org/CodeSystem/designation-usage'
code: display
value: ActivityDefinition
- language: it
use:
system: 'http://terminology.hl7.org/CodeSystem/designation-usage'
code: display
value: DefinizioneAttivita
- language: es
use:
system: 'http://terminology.hl7.org/CodeSystem/designation-usage'
code: display
value: DefinicionDeActividad
- language: zh
use:
system: 'http://terminology.hl7.org/CodeSystem/designation-usage'
code: display
value: 活动定义
- code: AdverseEvent
display: AdverseEvent
definition: >-
Actual or potential/avoided event causing unintended physical injury
resulting from or contributed to by medical care, a research study or
other healthcare setting factors that requires additional monitoring,
treatment, or hospitalization, or that results in death.
designation:
- language: en
use:
system: 'http://terminology.hl7.org/CodeSystem/designation-usage'
code: display
value: AdverseEvent
- language: it
use:
system: 'http://terminology.hl7.org/CodeSystem/designation-usage'
code: display
value: EventoAvverso
- language: es
use:
system: 'http://terminology.hl7.org/CodeSystem/designation-usage'
code: display
value: EventoAdverso
- language: zh
use:
system: 'http://terminology.hl7.org/CodeSystem/designation-usage'
code: display
value: 不良事件
- code: AllergyIntolerance
display: AllergyIntolerance
definition: >-
Risk of harmful or undesirable, physiological response which is unique to
an individual and associated with exposure to a substance.
designation:
- language: en
use:
system: 'http://terminology.hl7.org/CodeSystem/designation-usage'
code: display
value: AllergyIntolerance
- language: it
use:
system: 'http://terminology.hl7.org/CodeSystem/designation-usage'
code: display
value: AllergiaIntolleranza
- language: fr
use:
system: 'http://terminology.hl7.org/CodeSystem/designation-usage'
code: display
value: IntoléranceAllergique
- language: es
use:
system: 'http://terminology.hl7.org/CodeSystem/designation-usage'
code: display
value: AllergiaIntolerancia
- language: zh
use:
system: 'http://terminology.hl7.org/CodeSystem/designation-usage'
code: display
value: 变态反应与不耐性
- code: Appointment
display: Appointment
definition: >-
A booking of a healthcare event among patient(s), practitioner(s), related
person(s) and/or device(s) for a specific date/time. This may result in
one or more Encounter(s).
designation:
- language: en
use:
system: 'http://terminology.hl7.org/CodeSystem/designation-usage'
code: display
value: Appointment
- language: it
use:
system: 'http://terminology.hl7.org/CodeSystem/designation-usage'
code: display
value: Appuntamento
- language: fr
use:
system: 'http://terminology.hl7.org/CodeSystem/designation-usage'
code: display
value: RendezVous
- language: es
use:
system: 'http://terminology.hl7.org/CodeSystem/designation-usage'
code: display
value: Cita
- language: zh
use:
system: 'http://terminology.hl7.org/CodeSystem/designation-usage'
code: display
value: 预约
- code: AppointmentResponse
display: AppointmentResponse
definition: >-
A reply to an appointment request for a patient and/or practitioner(s),
such as a confirmation or rejection.
designation:
- language: en
use:
system: 'http://terminology.hl7.org/CodeSystem/designation-usage'
code: display
value: AppointmentResponse
- language: it
use:
system: 'http://terminology.hl7.org/CodeSystem/designation-usage'
code: display
value: RispostaAppuntamento
- language: fr
use:
system: 'http://terminology.hl7.org/CodeSystem/designation-usage'
code: display
value: RéponseRendezVous
- language: es
use:
system: 'http://terminology.hl7.org/CodeSystem/designation-usage'
code: display
value: CitaRespuesta
- language: zh
use:
system: 'http://terminology.hl7.org/CodeSystem/designation-usage'
code: display
value: 预约响应
- code: AuditEvent
display: AuditEvent
definition: >-
A record of an event made for purposes of maintaining a security log.
Typical uses include detection of intrusion attempts and monitoring for
inappropriate usage.
designation:
- language: en
use:
system: 'http://terminology.hl7.org/CodeSystem/designation-usage'
code: display
value: AuditEvent
- language: fr
use:
system: 'http://terminology.hl7.org/CodeSystem/designation-usage'
code: display
value: ÉvènementSécurité
- language: es
use:
system: 'http://terminology.hl7.org/CodeSystem/designation-usage'
code: display
value: EventoSeguridad
- language: zh
use:
system: 'http://terminology.hl7.org/CodeSystem/designation-usage'
code: display
value: 审计事件
- code: Basic
display: Basic
definition: >-
Basic is used for handling concepts not yet defined in FHIR,
narrative-only resources that don't map to an existing resource, and
custom resources not appropriate for inclusion in the FHIR specification.
designation:
- language: en
use:
system: 'http://terminology.hl7.org/CodeSystem/designation-usage'
code: display
value: Basic
- language: fr
use:
system: 'http://terminology.hl7.org/CodeSystem/designation-usage'