-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfhir-error-dump.html
1508 lines (1405 loc) · 361 KB
/
fhir-error-dump.html
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
<!DOCTYPE HTML>
<!-- template-logical.html -->
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>definition - FHIR v5.0.0-cibuild</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<meta name="author" content="http://hl7.org/fhir"/>
<link href="fhir.css" rel="stylesheet"/>
<link href="fhir-pub.css" rel="stylesheet"/>
<link rel="Prev" href="http://hl7.org/fhir/definition.html"/>
<!-- Bootstrap core CSS -->
<link href="./dist/css/bootstrap.css" rel="stylesheet"/>
<link href="./assets/css/bootstrap-fhir.css" rel="stylesheet"/>
<!-- Project extras -->
<link href="./assets/css/project.css" rel="stylesheet"/>
<link href="./assets/css/pygments-manni.css" rel="stylesheet"/>
<link href="jquery-ui.css" rel="stylesheet"/>
<script src="./assets/js/fhir-table-scripts.js"></script>
<!-- Favicons -->
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="./assets/ico/apple-touch-icon-144-precomposed.png"/>
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="./assets/ico/apple-touch-icon-114-precomposed.png"/>
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="./assets/ico/apple-touch-icon-72-precomposed.png"/>
<link rel="apple-touch-icon-precomposed" href="./assets/ico/apple-touch-icon-57-precomposed.png"/>
<link rel="shortcut icon" href="./assets/ico/favicon.png"/>
</head>
<body>
<div id="segment-header" class="segment"><!-- segment-header -->
<div class="container"> <!-- container -->
<a no-external="true" id="logo" href="http://hl7.org/fhir"><img src="./assets/images/fhir-logo-www.png" alt="logo fhir" width="249" height="60"/> </a>
<div id="hl7-status">
<b>FHIR CI-Build</b>
</div>
<div id="hl7-nav">
<a no-external="true" id="hl7-logo" href="http://www.hl7.org">
<img src="./assets/images/hl7-logo.png" width="42" alt="visit the hl7 website" height="50"/>
</a>
</div>
<div id="hl7-nav"><a no-external="true" id="hl7-logo" href="http://build.fhir.org/search-build.html"><img src="./assets/images/search.png" alt="Search CI-Build FHIR"/></a></div>
</div>
<div class="container"> <!-- container -->
</div></div><!-- /segment-header -->
<div id="segment-navbar" class="segment"><!-- segment-navbar -->
<div id="stripe"> </div>
<div class="container"><!-- container -->
<!-- HEADER CONTENT -->
<nav class="navbar navbar-inverse">
<div class="container">
<button data-target=".navbar-inverse-collapse" data-toggle="collapse" class="navbar-toggle" type="button">
<span class="icon-bar"> </span>
<span class="icon-bar"> </span>
<span class="icon-bar"> </span>
</button>
<a href="index.html" class="navbar-brand hidden">FHIR</a>
<div class="nav-collapse collapse navbar-inverse-collapse">
<ul class="nav navbar-nav">
<li><a href="./index.html">Home</a></li>
<li><a href="./modules.html">Getting Started</a></li>
<li><a href="./documentation.html">Documentation</a></li>
<li><a href="./datatypes.html">Data Types</a></li>
<li><a href="./resourcelist.html"><b><i>Resource Types</i></b></a></li>
<li><a href="./terminologies-systems.html">Terminologies</a></li>
<li class="dropdown">
<a data-toggle="dropdown" href="#" class="dropdown-toggle">Artifacts<b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="./extensibility-registry.html">Extensions</a></li>
<li><a href="./operationslist.html">Operations</a></li>
<li><a href="./patterns.html">Patterns</a></li>
<li><a href="./profilelist.html">Profiles</a></li>
<li><a href="./searchparameter-registry.html">Search Parameters</a></li>
<li class="divider"></li>
<li><a href="http://registry.fhir.org" target="_blank">Artifact Registry</a></li>
</ul>
</li>
<li><a href="http://fhir.org/guides/registry" target="_blank">Implementation Guides</a></li>
</ul>
</div><!-- /.nav-collapse -->
</div><!-- /.container -->
</nav><!-- /.navbar -->
<!-- /HEADER CONTENT -->
</div><!-- /container -->
</div><!-- /segment-navbar -->
<div id="segment-breadcrumb" class="segment"><!-- segment-breadcrumb -->
<div class="container"><!-- container -->
<ul class="breadcrumb">
<li><a href="workflow-module.html"><img src="workflow.png" alt="link"/> Workflow</a></li>
<li><b>Definition Pattern</b></li> <!-- definition.html / resource / Definition-->
</ul>
</div><!-- /container -->
</div><!-- /segment-breadcrumb -->
<div id="segment-content" class="segment"><!-- segment-content -->
<div class="container"><!-- container -->
<div class="row">
<div class="inner-wrapper">
<!-- CONTENT CONTENT -->
<div class="col-12">
<p style="background-color: #ffefef; border:1px solid maroon; padding: 5px; max-width: 790px;">This is the Continuous Integration Build of FHIR (will be incorrect/inconsistent at times). <br/>See the <a href="http://hl7.org/fhir/directory.html">Directory of published versions</a></p>
<div class="col-12">
<ul class="nav nav-tabs"><li class="active"><a href="#">Content</a></li><li><a href="definition-definitions.html">Detailed Descriptions</a></li><li><a href="definition-mappings.html">Mappings</a></li><li><a href="definition-implementations.html">Implementations</a></li><li><a href="definition-analysis.html">Detailed Analysis</a></li></ul>
<h1>Pattern Definition - Content</h1>
<table class="colsi">
<tr><td><a href="http://www.hl7.org/Special/committees/fiwg/index.cfm">FHIR Infrastructure</a></td><td><a href="versions.html#maturity">Maturity Level</a>: 1</td><td><a href="versions.html#std-process">Informative</a><!--!ns!--></td><td></td></tr>
</table>
<p>
<p>A pattern to be followed by resources that represent a specific proposal, plan and/or order for some sort of action or service.</p>
</p>
<div>
<h2>Scope and Usage</h2>
<p>
This is <b>NOT</b> a resource. It is not part of the FHIR schema and cannot appear directly in FHIR instances. It is a logical model that defines a pattern adhered to by
other resources. This pattern serves two purposes:
</p>
<ul>
<li>It offers guidance to work groups designing resources and helps ensure consistency of content created by different work groups</li>
<li>It provides a standard "view" that might be useful for implementers in processing and manipulating all resources that adhere to the same pattern. (Tooling that supports
this may become available in a future release.)</li>
</ul>
<p>
This pattern describes common properties typically found on "definition" resources. "Definition" resources are resources that describe clinical, administrative or other events
that <b>can</b> potentially occur. They do so in a manner that is independent of a particular patient or subject and independent of any particular timeframe. Examples include
protocols, order sets, questionnaires, etc. Definitions are intended to be instantiated by <a href="request.html">Requests</a> (orders, plans and proposals) and
<a href="event.html">Events</a>. For example a
<a href="plandefinition.html">PlanDefinition</a> might represent an order set that is subsequently instantiated by a combination of <a href="medicationrequest.html">MedicationRequests</a>
and <a href="servicerequest.html">ServiceRequests</a> and results in the execution of various <a href="medicationadministration.html">MedicationAdministration</a>,
<a href="procedure.html">Procedure</a> and <a href="observation.html">Observation</a> events. This pattern only applies to definitions of activities, not of objects or roles.
</p>
</div>
<div>
<h2>Boundaries and Relationships</h2>
<p>
This logical model is one of three common <a href="workflow.html#respatterns">workflow patterns</a>. The other two patterns are <a href="event.html">Event</a> and
<a href="request.html">Request</a>. This pattern is followed by (or is intended to be followed by a number of <a href="workflow.html#list">other FHIR resources</a>/
</p>
<p>
Both definitions and <a href="request.html">requests</a> deal with activities that "can" occur, but requests represent a specific intention for something to occur and are bound to
a specific context of subject and time, while definitions represent mere "possibility" rather than intention and are independent of a specific subject or timeframe.
</p>
</div>
<div>
<h2>Background and Context</h2>
<p>
This model represents a pattern. It provides a standard list of data elements with cardinalities, data types, definitions, rationale and usage notes that will ideally be
adhered to by resources that fall into the "definition" workflow category. However, adherence to this pattern is not mandatory. Not all healthcare domains are the same.
Concepts that may be generally applicable (and thus are included in this standard pattern) might still not be relevant everywhere or may be sufficiently uncommon that they
are more appropriate to include as extensions than as core properties of the resource. Work groups are encouraged to adjust descriptions, usage notes and rationale to be
specific to their resource (e.g. use the term "protocol" or "questionnaire" rather than "definition"). As well, design notes in the comments column marked with [square
brackets] identifies areas where domain variation is expected and encouraged. Other variation, including differences in names, cardinalities, data types and the decision to
omit an element outright are also possible, but should be discussed with the FHIR Infrastructure work group's Workflow project to ensure the rationale for non-alignment is
understood, to confirm that the deviation is necessary and to identify whether any adjustments to the pattern are appropriate.
</p>
<p>
This pattern provides a linkage to the <a href="w5.html">W5</a> list of standard data elements. Resources that adhere to this pattern should ensure their w5 mappings are
consistent, as is their data element ordering.
</p>
</div>
<h2>References to this Pattern</h2><ul><li>Implemented by: <a href="activitydefinition.html#ActivityDefinition">ActivityDefinition</a>, <a href="chargeitemdefinition.html#ChargeItemDefinition">ChargeItemDefinition</a>, <a href="eventdefinition.html#EventDefinition">EventDefinition</a>, <a href="measure.html#Measure">Measure</a>, <a href="messagedefinition.html#MessageDefinition">MessageDefinition</a><span id="rr_PATTERN_IMPL" onClick="document.getElementById('rr_PATTERN_IMPL').innerHTML = document.getElementById('rr2_PATTERN_IMPL').innerHTML">... <span style="cursor: pointer; border: 1px grey solid; background-color: #fcdcb3; padding-left: 3px; padding-right: 3px; color: black">Show 6 more</span></span><span id="rr2_PATTERN_IMPL" style="display: none">, <a href="observationdefinition.html#ObservationDefinition">ObservationDefinition</a>, <a href="operationdefinition.html#OperationDefinition">OperationDefinition</a>, <a href="plandefinition.html#PlanDefinition">PlanDefinition</a>, <a href="questionnaire.html#Questionnaire">Questionnaire</a>, <a href="subscriptiontopic.html#SubscriptionTopic">SubscriptionTopic</a> and <a href="testscript.html#TestScript">TestScript</a></span></li></ul>
<a name="resource"></a>
<h2>
Pattern Content
</h2>
<a name="def"></a>
<a name="definition"></a>
<a name="Definition"></a>
<div id="tabs">
<ul>
<li><a href="#tabs-struc">Structure</a></li>
<li><a href="#tabs-uml">UML</a></li>
<li><a href="#tabs-all">Both</a></li>
</ul>
<div id="tabs-struc">
<div id="tbl">
<p><b>Structure</b></p>
<div id="tbl-inner">
<table border="0" cellpadding="0" cellspacing="0" style="border: 0px #F0F0F0 solid; font-size: 11px; font-family: verdana; vertical-align: top;" id="definition"><tr style="border: 1px #F0F0F0 solid; font-size: 11px; font-family: verdana; vertical-align: top"><th style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"><a href="formats.html#table" title="The logical name of the element">Name</a></th><th style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"><a href="formats.html#table" title="Information about the use of the element">Flags</a></th><th style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"><a href="formats.html#table" title="Minimum and Maximum # of times the the element can appear in the instance">Card.</a></th><th style="width: 100px" class="hierarchy"><a href="formats.html#table" title="Reference to the type of the element">Type</a></th><th style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"><a href="formats.html#table" title="Additional information about the element">Description & Constraints</a><span style="float: right"><a href="formats.html#table" title="Legend for this format"><img src="help16.png" alt="doco" style="background-color: inherit" onload="fhirTableInit(this)"/></a></span></th></tr><tr style="border: 0px #F0F0F0 solid; padding:0px; vertical-align: top; background-color: white" id="a"><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px; white-space: nowrap; background-image: url(tbl_bck1.png)" class="hierarchy"><img src="tbl_spacer.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="icon_resource.png" alt="." style="background-color: white; background-color: inherit" title="Resource" class="hierarchy"/> <a href="definition-definitions.html#Definition" title="Definition : A pattern to be followed by resources that represent a specific proposal, plan and/or order for some sort of action or service.">Definition</a><a name="Definition"> </a></td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"><a style="padding-left: 3px; padding-right: 3px; border: 1px grey solid; font-weight: bold; color: black; background-color: #ffffe6" href="versions.html#std-process" title="Standards Status = Informative">I</a></td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"></td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"><a href="structuredefinition.html#logical">Logical</a></td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy">Definition Pattern<br/></td></tr>
<tr style="border: 0px #F0F0F0 solid; padding:0px; vertical-align: top; background-color: #F7F7F7" id="aa"><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px; white-space: nowrap; background-image: url(tbl_bck10.png)" class="hierarchy"><img src="tbl_spacer.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="tbl_vjoin.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="icon_primitive.png" alt="." style="background-color: #F7F7F7; background-color: inherit" title="Primitive Data Type" class="hierarchy"/> <a href="definition-definitions.html#Definition.url" title="Definition.url : An absolute URL that is used to identify this {{title}} when it is referenced in a specification, model, design or an instance. This SHALL be a URL, SHOULD be globally unique, and SHOULD be an address at which this {{title}} is (or will be) published. The URL SHOULD include the major version of the {{title}}. For more information see [Technical and Business Versions](resource.html#versions).">url</a><a name="Definition.url"> </a></td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"><a style="padding-left: 3px; padding-right: 3px; color: black; null" href="elementdefinition-definitions.html#ElementDefinition.isSummary" title="This element is included in summaries">Σ</a></td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy">0..1</td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"><a href="datatypes.html#uri">uri</a></td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy">Logical canonical URL to reference this {{title}} (globally unique)<br/></td></tr>
<tr style="border: 0px #F0F0F0 solid; padding:0px; vertical-align: top; background-color: white" id="ab"><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px; white-space: nowrap; background-image: url(tbl_bck10.png)" class="hierarchy"><img src="tbl_spacer.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="tbl_vjoin.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="icon_datatype.gif" alt="." style="background-color: white; background-color: inherit" title="Data Type" class="hierarchy"/> <a href="definition-definitions.html#Definition.identifier" title="Definition.identifier : Business identifiers assigned to this {{title}} by the performer and/or other systems. These identifiers remain constant as the resource is updated and propagates from server to server.">identifier</a><a name="Definition.identifier"> </a></td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"><a style="padding-left: 3px; padding-right: 3px; color: black; null" href="elementdefinition-definitions.html#ElementDefinition.isSummary" title="This element is included in summaries">Σ</a></td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy">0..*</td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"><a href="datatypes.html#Identifier">Identifier</a></td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy">Business Identifier for {{title}}<br/><br/></td></tr>
<tr style="border: 0px #F0F0F0 solid; padding:0px; vertical-align: top; background-color: #F7F7F7" id="ac"><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px; white-space: nowrap; background-image: url(tbl_bck10.png)" class="hierarchy"><img src="tbl_spacer.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="tbl_vjoin.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="icon_primitive.png" alt="." style="background-color: #F7F7F7; background-color: inherit" title="Primitive Data Type" class="hierarchy"/> <a href="definition-definitions.html#Definition.version" title="Definition.version : The identifier that is used to identify this version of the {{title}} when it is referenced in a specification, model, design or instance. This is an arbitrary value managed by the {{title}} author and is not expected to be globally unique. For example, it might be a timestamp (e.g. yyyymmdd) if a managed version is not available. There is also no expectation that versions are orderable.">version</a><a name="Definition.version"> </a></td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"><a style="padding-left: 3px; padding-right: 3px; color: black; null" href="elementdefinition-definitions.html#ElementDefinition.isSummary" title="This element is included in summaries">Σ</a></td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy">0..1</td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"><a href="datatypes.html#string">string</a></td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy">Business version of the {{title}}<br/></td></tr>
<tr style="border: 0px #F0F0F0 solid; padding:0px; vertical-align: top; background-color: white" id="ad"><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px; white-space: nowrap; background-image: url(tbl_bck10.png)" class="hierarchy"><img src="tbl_spacer.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="tbl_vjoin.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="icon_primitive.png" alt="." style="background-color: white; background-color: inherit" title="Primitive Data Type" class="hierarchy"/> <a href="definition-definitions.html#Definition.name" title="Definition.name : A natural language name identifying the {{title}}. This name should be usable as an identifier for the module by machine processing applications such as code generation.">name</a><a name="Definition.name"> </a></td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"><a style="padding-left: 3px; padding-right: 3px; color: black; null" href="elementdefinition-definitions.html#ElementDefinition.isSummary" title="This element is included in summaries">Σ</a></td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy">0..1</td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"><a href="datatypes.html#string">string</a></td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy">Name for this {{title}} (Computer friendly)<br/></td></tr>
<tr style="border: 0px #F0F0F0 solid; padding:0px; vertical-align: top; background-color: #F7F7F7" id="ae"><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px; white-space: nowrap; background-image: url(tbl_bck10.png)" class="hierarchy"><img src="tbl_spacer.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="tbl_vjoin.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="icon_primitive.png" alt="." style="background-color: #F7F7F7; background-color: inherit" title="Primitive Data Type" class="hierarchy"/> <a href="definition-definitions.html#Definition.title" title="Definition.title : A short, descriptive, user-friendly title for the {{title}}.">title</a><a name="Definition.title"> </a></td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"><a style="padding-left: 3px; padding-right: 3px; color: black; null" href="elementdefinition-definitions.html#ElementDefinition.isSummary" title="This element is included in summaries">Σ</a></td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy">0..1</td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"><a href="datatypes.html#string">string</a></td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy">Name for this {{title}} (Human friendly)<br/></td></tr>
<tr style="border: 0px #F0F0F0 solid; padding:0px; vertical-align: top; background-color: white" id="af"><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px; white-space: nowrap; background-image: url(tbl_bck10.png)" class="hierarchy"><img src="tbl_spacer.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="tbl_vjoin.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="icon_reference.png" alt="." style="background-color: white; background-color: inherit" title="Reference to another Resource" class="hierarchy"/> <a href="definition-definitions.html#Definition.derivedFromCanonical" title="Definition.derivedFromCanonical : The canonical URL pointing to another FHIR-defined protocol, guideline, orderset or other definition that is adhered to in whole or in part by this definition.">derivedFromCanonical</a><a name="Definition.derivedFromCanonical"> </a></td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"><a style="padding-left: 3px; padding-right: 3px; color: black; null" href="elementdefinition-definitions.html#ElementDefinition.isSummary" title="This element is included in summaries">Σ</a></td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy">0..*</td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"><a href="datatypes.html#canonical">canonical</a>(<a href="definition.html">Definition</a>)</td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy">Based on FHIR protocol or definition<br/><br/></td></tr>
<tr style="border: 0px #F0F0F0 solid; padding:0px; vertical-align: top; background-color: #F7F7F7" id="ag"><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px; white-space: nowrap; background-image: url(tbl_bck10.png)" class="hierarchy"><img src="tbl_spacer.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="tbl_vjoin.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="icon_primitive.png" alt="." style="background-color: #F7F7F7; background-color: inherit" title="Primitive Data Type" class="hierarchy"/> <a href="definition-definitions.html#Definition.derivedFromUri" title="Definition.derivedFromUri : The URL pointing to an externally-defined protocol, guideline, orderset or other definition that is adhered to in whole or in part by this definition.">derivedFromUri</a><a name="Definition.derivedFromUri"> </a></td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"><a style="padding-left: 3px; padding-right: 3px; color: black; null" href="elementdefinition-definitions.html#ElementDefinition.isSummary" title="This element is included in summaries">Σ</a></td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy">0..*</td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"><a href="datatypes.html#uri">uri</a></td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy">Based on external protocol or definition<br/><br/></td></tr>
<tr style="border: 0px #F0F0F0 solid; padding:0px; vertical-align: top; background-color: white" id="ah"><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px; white-space: nowrap; background-image: url(tbl_bck10.png)" class="hierarchy"><img src="tbl_spacer.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="tbl_vjoin.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="icon_reference.png" alt="." style="background-color: white; background-color: inherit" title="Reference to another Resource" class="hierarchy"/> <a href="definition-definitions.html#Definition.partOf" title="Definition.partOf : A larger definition of which this particular definition is a component or step.">partOf</a><a name="Definition.partOf"> </a></td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"><a style="padding-left: 3px; padding-right: 3px; color: black; null" href="elementdefinition-definitions.html#ElementDefinition.isSummary" title="This element is included in summaries">Σ</a></td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy">0..*</td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"><a href="datatypes.html#canonical">canonical</a>(<a href="definition.html">Definition</a>)</td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy">Part of referenced definition<br/><br/></td></tr>
<tr style="border: 0px #F0F0F0 solid; padding:0px; vertical-align: top; background-color: #F7F7F7" id="ai"><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px; white-space: nowrap; background-image: url(tbl_bck10.png)" class="hierarchy"><img src="tbl_spacer.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="tbl_vjoin.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="icon_primitive.png" alt="." style="background-color: #F7F7F7; background-color: inherit" title="Primitive Data Type" class="hierarchy"/> <a href="definition-definitions.html#Definition.status" title="Definition.status : The current state of the {{title}}.">status</a><a name="Definition.status"> </a></td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"><a style="padding-left: 3px; padding-right: 3px; color: black; null" href="conformance-rules.html#isModifier" title="This element is a modifier element">?!</a><a style="padding-left: 3px; padding-right: 3px; color: black; null" href="elementdefinition-definitions.html#ElementDefinition.isSummary" title="This element is included in summaries">Σ</a></td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy">1..1</td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"><a href="datatypes.html#code">code</a></td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy">draft | active | retired | unknown<br/><a href="valueset-publication-status.html" title="The lifecycle status of an artifact.">PublicationStatus</a> (<a href="terminologies.html#required" title="To be conformant, the concept in this element SHALL be from the specified value set.">Required</a>)<br/></td></tr>
<tr style="border: 0px #F0F0F0 solid; padding:0px; vertical-align: top; background-color: white" id="aj"><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px; white-space: nowrap; background-image: url(tbl_bck10.png)" class="hierarchy"><img src="tbl_spacer.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="tbl_vjoin.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="icon_primitive.png" alt="." style="background-color: white; background-color: inherit" title="Primitive Data Type" class="hierarchy"/> <a href="definition-definitions.html#Definition.experimental" title="Definition.experimental : A flag to indicate that this {{title}} is authored for testing purposes (or education/evaluation/marketing), and is not intended to be used for genuine usage.">experimental</a><a name="Definition.experimental"> </a></td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"><a style="padding-left: 3px; padding-right: 3px; color: black; null" href="conformance-rules.html#isModifier" title="This element is a modifier element">?!</a><a style="padding-left: 3px; padding-right: 3px; color: black; null" href="elementdefinition-definitions.html#ElementDefinition.isSummary" title="This element is included in summaries">Σ</a></td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy">0..1</td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"><a href="datatypes.html#boolean">boolean</a></td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy">If for testing purposes, not real usage<br/></td></tr>
<tr style="border: 0px #F0F0F0 solid; padding:0px; vertical-align: top; background-color: #F7F7F7" id="ak"><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px; white-space: nowrap; background-image: url(tbl_bck11.png)" class="hierarchy"><img src="tbl_spacer.png" alt="." style="background-color: inherit" class="hierarchy"/><img onClick="tableRowAction(this)" src="tbl_vjoin-open.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="icon_choice.gif" alt="." style="background-color: #F7F7F7; background-color: inherit" title="Choice of Types" class="hierarchy"/> <a href="definition-definitions.html#Definition.subject_x_" title="Definition.subject[x] : A code or group definition that describes the intended subject of instantiations of this definition.">subject[x]</a><a name="Definition.subject_x_"> </a></td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"><a style="padding-left: 3px; padding-right: 3px; color: black; null" href="elementdefinition-definitions.html#ElementDefinition.isSummary" title="This element is included in summaries">Σ</a></td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy">0..1</td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"></td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy">Type of individual the defined service is for<br/></td></tr>
<tr style="border: 0px #F0F0F0 solid; padding:0px; vertical-align: top; background-color: white" id="aka"><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px; white-space: nowrap; background-image: url(tbl_bck110.png)" class="hierarchy"><img src="tbl_spacer.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="tbl_vline.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="tbl_vjoin.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="icon_datatype.gif" alt="." style="background-color: white; background-color: inherit" title="Data Type" class="hierarchy"/> <span title="A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text.">subjectCodeableConcept</span></td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"></td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"></td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"><a href="datatypes.html#CodeableConcept">CodeableConcept</a></td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"></td></tr>
<tr style="border: 0px #F0F0F0 solid; padding:0px; vertical-align: top; background-color: #F7F7F7" id="akb"><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px; white-space: nowrap; background-image: url(tbl_bck100.png)" class="hierarchy"><img src="tbl_spacer.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="tbl_vline.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="tbl_vjoin_end.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="icon_reference.png" alt="." style="background-color: #F7F7F7; background-color: inherit" title="Reference to another Resource" class="hierarchy"/> subjectReference</td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"></td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"></td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"><a href="references.html#Reference">Reference</a>(<a href="group.html">Group</a>)</td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"></td></tr>
<tr style="border: 0px #F0F0F0 solid; padding:0px; vertical-align: top; background-color: white" id="al"><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px; white-space: nowrap; background-image: url(tbl_bck10.png)" class="hierarchy"><img src="tbl_spacer.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="tbl_vjoin.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="icon_primitive.png" alt="." style="background-color: white; background-color: inherit" title="Primitive Data Type" class="hierarchy"/> <a href="definition-definitions.html#Definition.date" title="Definition.date : For draft definitions, indicates the date of initial creation. For active definitions, represents the date of activation. For withdrawn definitions, indicates the date of withdrawal.">date</a><a name="Definition.date"> </a></td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"><a style="padding-left: 3px; padding-right: 3px; color: black; null" href="elementdefinition-definitions.html#ElementDefinition.isSummary" title="This element is included in summaries">Σ</a></td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy">0..1</td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"><a href="datatypes.html#dateTime">dateTime</a></td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy">Date status first applied<br/></td></tr>
<tr style="border: 0px #F0F0F0 solid; padding:0px; vertical-align: top; background-color: #F7F7F7" id="am"><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px; white-space: nowrap; background-image: url(tbl_bck10.png)" class="hierarchy"><img src="tbl_spacer.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="tbl_vjoin.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="icon_reference.png" alt="." style="background-color: #F7F7F7; background-color: inherit" title="Reference to another Resource" class="hierarchy"/> <a href="definition-definitions.html#Definition.publisher" title="Definition.publisher : Helps establish the "authority/credibility" of the {{title}}. May also allow for contact.">publisher</a><a name="Definition.publisher"> </a></td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"><a style="padding-left: 3px; padding-right: 3px; color: black; null" href="elementdefinition-definitions.html#ElementDefinition.isSummary" title="This element is included in summaries">Σ</a></td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy">0..1</td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"><a href="references.html#Reference">Reference</a>(<a href="practitioner.html">Practitioner</a> | <a href="practitionerrole.html">PractitionerRole</a> | <a href="organization.html">Organization</a>)</td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy">The name of the individual or organization that published the {{title}}<br/></td></tr>
<tr style="border: 0px #F0F0F0 solid; padding:0px; vertical-align: top; background-color: white" id="an"><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px; white-space: nowrap; background-image: url(tbl_bck10.png)" class="hierarchy"><img src="tbl_spacer.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="tbl_vjoin.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="icon_datatype.gif" alt="." style="background-color: white; background-color: inherit" title="Data Type" class="hierarchy"/> <a href="definition-definitions.html#Definition.contact" title="Definition.contact : Contact details to assist a user in finding and communicating with the publisher.">contact</a><a name="Definition.contact"> </a></td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"><a style="padding-left: 3px; padding-right: 3px; color: black; null" href="elementdefinition-definitions.html#ElementDefinition.isSummary" title="This element is included in summaries">Σ</a></td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy">0..*</td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"><a href="metadatatypes.html#ContactDetail">ContactDetail</a></td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy">Contact details for the publisher<br/><br/></td></tr>
<tr style="border: 0px #F0F0F0 solid; padding:0px; vertical-align: top; background-color: #F7F7F7" id="ao"><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px; white-space: nowrap; background-image: url(tbl_bck10.png)" class="hierarchy"><img src="tbl_spacer.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="tbl_vjoin.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="icon_primitive.png" alt="." style="background-color: #F7F7F7; background-color: inherit" title="Primitive Data Type" class="hierarchy"/> <a href="definition-definitions.html#Definition.description" title="Definition.description : A free text natural language description of the {{title}} from the consumer's perspective.">description</a><a name="Definition.description"> </a></td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"></td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy">0..1</td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"><a href="datatypes.html#markdown">markdown</a></td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy">Natural language description of the {{title}}<br/></td></tr>
<tr style="border: 0px #F0F0F0 solid; padding:0px; vertical-align: top; background-color: white" id="ap"><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px; white-space: nowrap; background-image: url(tbl_bck10.png)" class="hierarchy"><img src="tbl_spacer.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="tbl_vjoin.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="icon_datatype.gif" alt="." style="background-color: white; background-color: inherit" title="Data Type" class="hierarchy"/> <a href="definition-definitions.html#Definition.useContext" title="Definition.useContext : The content was developed with a focus and intent of supporting the contexts that are listed. These terms may be used to assist with indexing and searching of code system definitions.">useContext</a><a name="Definition.useContext"> </a></td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"><a style="padding-left: 3px; padding-right: 3px; color: black; null" href="elementdefinition-definitions.html#ElementDefinition.isSummary" title="This element is included in summaries">Σ</a></td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy">0..*</td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"><a href="metadatatypes.html#UsageContext">UsageContext</a></td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy">Content intends to support these contexts<br/><br/></td></tr>
<tr style="border: 0px #F0F0F0 solid; padding:0px; vertical-align: top; background-color: #F7F7F7" id="aq"><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px; white-space: nowrap; background-image: url(tbl_bck10.png)" class="hierarchy"><img src="tbl_spacer.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="tbl_vjoin.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="icon_datatype.gif" alt="." style="background-color: #F7F7F7; background-color: inherit" title="Data Type" class="hierarchy"/> <a href="definition-definitions.html#Definition.jurisdiction" title="Definition.jurisdiction : A jurisdiction in which the {{title}} is intended to be used.">jurisdiction</a><a name="Definition.jurisdiction"> </a></td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"><a style="padding-left: 3px; padding-right: 3px; color: black; null" href="elementdefinition-definitions.html#ElementDefinition.isSummary" title="This element is included in summaries">Σ</a></td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy">0..*</td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"><a href="datatypes.html#CodeableConcept">CodeableConcept</a></td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy">Intended jurisdiction for {{title}} (if applicable)<br/><a href="valueset-jurisdiction.html" title="Countries and regions within which this artifact is targeted for use.">Jurisdiction ValueSet</a> (<a href="terminologies.html#extensible" title="To be conformant, the concept in this element SHALL be from the specified value set if any of the codes within the value set can apply to the concept being communicated. If the value set does not cover the concept (based on human review), alternate codings (or, data type allowing, text) may be included instead.">Extensible</a>)<br/><br/></td></tr>
<tr style="border: 0px #F0F0F0 solid; padding:0px; vertical-align: top; background-color: white" id="ar"><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px; white-space: nowrap; background-image: url(tbl_bck10.png)" class="hierarchy"><img src="tbl_spacer.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="tbl_vjoin.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="icon_datatype.gif" alt="." style="background-color: white; background-color: inherit" title="Data Type" class="hierarchy"/> <a href="definition-definitions.html#Definition.category" title="Definition.category : Partitions the {{title}} into one or more categories that can be used to filter searching, to govern access control and/or to guide system behavior.">category</a><a name="Definition.category"> </a></td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"><a style="padding-left: 3px; padding-right: 3px; color: black; null" href="elementdefinition-definitions.html#ElementDefinition.isSummary" title="This element is included in summaries">Σ</a></td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy">0..*</td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"><a href="datatypes.html#CodeableConcept">CodeableConcept</a></td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy">Partitions the {{title}} into one or more categories that can be used to filter searching, to govern access control and/or to guide system behavior.<br/><br/></td></tr>
<tr style="border: 0px #F0F0F0 solid; padding:0px; vertical-align: top; background-color: #F7F7F7" id="as"><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px; white-space: nowrap; background-image: url(tbl_bck10.png)" class="hierarchy"><img src="tbl_spacer.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="tbl_vjoin.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="icon_primitive.png" alt="." style="background-color: #F7F7F7; background-color: inherit" title="Primitive Data Type" class="hierarchy"/> <a href="definition-definitions.html#Definition.purpose" title="Definition.purpose : Explains why this {{title}} is needed and why it has been designed as it has.">purpose</a><a name="Definition.purpose"> </a></td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"></td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy">0..1</td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"><a href="datatypes.html#markdown">markdown</a></td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy">Why this {{title}} is defined<br/></td></tr>
<tr style="border: 0px #F0F0F0 solid; padding:0px; vertical-align: top; background-color: white" id="at"><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px; white-space: nowrap; background-image: url(tbl_bck10.png)" class="hierarchy"><img src="tbl_spacer.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="tbl_vjoin.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="icon_primitive.png" alt="." style="background-color: white; background-color: inherit" title="Primitive Data Type" class="hierarchy"/> <a href="definition-definitions.html#Definition.copyright" title="Definition.copyright : A copyright statement relating to the {{title}} and/or its contents. Copyright statements are generally legal restrictions on the use and publishing of the {{title}}.">copyright</a><a name="Definition.copyright"> </a></td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"></td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy">0..1</td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"><a href="datatypes.html#markdown">markdown</a></td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy">Use and/or publishing restrictions<br/></td></tr>
<tr style="border: 0px #F0F0F0 solid; padding:0px; vertical-align: top; background-color: #F7F7F7" id="au"><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px; white-space: nowrap; background-image: url(tbl_bck10.png)" class="hierarchy"><img src="tbl_spacer.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="tbl_vjoin.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="icon_primitive.png" alt="." style="background-color: #F7F7F7; background-color: inherit" title="Primitive Data Type" class="hierarchy"/> <a href="definition-definitions.html#Definition.approvalDate" title="Definition.approvalDate : The date on which the asset content was approved by the publisher. Approval happens once when the content is officially approved for usage.">approvalDate</a><a name="Definition.approvalDate"> </a></td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"></td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy">0..1</td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"><a href="datatypes.html#date">date</a></td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy">When {{title}} approved by publisher<br/></td></tr>
<tr style="border: 0px #F0F0F0 solid; padding:0px; vertical-align: top; background-color: white" id="av"><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px; white-space: nowrap; background-image: url(tbl_bck10.png)" class="hierarchy"><img src="tbl_spacer.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="tbl_vjoin.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="icon_primitive.png" alt="." style="background-color: white; background-color: inherit" title="Primitive Data Type" class="hierarchy"/> <a href="definition-definitions.html#Definition.lastReviewDate" title="Definition.lastReviewDate : The date on which the asset content was last reviewed. Review happens periodically after that, but doesn't change the original approval date.">lastReviewDate</a><a name="Definition.lastReviewDate"> </a></td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"></td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy">0..1</td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"><a href="datatypes.html#date">date</a></td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy">Last review date for the {{title}}<br/></td></tr>
<tr style="border: 0px #F0F0F0 solid; padding:0px; vertical-align: top; background-color: #F7F7F7" id="aw"><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px; white-space: nowrap; background-image: url(tbl_bck10.png)" class="hierarchy"><img src="tbl_spacer.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="tbl_vjoin.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="icon_datatype.gif" alt="." style="background-color: #F7F7F7; background-color: inherit" title="Data Type" class="hierarchy"/> <a href="definition-definitions.html#Definition.effectivePeriod" title="Definition.effectivePeriod : The period during which the {{title}} content was or is planned to be effective.">effectivePeriod</a><a name="Definition.effectivePeriod"> </a></td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"><a style="padding-left: 3px; padding-right: 3px; color: black; null" href="elementdefinition-definitions.html#ElementDefinition.isSummary" title="This element is included in summaries">Σ</a></td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy">0..1</td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"><a href="datatypes.html#Period">Period</a></td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy">The effective date range for the {{title}}<br/></td></tr>
<tr style="border: 0px #F0F0F0 solid; padding:0px; vertical-align: top; background-color: white" id="ax"><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px; white-space: nowrap; background-image: url(tbl_bck10.png)" class="hierarchy"><img src="tbl_spacer.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="tbl_vjoin.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="icon_datatype.gif" alt="." style="background-color: white; background-color: inherit" title="Data Type" class="hierarchy"/> <a href="definition-definitions.html#Definition.performerType" title="Definition.performerType : The type of individual that is expected to act upon instances of this definition.">performerType</a><a name="Definition.performerType"> </a></td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"><a style="padding-left: 3px; padding-right: 3px; color: black; null" href="elementdefinition-definitions.html#ElementDefinition.isSummary" title="This element is included in summaries">Σ</a></td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy">0..1</td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"><a href="datatypes.html#CodeableConcept">CodeableConcept</a></td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy">Desired kind of service performer<br/></td></tr>
<tr style="border: 0px #F0F0F0 solid; padding:0px; vertical-align: top; background-color: #F7F7F7" id="ay"><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px; white-space: nowrap; background-image: url(tbl_bck10.png)" class="hierarchy"><img src="tbl_spacer.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="tbl_vjoin.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="icon_datatype.gif" alt="." style="background-color: #F7F7F7; background-color: inherit" title="Data Type" class="hierarchy"/> <a href="definition-definitions.html#Definition.code" title="Definition.code : A code that identifies the specific service or action that was or is being performed.">code</a><a name="Definition.code"> </a></td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"><a style="padding-left: 3px; padding-right: 3px; color: black; null" href="elementdefinition-definitions.html#ElementDefinition.isSummary" title="This element is included in summaries">Σ</a></td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy">0..1</td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"><a href="datatypes.html#CodeableConcept">CodeableConcept</a></td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy">Service to be done<br/></td></tr>
<tr style="border: 0px #F0F0F0 solid; padding:0px; vertical-align: top; background-color: white" id="az"><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px; white-space: nowrap; background-image: url(tbl_bck00.png)" class="hierarchy"><img src="tbl_spacer.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="tbl_vjoin_end.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="icon_reference.png" alt="." style="background-color: white; background-color: inherit" title="Reference to another Resource" class="hierarchy"/> <a href="definition-definitions.html#Definition.product" title="Definition.product : Indicates the product supplied or manipulated by this {{title}}.">product</a><a name="Definition.product"> </a></td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"><a style="padding-left: 3px; padding-right: 3px; color: black; null" href="elementdefinition-definitions.html#ElementDefinition.isSummary" title="This element is included in summaries">Σ</a></td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy">0..1</td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"><a href="references.html#CodeableReference">CodeableReference</a>(<a href="biologicallyderivedproduct.html">BiologicallyDerivedProduct</a> | <a href="devicedefinition.html">DeviceDefinition</a> | <a href="medication.html">Medication</a> | <a href="nutritionproduct.html">NutritionProduct</a> | <a href="substance.html">Substance</a>)</td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy">Product to use/manipulate<br/></td></tr>
<tr><td colspan="5" class="hierarchy"><br/><a href="formats.html#table" title="Legend for this format"><img src="help16.png" alt="doco" style="background-color: inherit"/> Documentation for this format</a></td></tr></table>
</div>
</div>
</div>
<div id="tabs-uml">
<div id="uml">
<p><b>UML Diagram</b> (<a href="formats.html#uml">Legend</a>)</p>
<div id="uml-inner">
<svg id="n98" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="386.0" height="438.0"> <defs>
<filter id="shadowA" x="0" y="0" width="200%" height="200%">
<feOffset result="offOut" in="SourceGraphic" dx="3" dy="3" />
<feColorMatrix result="matrixOut" in="offOut" type="matrix" values="0.2 0 0 0 0 0 0.2 0 0 0 0 0 0.2 0 0 0 0 0 1 0" />
<feGaussianBlur result="blurOut" in="matrixOut" stdDeviation="2" />
<feBlend in="SourceGraphic" in2="blurOut" mode="normal" />
</filter>
</defs><g id="n99"><rect id="" x="0.0" y="0.0" rx="4" ry="4" width="286.0" height="428.0" filter="url(#shadowA)" style="fill:#ffffec;stroke:black;stroke-width:1"/><line id="n100" x1="0.0" y1="28.0" x2="286.0" y2="28.0" style="stroke:dimgrey;stroke-width:1"/><text id="n101" x="143.0" y="20.0" fill="black" class="diagram-class-title diagram-class-resource">Definition<tspan class="diagram-class-title-link"> (<a id="n102" xlink:href="types.html#Base" class="diagram-class-reference" style="font-style: italic">Base</a>)</tspan> <a xlink:href="uml.html#pattern">«Pattern»</a></text><text id="n103" x="6.0" y="42.0" fill="black" class="diagram-class-detail"><a id="n104" xlink:href="definition-definitions.html#definition.url"><title>An absolute URL that is used to identify this {{title}} when it is referenced in a specification, model, design or an instance. This SHALL be a URL, SHOULD be globally unique, and SHOULD be an address at which this {{title}} is (or will be) published. The URL SHOULD include the major version of the {{title}}. For more information see [Technical and Business Versions](resource.html#versions)</title>url</a> : <a id="n105" xlink:href="datatypes.html#uri">uri</a> [0..1]</text><text id="n109" x="6.0" y="56.0" fill="black" class="diagram-class-detail"><a id="n110" xlink:href="definition-definitions.html#definition.identifier"><title>Business identifiers assigned to this {{title}} by the performer and/or other systems. These identifiers remain constant as the resource is updated and propagates from server to server</title>identifier</a> : <a id="n111" xlink:href="datatypes.html#Identifier">Identifier</a> [0..*]</text><text id="n115" x="6.0" y="70.0" fill="black" class="diagram-class-detail"><a id="n116" xlink:href="definition-definitions.html#definition.version"><title>The identifier that is used to identify this version of the {{title}} when it is referenced in a specification, model, design or instance. This is an arbitrary value managed by the {{title}} author and is not expected to be globally unique. For example, it might be a timestamp (e.g. yyyymmdd) if a managed version is not available. There is also no expectation that versions are orderable</title>version</a> : <a id="n117" xlink:href="datatypes.html#string">string</a> [0..1]</text><text id="n121" x="6.0" y="84.0" fill="black" class="diagram-class-detail"><a id="n122" xlink:href="definition-definitions.html#definition.name"><title>A natural language name identifying the {{title}}. This name should be usable as an identifier for the module by machine processing applications such as code generation</title>name</a> : <a id="n123" xlink:href="datatypes.html#string">string</a> [0..1]</text><text id="n127" x="6.0" y="98.0" fill="black" class="diagram-class-detail"><a id="n128" xlink:href="definition-definitions.html#definition.title"><title>A short, descriptive, user-friendly title for the {{title}}</title>title</a> : <a id="n129" xlink:href="datatypes.html#string">string</a> [0..1]</text><text id="n133" x="6.0" y="112.0" fill="black" class="diagram-class-detail"><a id="n134" xlink:href="definition-definitions.html#definition.derivedFromCanonical"><title>The canonical URL pointing to another FHIR-defined protocol, guideline, orderset or other definition that is adhered to in whole or in part by this definition</title>derivedFromCanonical</a> : <a id="n135" xlink:href="datatypes.html#canonical">canonical</a> [0..*] « <a id="n136" xlink:href="definition.html#Definition">Definition</a> »</text><text id="n141" x="6.0" y="126.0" fill="black" class="diagram-class-detail"><a id="n142" xlink:href="definition-definitions.html#definition.derivedFromUri"><title>The URL pointing to an externally-defined protocol, guideline, orderset or other definition that is adhered to in whole or in part by this definition</title>derivedFromUri</a> : <a id="n143" xlink:href="datatypes.html#uri">uri</a> [0..*]</text><text id="n147" x="6.0" y="140.0" fill="black" class="diagram-class-detail"><a id="n148" xlink:href="definition-definitions.html#definition.partOf"><title>A larger definition of which this particular definition is a component or step</title>partOf</a> : <a id="n149" xlink:href="datatypes.html#canonical">canonical</a> [0..*] « <a id="n150" xlink:href="definition.html#Definition">Definition</a> »</text><text id="n155" x="6.0" y="154.0" fill="black" class="diagram-class-detail"><a id="n156" xlink:href="definition-definitions.html#definition.status"><title>The current state of the {{title}} (this element modifies the meaning of other elements)</title>status</a> : <a id="n157" xlink:href="datatypes.html#code">code</a> [1..1] « <a id="n158" xlink:href="valueset-publication-status.html"><title id="n159">The lifecycle status of an artifact. (Strength=Required)</title>PublicationStatus</a>! »</text><text id="n165" x="6.0" y="168.0" fill="black" class="diagram-class-detail"><a id="n166" xlink:href="definition-definitions.html#definition.experimental"><title>A flag to indicate that this {{title}} is authored for testing purposes (or education/evaluation/marketing), and is not intended to be used for genuine usage (this element modifies the meaning of other elements)</title>experimental</a> : <a id="n167" xlink:href="datatypes.html#boolean">boolean</a> [0..1]</text><text id="n171" x="6.0" y="182.0" fill="black" class="diagram-class-detail"><a id="n172" xlink:href="definition-definitions.html#definition.subject_x_"><title>A code or group definition that describes the intended subject of instantiations of this definition</title>subject[x]</a> : <a id="n173" xlink:href="types.html#DataType">DataType</a> [0..1] « <a id="n174" xlink:href="datatypes.html#CodeableConcept">CodeableConcept</a>|<a id="n175" xlink:href="references.html#Reference">Reference</a>(<a id="n176" xlink:href="group.html#Group">Group</a>) »</text><text id="n183" x="6.0" y="196.0" fill="black" class="diagram-class-detail"><a id="n184" xlink:href="definition-definitions.html#definition.date"><title>For draft definitions, indicates the date of initial creation. For active definitions, represents the date of activation. For withdrawn definitions, indicates the date of withdrawal</title>date</a> : <a id="n185" xlink:href="datatypes.html#dateTime">dateTime</a> [0..1]</text><text id="n189" x="6.0" y="210.0" fill="black" class="diagram-class-detail"><a id="n190" xlink:href="definition-definitions.html#definition.publisher"><title>Helps establish the "authority/credibility" of the {{title}}. May also allow for contact</title>publisher</a> : <a id="n191" xlink:href="references.html#Reference">Reference</a> [0..1] « <a id="n192" xlink:href="practitioner.html#Practitioner">Practitioner</a>|<a id="n193" xlink:href="practitionerrole.html#PractitionerRole">PractitionerRole</a>|</text><text id="n194" x="26.0" y="224.0" fill="black" class="diagram-class-detail"> <a id="n195" xlink:href="organization.html#Organization">Organization</a> »</text><text id="n203" x="6.0" y="238.0" fill="black" class="diagram-class-detail"><a id="n204" xlink:href="definition-definitions.html#definition.contact"><title>Contact details to assist a user in finding and communicating with the publisher</title>contact</a> : <a id="n205" xlink:href="metadatatypes.html#ContactDetail">ContactDetail</a> [0..*]</text><text id="n209" x="6.0" y="252.0" fill="black" class="diagram-class-detail"><a id="n210" xlink:href="definition-definitions.html#definition.description"><title>A free text natural language description of the {{title}} from the consumer's perspective</title>description</a> : <a id="n211" xlink:href="datatypes.html#markdown">markdown</a> [0..1]</text><text id="n215" x="6.0" y="266.0" fill="black" class="diagram-class-detail"><a id="n216" xlink:href="definition-definitions.html#definition.useContext"><title>The content was developed with a focus and intent of supporting the contexts that are listed. These terms may be used to assist with indexing and searching of code system definitions</title>useContext</a> : <a id="n217" xlink:href="metadatatypes.html#UsageContext">UsageContext</a> [0..*]</text><text id="n221" x="6.0" y="280.0" fill="black" class="diagram-class-detail"><a id="n222" xlink:href="definition-definitions.html#definition.jurisdiction"><title>A jurisdiction in which the {{title}} is intended to be used</title>jurisdiction</a> : <a id="n223" xlink:href="datatypes.html#CodeableConcept">CodeableConcept</a> [0..*] « <a id="n224" xlink:href="valueset-jurisdiction.html"><title id="n225">Countries and regions within which this artifact is targeted for use. (Strength=Extensible)</title>JurisdictionValueSet</a>+ »</text><text id="n231" x="6.0" y="294.0" fill="black" class="diagram-class-detail"><a id="n232" xlink:href="definition-definitions.html#definition.category"><title>Partitions the {{title}} into one or more categories that can be used to filter searching, to govern access control and/or to guide system behavior</title>category</a> : <a id="n233" xlink:href="datatypes.html#CodeableConcept">CodeableConcept</a> [0..*]</text><text id="n237" x="6.0" y="308.0" fill="black" class="diagram-class-detail"><a id="n238" xlink:href="definition-definitions.html#definition.purpose"><title>Explains why this {{title}} is needed and why it has been designed as it has</title>purpose</a> : <a id="n239" xlink:href="datatypes.html#markdown">markdown</a> [0..1]</text><text id="n243" x="6.0" y="322.0" fill="black" class="diagram-class-detail"><a id="n244" xlink:href="definition-definitions.html#definition.copyright"><title>A copyright statement relating to the {{title}} and/or its contents. Copyright statements are generally legal restrictions on the use and publishing of the {{title}}</title>copyright</a> : <a id="n245" xlink:href="datatypes.html#markdown">markdown</a> [0..1]</text><text id="n249" x="6.0" y="336.0" fill="black" class="diagram-class-detail"><a id="n250" xlink:href="definition-definitions.html#definition.approvalDate"><title>The date on which the asset content was approved by the publisher. Approval happens once when the content is officially approved for usage</title>approvalDate</a> : <a id="n251" xlink:href="datatypes.html#date">date</a> [0..1]</text><text id="n255" x="6.0" y="350.0" fill="black" class="diagram-class-detail"><a id="n256" xlink:href="definition-definitions.html#definition.lastReviewDate"><title>The date on which the asset content was last reviewed. Review happens periodically after that, but doesn't change the original approval date</title>lastReviewDate</a> : <a id="n257" xlink:href="datatypes.html#date">date</a> [0..1]</text><text id="n261" x="6.0" y="364.0" fill="black" class="diagram-class-detail"><a id="n262" xlink:href="definition-definitions.html#definition.effectivePeriod"><title>The period during which the {{title}} content was or is planned to be effective</title>effectivePeriod</a> : <a id="n263" xlink:href="datatypes.html#Period">Period</a> [0..1]</text><text id="n267" x="6.0" y="378.0" fill="black" class="diagram-class-detail"><a id="n268" xlink:href="definition-definitions.html#definition.performerType"><title>The type of individual that is expected to act upon instances of this definition</title>performerType</a> : <a id="n269" xlink:href="datatypes.html#CodeableConcept">CodeableConcept</a> [0..1]</text><text id="n273" x="6.0" y="392.0" fill="black" class="diagram-class-detail"><a id="n274" xlink:href="definition-definitions.html#definition.code"><title>A code that identifies the specific service or action that was or is being performed</title>code</a> : <a id="n275" xlink:href="datatypes.html#CodeableConcept">CodeableConcept</a> [0..1]</text><text id="n279" x="6.0" y="406.0" fill="black" class="diagram-class-detail"><a id="n280" xlink:href="definition-definitions.html#definition.product"><title>Indicates the product supplied or manipulated by this {{title}}</title>product</a> : <a id="n281" xlink:href="references.html#CodeableReference">CodeableReference</a> [0..1] « <a id="n282" xlink:href="biologicallyderivedproduct.html#BiologicallyDerivedProduct">BiologicallyDerivedProduct</a>|</text><text id="n283" x="26.0" y="420.0" fill="black" class="diagram-class-detail"> <a id="n284" xlink:href="devicedefinition.html#DeviceDefinition">DeviceDefinition</a>|<a id="n285" xlink:href="medication.html#Medication">Medication</a>|<a id="n286" xlink:href="nutritionproduct.html#NutritionProduct">NutritionProduct</a>|<a id="n287" xlink:href="substance.html#Substance">Substance</a> »</text></g></svg>
</div>
</div>
</div>
<div id="tabs-all">
<div id="tbl">
<a name="tbl"></a>
<p><b>Structure</b></p>
<div id="tbl-inner">
<table border="0" cellpadding="0" cellspacing="0" style="border: 0px #F0F0F0 solid; font-size: 11px; font-family: verdana; vertical-align: top;" id="definition"><tr style="border: 1px #F0F0F0 solid; font-size: 11px; font-family: verdana; vertical-align: top"><th style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"><a href="formats.html#table" title="The logical name of the element">Name</a></th><th style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"><a href="formats.html#table" title="Information about the use of the element">Flags</a></th><th style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"><a href="formats.html#table" title="Minimum and Maximum # of times the the element can appear in the instance">Card.</a></th><th style="width: 100px" class="hierarchy"><a href="formats.html#table" title="Reference to the type of the element">Type</a></th><th style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"><a href="formats.html#table" title="Additional information about the element">Description & Constraints</a><span style="float: right"><a href="formats.html#table" title="Legend for this format"><img src="help16.png" alt="doco" style="background-color: inherit" onload="fhirTableInit(this)"/></a></span></th></tr><tr style="border: 0px #F0F0F0 solid; padding:0px; vertical-align: top; background-color: white" id="a"><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px; white-space: nowrap; background-image: url(tbl_bck1.png)" class="hierarchy"><img src="tbl_spacer.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="icon_resource.png" alt="." style="background-color: white; background-color: inherit" title="Resource" class="hierarchy"/> <a href="definition-definitions.html#Definition" title="Definition : A pattern to be followed by resources that represent a specific proposal, plan and/or order for some sort of action or service.">Definition</a><a name="Definition"> </a></td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"><a style="padding-left: 3px; padding-right: 3px; border: 1px grey solid; font-weight: bold; color: black; background-color: #ffffe6" href="versions.html#std-process" title="Standards Status = Informative">I</a></td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"></td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"><a href="structuredefinition.html#logical">Logical</a></td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy">Definition Pattern<br/></td></tr>
<tr style="border: 0px #F0F0F0 solid; padding:0px; vertical-align: top; background-color: #F7F7F7" id="aa"><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px; white-space: nowrap; background-image: url(tbl_bck10.png)" class="hierarchy"><img src="tbl_spacer.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="tbl_vjoin.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="icon_primitive.png" alt="." style="background-color: #F7F7F7; background-color: inherit" title="Primitive Data Type" class="hierarchy"/> <a href="definition-definitions.html#Definition.url" title="Definition.url : An absolute URL that is used to identify this {{title}} when it is referenced in a specification, model, design or an instance. This SHALL be a URL, SHOULD be globally unique, and SHOULD be an address at which this {{title}} is (or will be) published. The URL SHOULD include the major version of the {{title}}. For more information see [Technical and Business Versions](resource.html#versions).">url</a><a name="Definition.url"> </a></td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"><a style="padding-left: 3px; padding-right: 3px; color: black; null" href="elementdefinition-definitions.html#ElementDefinition.isSummary" title="This element is included in summaries">Σ</a></td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy">0..1</td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"><a href="datatypes.html#uri">uri</a></td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy">Logical canonical URL to reference this {{title}} (globally unique)<br/></td></tr>
<tr style="border: 0px #F0F0F0 solid; padding:0px; vertical-align: top; background-color: white" id="ab"><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px; white-space: nowrap; background-image: url(tbl_bck10.png)" class="hierarchy"><img src="tbl_spacer.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="tbl_vjoin.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="icon_datatype.gif" alt="." style="background-color: white; background-color: inherit" title="Data Type" class="hierarchy"/> <a href="definition-definitions.html#Definition.identifier" title="Definition.identifier : Business identifiers assigned to this {{title}} by the performer and/or other systems. These identifiers remain constant as the resource is updated and propagates from server to server.">identifier</a><a name="Definition.identifier"> </a></td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"><a style="padding-left: 3px; padding-right: 3px; color: black; null" href="elementdefinition-definitions.html#ElementDefinition.isSummary" title="This element is included in summaries">Σ</a></td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy">0..*</td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"><a href="datatypes.html#Identifier">Identifier</a></td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy">Business Identifier for {{title}}<br/><br/></td></tr>
<tr style="border: 0px #F0F0F0 solid; padding:0px; vertical-align: top; background-color: #F7F7F7" id="ac"><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px; white-space: nowrap; background-image: url(tbl_bck10.png)" class="hierarchy"><img src="tbl_spacer.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="tbl_vjoin.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="icon_primitive.png" alt="." style="background-color: #F7F7F7; background-color: inherit" title="Primitive Data Type" class="hierarchy"/> <a href="definition-definitions.html#Definition.version" title="Definition.version : The identifier that is used to identify this version of the {{title}} when it is referenced in a specification, model, design or instance. This is an arbitrary value managed by the {{title}} author and is not expected to be globally unique. For example, it might be a timestamp (e.g. yyyymmdd) if a managed version is not available. There is also no expectation that versions are orderable.">version</a><a name="Definition.version"> </a></td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"><a style="padding-left: 3px; padding-right: 3px; color: black; null" href="elementdefinition-definitions.html#ElementDefinition.isSummary" title="This element is included in summaries">Σ</a></td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy">0..1</td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"><a href="datatypes.html#string">string</a></td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy">Business version of the {{title}}<br/></td></tr>
<tr style="border: 0px #F0F0F0 solid; padding:0px; vertical-align: top; background-color: white" id="ad"><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px; white-space: nowrap; background-image: url(tbl_bck10.png)" class="hierarchy"><img src="tbl_spacer.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="tbl_vjoin.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="icon_primitive.png" alt="." style="background-color: white; background-color: inherit" title="Primitive Data Type" class="hierarchy"/> <a href="definition-definitions.html#Definition.name" title="Definition.name : A natural language name identifying the {{title}}. This name should be usable as an identifier for the module by machine processing applications such as code generation.">name</a><a name="Definition.name"> </a></td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"><a style="padding-left: 3px; padding-right: 3px; color: black; null" href="elementdefinition-definitions.html#ElementDefinition.isSummary" title="This element is included in summaries">Σ</a></td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy">0..1</td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"><a href="datatypes.html#string">string</a></td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy">Name for this {{title}} (Computer friendly)<br/></td></tr>
<tr style="border: 0px #F0F0F0 solid; padding:0px; vertical-align: top; background-color: #F7F7F7" id="ae"><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px; white-space: nowrap; background-image: url(tbl_bck10.png)" class="hierarchy"><img src="tbl_spacer.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="tbl_vjoin.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="icon_primitive.png" alt="." style="background-color: #F7F7F7; background-color: inherit" title="Primitive Data Type" class="hierarchy"/> <a href="definition-definitions.html#Definition.title" title="Definition.title : A short, descriptive, user-friendly title for the {{title}}.">title</a><a name="Definition.title"> </a></td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"><a style="padding-left: 3px; padding-right: 3px; color: black; null" href="elementdefinition-definitions.html#ElementDefinition.isSummary" title="This element is included in summaries">Σ</a></td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy">0..1</td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"><a href="datatypes.html#string">string</a></td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy">Name for this {{title}} (Human friendly)<br/></td></tr>
<tr style="border: 0px #F0F0F0 solid; padding:0px; vertical-align: top; background-color: white" id="af"><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px; white-space: nowrap; background-image: url(tbl_bck10.png)" class="hierarchy"><img src="tbl_spacer.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="tbl_vjoin.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="icon_reference.png" alt="." style="background-color: white; background-color: inherit" title="Reference to another Resource" class="hierarchy"/> <a href="definition-definitions.html#Definition.derivedFromCanonical" title="Definition.derivedFromCanonical : The canonical URL pointing to another FHIR-defined protocol, guideline, orderset or other definition that is adhered to in whole or in part by this definition.">derivedFromCanonical</a><a name="Definition.derivedFromCanonical"> </a></td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"><a style="padding-left: 3px; padding-right: 3px; color: black; null" href="elementdefinition-definitions.html#ElementDefinition.isSummary" title="This element is included in summaries">Σ</a></td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy">0..*</td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"><a href="datatypes.html#canonical">canonical</a>(<a href="definition.html">Definition</a>)</td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy">Based on FHIR protocol or definition<br/><br/></td></tr>
<tr style="border: 0px #F0F0F0 solid; padding:0px; vertical-align: top; background-color: #F7F7F7" id="ag"><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px; white-space: nowrap; background-image: url(tbl_bck10.png)" class="hierarchy"><img src="tbl_spacer.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="tbl_vjoin.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="icon_primitive.png" alt="." style="background-color: #F7F7F7; background-color: inherit" title="Primitive Data Type" class="hierarchy"/> <a href="definition-definitions.html#Definition.derivedFromUri" title="Definition.derivedFromUri : The URL pointing to an externally-defined protocol, guideline, orderset or other definition that is adhered to in whole or in part by this definition.">derivedFromUri</a><a name="Definition.derivedFromUri"> </a></td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"><a style="padding-left: 3px; padding-right: 3px; color: black; null" href="elementdefinition-definitions.html#ElementDefinition.isSummary" title="This element is included in summaries">Σ</a></td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy">0..*</td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"><a href="datatypes.html#uri">uri</a></td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy">Based on external protocol or definition<br/><br/></td></tr>
<tr style="border: 0px #F0F0F0 solid; padding:0px; vertical-align: top; background-color: white" id="ah"><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px; white-space: nowrap; background-image: url(tbl_bck10.png)" class="hierarchy"><img src="tbl_spacer.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="tbl_vjoin.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="icon_reference.png" alt="." style="background-color: white; background-color: inherit" title="Reference to another Resource" class="hierarchy"/> <a href="definition-definitions.html#Definition.partOf" title="Definition.partOf : A larger definition of which this particular definition is a component or step.">partOf</a><a name="Definition.partOf"> </a></td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"><a style="padding-left: 3px; padding-right: 3px; color: black; null" href="elementdefinition-definitions.html#ElementDefinition.isSummary" title="This element is included in summaries">Σ</a></td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy">0..*</td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"><a href="datatypes.html#canonical">canonical</a>(<a href="definition.html">Definition</a>)</td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy">Part of referenced definition<br/><br/></td></tr>
<tr style="border: 0px #F0F0F0 solid; padding:0px; vertical-align: top; background-color: #F7F7F7" id="ai"><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px; white-space: nowrap; background-image: url(tbl_bck10.png)" class="hierarchy"><img src="tbl_spacer.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="tbl_vjoin.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="icon_primitive.png" alt="." style="background-color: #F7F7F7; background-color: inherit" title="Primitive Data Type" class="hierarchy"/> <a href="definition-definitions.html#Definition.status" title="Definition.status : The current state of the {{title}}.">status</a><a name="Definition.status"> </a></td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"><a style="padding-left: 3px; padding-right: 3px; color: black; null" href="conformance-rules.html#isModifier" title="This element is a modifier element">?!</a><a style="padding-left: 3px; padding-right: 3px; color: black; null" href="elementdefinition-definitions.html#ElementDefinition.isSummary" title="This element is included in summaries">Σ</a></td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy">1..1</td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"><a href="datatypes.html#code">code</a></td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy">draft | active | retired | unknown<br/><a href="valueset-publication-status.html" title="The lifecycle status of an artifact.">PublicationStatus</a> (<a href="terminologies.html#required" title="To be conformant, the concept in this element SHALL be from the specified value set.">Required</a>)<br/></td></tr>
<tr style="border: 0px #F0F0F0 solid; padding:0px; vertical-align: top; background-color: white" id="aj"><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px; white-space: nowrap; background-image: url(tbl_bck10.png)" class="hierarchy"><img src="tbl_spacer.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="tbl_vjoin.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="icon_primitive.png" alt="." style="background-color: white; background-color: inherit" title="Primitive Data Type" class="hierarchy"/> <a href="definition-definitions.html#Definition.experimental" title="Definition.experimental : A flag to indicate that this {{title}} is authored for testing purposes (or education/evaluation/marketing), and is not intended to be used for genuine usage.">experimental</a><a name="Definition.experimental"> </a></td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"><a style="padding-left: 3px; padding-right: 3px; color: black; null" href="conformance-rules.html#isModifier" title="This element is a modifier element">?!</a><a style="padding-left: 3px; padding-right: 3px; color: black; null" href="elementdefinition-definitions.html#ElementDefinition.isSummary" title="This element is included in summaries">Σ</a></td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy">0..1</td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"><a href="datatypes.html#boolean">boolean</a></td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy">If for testing purposes, not real usage<br/></td></tr>
<tr style="border: 0px #F0F0F0 solid; padding:0px; vertical-align: top; background-color: #F7F7F7" id="ak"><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px; white-space: nowrap; background-image: url(tbl_bck11.png)" class="hierarchy"><img src="tbl_spacer.png" alt="." style="background-color: inherit" class="hierarchy"/><img onClick="tableRowAction(this)" src="tbl_vjoin-open.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="icon_choice.gif" alt="." style="background-color: #F7F7F7; background-color: inherit" title="Choice of Types" class="hierarchy"/> <a href="definition-definitions.html#Definition.subject_x_" title="Definition.subject[x] : A code or group definition that describes the intended subject of instantiations of this definition.">subject[x]</a><a name="Definition.subject_x_"> </a></td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"><a style="padding-left: 3px; padding-right: 3px; color: black; null" href="elementdefinition-definitions.html#ElementDefinition.isSummary" title="This element is included in summaries">Σ</a></td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy">0..1</td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"></td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy">Type of individual the defined service is for<br/></td></tr>
<tr style="border: 0px #F0F0F0 solid; padding:0px; vertical-align: top; background-color: white" id="aka"><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px; white-space: nowrap; background-image: url(tbl_bck110.png)" class="hierarchy"><img src="tbl_spacer.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="tbl_vline.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="tbl_vjoin.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="icon_datatype.gif" alt="." style="background-color: white; background-color: inherit" title="Data Type" class="hierarchy"/> <span title="A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text.">subjectCodeableConcept</span></td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"></td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"></td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"><a href="datatypes.html#CodeableConcept">CodeableConcept</a></td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"></td></tr>
<tr style="border: 0px #F0F0F0 solid; padding:0px; vertical-align: top; background-color: #F7F7F7" id="akb"><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px; white-space: nowrap; background-image: url(tbl_bck100.png)" class="hierarchy"><img src="tbl_spacer.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="tbl_vline.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="tbl_vjoin_end.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="icon_reference.png" alt="." style="background-color: #F7F7F7; background-color: inherit" title="Reference to another Resource" class="hierarchy"/> subjectReference</td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"></td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"></td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"><a href="references.html#Reference">Reference</a>(<a href="group.html">Group</a>)</td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"></td></tr>
<tr style="border: 0px #F0F0F0 solid; padding:0px; vertical-align: top; background-color: white" id="al"><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px; white-space: nowrap; background-image: url(tbl_bck10.png)" class="hierarchy"><img src="tbl_spacer.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="tbl_vjoin.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="icon_primitive.png" alt="." style="background-color: white; background-color: inherit" title="Primitive Data Type" class="hierarchy"/> <a href="definition-definitions.html#Definition.date" title="Definition.date : For draft definitions, indicates the date of initial creation. For active definitions, represents the date of activation. For withdrawn definitions, indicates the date of withdrawal.">date</a><a name="Definition.date"> </a></td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"><a style="padding-left: 3px; padding-right: 3px; color: black; null" href="elementdefinition-definitions.html#ElementDefinition.isSummary" title="This element is included in summaries">Σ</a></td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy">0..1</td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"><a href="datatypes.html#dateTime">dateTime</a></td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy">Date status first applied<br/></td></tr>
<tr style="border: 0px #F0F0F0 solid; padding:0px; vertical-align: top; background-color: #F7F7F7" id="am"><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px; white-space: nowrap; background-image: url(tbl_bck10.png)" class="hierarchy"><img src="tbl_spacer.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="tbl_vjoin.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="icon_reference.png" alt="." style="background-color: #F7F7F7; background-color: inherit" title="Reference to another Resource" class="hierarchy"/> <a href="definition-definitions.html#Definition.publisher" title="Definition.publisher : Helps establish the "authority/credibility" of the {{title}}. May also allow for contact.">publisher</a><a name="Definition.publisher"> </a></td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"><a style="padding-left: 3px; padding-right: 3px; color: black; null" href="elementdefinition-definitions.html#ElementDefinition.isSummary" title="This element is included in summaries">Σ</a></td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy">0..1</td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"><a href="references.html#Reference">Reference</a>(<a href="practitioner.html">Practitioner</a> | <a href="practitionerrole.html">PractitionerRole</a> | <a href="organization.html">Organization</a>)</td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy">The name of the individual or organization that published the {{title}}<br/></td></tr>
<tr style="border: 0px #F0F0F0 solid; padding:0px; vertical-align: top; background-color: white" id="an"><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px; white-space: nowrap; background-image: url(tbl_bck10.png)" class="hierarchy"><img src="tbl_spacer.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="tbl_vjoin.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="icon_datatype.gif" alt="." style="background-color: white; background-color: inherit" title="Data Type" class="hierarchy"/> <a href="definition-definitions.html#Definition.contact" title="Definition.contact : Contact details to assist a user in finding and communicating with the publisher.">contact</a><a name="Definition.contact"> </a></td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"><a style="padding-left: 3px; padding-right: 3px; color: black; null" href="elementdefinition-definitions.html#ElementDefinition.isSummary" title="This element is included in summaries">Σ</a></td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy">0..*</td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"><a href="metadatatypes.html#ContactDetail">ContactDetail</a></td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy">Contact details for the publisher<br/><br/></td></tr>
<tr style="border: 0px #F0F0F0 solid; padding:0px; vertical-align: top; background-color: #F7F7F7" id="ao"><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px; white-space: nowrap; background-image: url(tbl_bck10.png)" class="hierarchy"><img src="tbl_spacer.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="tbl_vjoin.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="icon_primitive.png" alt="." style="background-color: #F7F7F7; background-color: inherit" title="Primitive Data Type" class="hierarchy"/> <a href="definition-definitions.html#Definition.description" title="Definition.description : A free text natural language description of the {{title}} from the consumer's perspective.">description</a><a name="Definition.description"> </a></td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"></td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy">0..1</td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"><a href="datatypes.html#markdown">markdown</a></td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy">Natural language description of the {{title}}<br/></td></tr>
<tr style="border: 0px #F0F0F0 solid; padding:0px; vertical-align: top; background-color: white" id="ap"><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px; white-space: nowrap; background-image: url(tbl_bck10.png)" class="hierarchy"><img src="tbl_spacer.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="tbl_vjoin.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="icon_datatype.gif" alt="." style="background-color: white; background-color: inherit" title="Data Type" class="hierarchy"/> <a href="definition-definitions.html#Definition.useContext" title="Definition.useContext : The content was developed with a focus and intent of supporting the contexts that are listed. These terms may be used to assist with indexing and searching of code system definitions.">useContext</a><a name="Definition.useContext"> </a></td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"><a style="padding-left: 3px; padding-right: 3px; color: black; null" href="elementdefinition-definitions.html#ElementDefinition.isSummary" title="This element is included in summaries">Σ</a></td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy">0..*</td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"><a href="metadatatypes.html#UsageContext">UsageContext</a></td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy">Content intends to support these contexts<br/><br/></td></tr>
<tr style="border: 0px #F0F0F0 solid; padding:0px; vertical-align: top; background-color: #F7F7F7" id="aq"><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px; white-space: nowrap; background-image: url(tbl_bck10.png)" class="hierarchy"><img src="tbl_spacer.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="tbl_vjoin.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="icon_datatype.gif" alt="." style="background-color: #F7F7F7; background-color: inherit" title="Data Type" class="hierarchy"/> <a href="definition-definitions.html#Definition.jurisdiction" title="Definition.jurisdiction : A jurisdiction in which the {{title}} is intended to be used.">jurisdiction</a><a name="Definition.jurisdiction"> </a></td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"><a style="padding-left: 3px; padding-right: 3px; color: black; null" href="elementdefinition-definitions.html#ElementDefinition.isSummary" title="This element is included in summaries">Σ</a></td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy">0..*</td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"><a href="datatypes.html#CodeableConcept">CodeableConcept</a></td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy">Intended jurisdiction for {{title}} (if applicable)<br/><a href="valueset-jurisdiction.html" title="Countries and regions within which this artifact is targeted for use.">Jurisdiction ValueSet</a> (<a href="terminologies.html#extensible" title="To be conformant, the concept in this element SHALL be from the specified value set if any of the codes within the value set can apply to the concept being communicated. If the value set does not cover the concept (based on human review), alternate codings (or, data type allowing, text) may be included instead.">Extensible</a>)<br/><br/></td></tr>
<tr style="border: 0px #F0F0F0 solid; padding:0px; vertical-align: top; background-color: white" id="ar"><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px; white-space: nowrap; background-image: url(tbl_bck10.png)" class="hierarchy"><img src="tbl_spacer.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="tbl_vjoin.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="icon_datatype.gif" alt="." style="background-color: white; background-color: inherit" title="Data Type" class="hierarchy"/> <a href="definition-definitions.html#Definition.category" title="Definition.category : Partitions the {{title}} into one or more categories that can be used to filter searching, to govern access control and/or to guide system behavior.">category</a><a name="Definition.category"> </a></td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"><a style="padding-left: 3px; padding-right: 3px; color: black; null" href="elementdefinition-definitions.html#ElementDefinition.isSummary" title="This element is included in summaries">Σ</a></td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy">0..*</td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"><a href="datatypes.html#CodeableConcept">CodeableConcept</a></td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy">Partitions the {{title}} into one or more categories that can be used to filter searching, to govern access control and/or to guide system behavior.<br/><br/></td></tr>
<tr style="border: 0px #F0F0F0 solid; padding:0px; vertical-align: top; background-color: #F7F7F7" id="as"><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px; white-space: nowrap; background-image: url(tbl_bck10.png)" class="hierarchy"><img src="tbl_spacer.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="tbl_vjoin.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="icon_primitive.png" alt="." style="background-color: #F7F7F7; background-color: inherit" title="Primitive Data Type" class="hierarchy"/> <a href="definition-definitions.html#Definition.purpose" title="Definition.purpose : Explains why this {{title}} is needed and why it has been designed as it has.">purpose</a><a name="Definition.purpose"> </a></td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"></td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy">0..1</td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"><a href="datatypes.html#markdown">markdown</a></td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy">Why this {{title}} is defined<br/></td></tr>
<tr style="border: 0px #F0F0F0 solid; padding:0px; vertical-align: top; background-color: white" id="at"><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px; white-space: nowrap; background-image: url(tbl_bck10.png)" class="hierarchy"><img src="tbl_spacer.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="tbl_vjoin.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="icon_primitive.png" alt="." style="background-color: white; background-color: inherit" title="Primitive Data Type" class="hierarchy"/> <a href="definition-definitions.html#Definition.copyright" title="Definition.copyright : A copyright statement relating to the {{title}} and/or its contents. Copyright statements are generally legal restrictions on the use and publishing of the {{title}}.">copyright</a><a name="Definition.copyright"> </a></td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"></td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy">0..1</td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"><a href="datatypes.html#markdown">markdown</a></td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy">Use and/or publishing restrictions<br/></td></tr>
<tr style="border: 0px #F0F0F0 solid; padding:0px; vertical-align: top; background-color: #F7F7F7" id="au"><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px; white-space: nowrap; background-image: url(tbl_bck10.png)" class="hierarchy"><img src="tbl_spacer.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="tbl_vjoin.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="icon_primitive.png" alt="." style="background-color: #F7F7F7; background-color: inherit" title="Primitive Data Type" class="hierarchy"/> <a href="definition-definitions.html#Definition.approvalDate" title="Definition.approvalDate : The date on which the asset content was approved by the publisher. Approval happens once when the content is officially approved for usage.">approvalDate</a><a name="Definition.approvalDate"> </a></td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"></td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy">0..1</td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"><a href="datatypes.html#date">date</a></td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy">When {{title}} approved by publisher<br/></td></tr>
<tr style="border: 0px #F0F0F0 solid; padding:0px; vertical-align: top; background-color: white" id="av"><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px; white-space: nowrap; background-image: url(tbl_bck10.png)" class="hierarchy"><img src="tbl_spacer.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="tbl_vjoin.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="icon_primitive.png" alt="." style="background-color: white; background-color: inherit" title="Primitive Data Type" class="hierarchy"/> <a href="definition-definitions.html#Definition.lastReviewDate" title="Definition.lastReviewDate : The date on which the asset content was last reviewed. Review happens periodically after that, but doesn't change the original approval date.">lastReviewDate</a><a name="Definition.lastReviewDate"> </a></td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"></td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy">0..1</td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"><a href="datatypes.html#date">date</a></td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy">Last review date for the {{title}}<br/></td></tr>
<tr style="border: 0px #F0F0F0 solid; padding:0px; vertical-align: top; background-color: #F7F7F7" id="aw"><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px; white-space: nowrap; background-image: url(tbl_bck10.png)" class="hierarchy"><img src="tbl_spacer.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="tbl_vjoin.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="icon_datatype.gif" alt="." style="background-color: #F7F7F7; background-color: inherit" title="Data Type" class="hierarchy"/> <a href="definition-definitions.html#Definition.effectivePeriod" title="Definition.effectivePeriod : The period during which the {{title}} content was or is planned to be effective.">effectivePeriod</a><a name="Definition.effectivePeriod"> </a></td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"><a style="padding-left: 3px; padding-right: 3px; color: black; null" href="elementdefinition-definitions.html#ElementDefinition.isSummary" title="This element is included in summaries">Σ</a></td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy">0..1</td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"><a href="datatypes.html#Period">Period</a></td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy">The effective date range for the {{title}}<br/></td></tr>
<tr style="border: 0px #F0F0F0 solid; padding:0px; vertical-align: top; background-color: white" id="ax"><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px; white-space: nowrap; background-image: url(tbl_bck10.png)" class="hierarchy"><img src="tbl_spacer.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="tbl_vjoin.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="icon_datatype.gif" alt="." style="background-color: white; background-color: inherit" title="Data Type" class="hierarchy"/> <a href="definition-definitions.html#Definition.performerType" title="Definition.performerType : The type of individual that is expected to act upon instances of this definition.">performerType</a><a name="Definition.performerType"> </a></td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"><a style="padding-left: 3px; padding-right: 3px; color: black; null" href="elementdefinition-definitions.html#ElementDefinition.isSummary" title="This element is included in summaries">Σ</a></td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy">0..1</td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"><a href="datatypes.html#CodeableConcept">CodeableConcept</a></td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy">Desired kind of service performer<br/></td></tr>
<tr style="border: 0px #F0F0F0 solid; padding:0px; vertical-align: top; background-color: #F7F7F7" id="ay"><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px; white-space: nowrap; background-image: url(tbl_bck10.png)" class="hierarchy"><img src="tbl_spacer.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="tbl_vjoin.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="icon_datatype.gif" alt="." style="background-color: #F7F7F7; background-color: inherit" title="Data Type" class="hierarchy"/> <a href="definition-definitions.html#Definition.code" title="Definition.code : A code that identifies the specific service or action that was or is being performed.">code</a><a name="Definition.code"> </a></td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"><a style="padding-left: 3px; padding-right: 3px; color: black; null" href="elementdefinition-definitions.html#ElementDefinition.isSummary" title="This element is included in summaries">Σ</a></td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy">0..1</td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"><a href="datatypes.html#CodeableConcept">CodeableConcept</a></td><td style="vertical-align: top; text-align : left; background-color: #F7F7F7; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy">Service to be done<br/></td></tr>
<tr style="border: 0px #F0F0F0 solid; padding:0px; vertical-align: top; background-color: white" id="az"><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px; white-space: nowrap; background-image: url(tbl_bck00.png)" class="hierarchy"><img src="tbl_spacer.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="tbl_vjoin_end.png" alt="." style="background-color: inherit" class="hierarchy"/><img src="icon_reference.png" alt="." style="background-color: white; background-color: inherit" title="Reference to another Resource" class="hierarchy"/> <a href="definition-definitions.html#Definition.product" title="Definition.product : Indicates the product supplied or manipulated by this {{title}}.">product</a><a name="Definition.product"> </a></td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"><a style="padding-left: 3px; padding-right: 3px; color: black; null" href="elementdefinition-definitions.html#ElementDefinition.isSummary" title="This element is included in summaries">Σ</a></td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy">0..1</td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy"><a href="references.html#CodeableReference">CodeableReference</a>(<a href="biologicallyderivedproduct.html">BiologicallyDerivedProduct</a> | <a href="devicedefinition.html">DeviceDefinition</a> | <a href="medication.html">Medication</a> | <a href="nutritionproduct.html">NutritionProduct</a> | <a href="substance.html">Substance</a>)</td><td style="vertical-align: top; text-align : left; background-color: white; border: 0px #F0F0F0 solid; padding:0px 4px 0px 4px" class="hierarchy">Product to use/manipulate<br/></td></tr>
<tr><td colspan="5" class="hierarchy"><br/><a href="formats.html#table" title="Legend for this format"><img src="help16.png" alt="doco" style="background-color: inherit"/> Documentation for this format</a></td></tr></table>
</div>
</div>
<div id="uml">
<a name="uml"></a>
<p><b>UML Diagram</b> (<a href="formats.html#uml">Legend</a>)</p>
<div id="uml-inner">
<svg id="n98" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="386.0" height="438.0"> <defs>
<filter id="shadowB" x="0" y="0" width="200%" height="200%">
<feOffset result="offOut" in="SourceGraphic" dx="3" dy="3" />
<feColorMatrix result="matrixOut" in="offOut" type="matrix" values="0.2 0 0 0 0 0 0.2 0 0 0 0 0 0.2 0 0 0 0 0 1 0" />
<feGaussianBlur result="blurOut" in="matrixOut" stdDeviation="2" />
<feBlend in="SourceGraphic" in2="blurOut" mode="normal" />
</filter>
</defs><g id="n99"><rect id="" x="0.0" y="0.0" rx="4" ry="4" width="286.0" height="428.0" filter="url(#shadowB)" style="fill:#ffffec;stroke:black;stroke-width:1"/><line id="n100" x1="0.0" y1="28.0" x2="286.0" y2="28.0" style="stroke:dimgrey;stroke-width:1"/><text id="n101" x="143.0" y="20.0" fill="black" class="diagram-class-title diagram-class-resource">Definition<tspan class="diagram-class-title-link"> (<a id="n102" xlink:href="types.html#Base" class="diagram-class-reference" style="font-style: italic">Base</a>)</tspan> <a xlink:href="uml.html#pattern">«Pattern»</a></text><text id="n103" x="6.0" y="42.0" fill="black" class="diagram-class-detail"><a id="n104" xlink:href="definition-definitions.html#definition.url"><title>An absolute URL that is used to identify this {{title}} when it is referenced in a specification, model, design or an instance. This SHALL be a URL, SHOULD be globally unique, and SHOULD be an address at which this {{title}} is (or will be) published. The URL SHOULD include the major version of the {{title}}. For more information see [Technical and Business Versions](resource.html#versions)</title>url</a> : <a id="n105" xlink:href="datatypes.html#uri">uri</a> [0..1]</text><text id="n109" x="6.0" y="56.0" fill="black" class="diagram-class-detail"><a id="n110" xlink:href="definition-definitions.html#definition.identifier"><title>Business identifiers assigned to this {{title}} by the performer and/or other systems. These identifiers remain constant as the resource is updated and propagates from server to server</title>identifier</a> : <a id="n111" xlink:href="datatypes.html#Identifier">Identifier</a> [0..*]</text><text id="n115" x="6.0" y="70.0" fill="black" class="diagram-class-detail"><a id="n116" xlink:href="definition-definitions.html#definition.version"><title>The identifier that is used to identify this version of the {{title}} when it is referenced in a specification, model, design or instance. This is an arbitrary value managed by the {{title}} author and is not expected to be globally unique. For example, it might be a timestamp (e.g. yyyymmdd) if a managed version is not available. There is also no expectation that versions are orderable</title>version</a> : <a id="n117" xlink:href="datatypes.html#string">string</a> [0..1]</text><text id="n121" x="6.0" y="84.0" fill="black" class="diagram-class-detail"><a id="n122" xlink:href="definition-definitions.html#definition.name"><title>A natural language name identifying the {{title}}. This name should be usable as an identifier for the module by machine processing applications such as code generation</title>name</a> : <a id="n123" xlink:href="datatypes.html#string">string</a> [0..1]</text><text id="n127" x="6.0" y="98.0" fill="black" class="diagram-class-detail"><a id="n128" xlink:href="definition-definitions.html#definition.title"><title>A short, descriptive, user-friendly title for the {{title}}</title>title</a> : <a id="n129" xlink:href="datatypes.html#string">string</a> [0..1]</text><text id="n133" x="6.0" y="112.0" fill="black" class="diagram-class-detail"><a id="n134" xlink:href="definition-definitions.html#definition.derivedFromCanonical"><title>The canonical URL pointing to another FHIR-defined protocol, guideline, orderset or other definition that is adhered to in whole or in part by this definition</title>derivedFromCanonical</a> : <a id="n135" xlink:href="datatypes.html#canonical">canonical</a> [0..*] « <a id="n136" xlink:href="definition.html#Definition">Definition</a> »</text><text id="n141" x="6.0" y="126.0" fill="black" class="diagram-class-detail"><a id="n142" xlink:href="definition-definitions.html#definition.derivedFromUri"><title>The URL pointing to an externally-defined protocol, guideline, orderset or other definition that is adhered to in whole or in part by this definition</title>derivedFromUri</a> : <a id="n143" xlink:href="datatypes.html#uri">uri</a> [0..*]</text><text id="n147" x="6.0" y="140.0" fill="black" class="diagram-class-detail"><a id="n148" xlink:href="definition-definitions.html#definition.partOf"><title>A larger definition of which this particular definition is a component or step</title>partOf</a> : <a id="n149" xlink:href="datatypes.html#canonical">canonical</a> [0..*] « <a id="n150" xlink:href="definition.html#Definition">Definition</a> »</text><text id="n155" x="6.0" y="154.0" fill="black" class="diagram-class-detail"><a id="n156" xlink:href="definition-definitions.html#definition.status"><title>The current state of the {{title}} (this element modifies the meaning of other elements)</title>status</a> : <a id="n157" xlink:href="datatypes.html#code">code</a> [1..1] « <a id="n158" xlink:href="valueset-publication-status.html"><title id="n159">The lifecycle status of an artifact. (Strength=Required)</title>PublicationStatus</a>! »</text><text id="n165" x="6.0" y="168.0" fill="black" class="diagram-class-detail"><a id="n166" xlink:href="definition-definitions.html#definition.experimental"><title>A flag to indicate that this {{title}} is authored for testing purposes (or education/evaluation/marketing), and is not intended to be used for genuine usage (this element modifies the meaning of other elements)</title>experimental</a> : <a id="n167" xlink:href="datatypes.html#boolean">boolean</a> [0..1]</text><text id="n171" x="6.0" y="182.0" fill="black" class="diagram-class-detail"><a id="n172" xlink:href="definition-definitions.html#definition.subject_x_"><title>A code or group definition that describes the intended subject of instantiations of this definition</title>subject[x]</a> : <a id="n173" xlink:href="types.html#DataType">DataType</a> [0..1] « <a id="n174" xlink:href="datatypes.html#CodeableConcept">CodeableConcept</a>|<a id="n175" xlink:href="references.html#Reference">Reference</a>(<a id="n176" xlink:href="group.html#Group">Group</a>) »</text><text id="n183" x="6.0" y="196.0" fill="black" class="diagram-class-detail"><a id="n184" xlink:href="definition-definitions.html#definition.date"><title>For draft definitions, indicates the date of initial creation. For active definitions, represents the date of activation. For withdrawn definitions, indicates the date of withdrawal</title>date</a> : <a id="n185" xlink:href="datatypes.html#dateTime">dateTime</a> [0..1]</text><text id="n189" x="6.0" y="210.0" fill="black" class="diagram-class-detail"><a id="n190" xlink:href="definition-definitions.html#definition.publisher"><title>Helps establish the "authority/credibility" of the {{title}}. May also allow for contact</title>publisher</a> : <a id="n191" xlink:href="references.html#Reference">Reference</a> [0..1] « <a id="n192" xlink:href="practitioner.html#Practitioner">Practitioner</a>|<a id="n193" xlink:href="practitionerrole.html#PractitionerRole">PractitionerRole</a>|</text><text id="n194" x="26.0" y="224.0" fill="black" class="diagram-class-detail"> <a id="n195" xlink:href="organization.html#Organization">Organization</a> »</text><text id="n203" x="6.0" y="238.0" fill="black" class="diagram-class-detail"><a id="n204" xlink:href="definition-definitions.html#definition.contact"><title>Contact details to assist a user in finding and communicating with the publisher</title>contact</a> : <a id="n205" xlink:href="metadatatypes.html#ContactDetail">ContactDetail</a> [0..*]</text><text id="n209" x="6.0" y="252.0" fill="black" class="diagram-class-detail"><a id="n210" xlink:href="definition-definitions.html#definition.description"><title>A free text natural language description of the {{title}} from the consumer's perspective</title>description</a> : <a id="n211" xlink:href="datatypes.html#markdown">markdown</a> [0..1]</text><text id="n215" x="6.0" y="266.0" fill="black" class="diagram-class-detail"><a id="n216" xlink:href="definition-definitions.html#definition.useContext"><title>The content was developed with a focus and intent of supporting the contexts that are listed. These terms may be used to assist with indexing and searching of code system definitions</title>useContext</a> : <a id="n217" xlink:href="metadatatypes.html#UsageContext">UsageContext</a> [0..*]</text><text id="n221" x="6.0" y="280.0" fill="black" class="diagram-class-detail"><a id="n222" xlink:href="definition-definitions.html#definition.jurisdiction"><title>A jurisdiction in which the {{title}} is intended to be used</title>jurisdiction</a> : <a id="n223" xlink:href="datatypes.html#CodeableConcept">CodeableConcept</a> [0..*] « <a id="n224" xlink:href="valueset-jurisdiction.html"><title id="n225">Countries and regions within which this artifact is targeted for use. (Strength=Extensible)</title>JurisdictionValueSet</a>+ »</text><text id="n231" x="6.0" y="294.0" fill="black" class="diagram-class-detail"><a id="n232" xlink:href="definition-definitions.html#definition.category"><title>Partitions the {{title}} into one or more categories that can be used to filter searching, to govern access control and/or to guide system behavior</title>category</a> : <a id="n233" xlink:href="datatypes.html#CodeableConcept">CodeableConcept</a> [0..*]</text><text id="n237" x="6.0" y="308.0" fill="black" class="diagram-class-detail"><a id="n238" xlink:href="definition-definitions.html#definition.purpose"><title>Explains why this {{title}} is needed and why it has been designed as it has</title>purpose</a> : <a id="n239" xlink:href="datatypes.html#markdown">markdown</a> [0..1]</text><text id="n243" x="6.0" y="322.0" fill="black" class="diagram-class-detail"><a id="n244" xlink:href="definition-definitions.html#definition.copyright"><title>A copyright statement relating to the {{title}} and/or its contents. Copyright statements are generally legal restrictions on the use and publishing of the {{title}}</title>copyright</a> : <a id="n245" xlink:href="datatypes.html#markdown">markdown</a> [0..1]</text><text id="n249" x="6.0" y="336.0" fill="black" class="diagram-class-detail"><a id="n250" xlink:href="definition-definitions.html#definition.approvalDate"><title>The date on which the asset content was approved by the publisher. Approval happens once when the content is officially approved for usage</title>approvalDate</a> : <a id="n251" xlink:href="datatypes.html#date">date</a> [0..1]</text><text id="n255" x="6.0" y="350.0" fill="black" class="diagram-class-detail"><a id="n256" xlink:href="definition-definitions.html#definition.lastReviewDate"><title>The date on which the asset content was last reviewed. Review happens periodically after that, but doesn't change the original approval date</title>lastReviewDate</a> : <a id="n257" xlink:href="datatypes.html#date">date</a> [0..1]</text><text id="n261" x="6.0" y="364.0" fill="black" class="diagram-class-detail"><a id="n262" xlink:href="definition-definitions.html#definition.effectivePeriod"><title>The period during which the {{title}} content was or is planned to be effective</title>effectivePeriod</a> : <a id="n263" xlink:href="datatypes.html#Period">Period</a> [0..1]</text><text id="n267" x="6.0" y="378.0" fill="black" class="diagram-class-detail"><a id="n268" xlink:href="definition-definitions.html#definition.performerType"><title>The type of individual that is expected to act upon instances of this definition</title>performerType</a> : <a id="n269" xlink:href="datatypes.html#CodeableConcept">CodeableConcept</a> [0..1]</text><text id="n273" x="6.0" y="392.0" fill="black" class="diagram-class-detail"><a id="n274" xlink:href="definition-definitions.html#definition.code"><title>A code that identifies the specific service or action that was or is being performed</title>code</a> : <a id="n275" xlink:href="datatypes.html#CodeableConcept">CodeableConcept</a> [0..1]</text><text id="n279" x="6.0" y="406.0" fill="black" class="diagram-class-detail"><a id="n280" xlink:href="definition-definitions.html#definition.product"><title>Indicates the product supplied or manipulated by this {{title}}</title>product</a> : <a id="n281" xlink:href="references.html#CodeableReference">CodeableReference</a> [0..1] « <a id="n282" xlink:href="biologicallyderivedproduct.html#BiologicallyDerivedProduct">BiologicallyDerivedProduct</a>|</text><text id="n283" x="26.0" y="420.0" fill="black" class="diagram-class-detail"> <a id="n284" xlink:href="devicedefinition.html#DeviceDefinition">DeviceDefinition</a>|<a id="n285" xlink:href="medication.html#Medication">Medication</a>|<a id="n286" xlink:href="nutritionproduct.html#NutritionProduct">NutritionProduct</a>|<a id="n287" xlink:href="substance.html#Substance">Substance</a> »</text></g></svg>
</div>
</div>
</div>
</div>
<p> </p>
<p>Alternate definitions: Master Definition <a href="definition.xml.html">XML</a> + <a href="definition.json.html">JSON</a>. </p>
<a name="tx"></a>
<h3>
Terminology Bindings
</h3>
<table class="grid">
<tr><th>Path</th><th>Definition</th><th>Type</th><th>Reference</th></tr>
<tr><td valign="top" title="PublicationStatus">Definition.status </td><td valign="top"><p>The lifecycle status of an artifact.</p>
</td><td><a href="terminologies.html#required">Required</a></td><td valign="top"><a href="valueset-publication-status.html">PublicationStatus</a><!-- b --></td> </tr>
<tr><td valign="top" title="DefinitionSubject">Definition.subject[x] </td><td valign="top">Codes identifying the type of subject intended to be the recpient or focus of the defined action. These should ideally be consistent across definition resources.</td><td>Unknown</td><td valign="top">No details provided yet</td> </tr>
<tr><td valign="top" title="Jurisdiction ValueSet">Definition.jurisdiction </td><td valign="top"><p>This value set defines a base set of codes for country, country subdivision and region for indicating where a resource is intended to be used.</p>
<p>Note: The codes for countries and country subdivisions are taken from <a href="https://www.iso.org/iso-3166-country-codes.html">ISO 3166</a> while the codes for "supra-national" regions are from <a href="http://unstats.un.org/unsd/methods/m49/m49.htm">UN Standard country or area codes for statistical use (M49)</a>.</p>
</td><td><a href="terminologies.html#extensible">Extensible</a></td><td valign="top"><a href="valueset-jurisdiction.html">JurisdictionValueSet</a><!-- b --></td> </tr>
<tr><td valign="top" title="PerformerType">Definition.performerType </td><td valign="top">Identifies types of practitioners, devices or other agents that are intended to perform a defined action. While the detailed constraints of relevant agents will vary by resource, some degree of consistency around recommended codes across request and definition resources would be desirable.</td><td>Unknown</td><td valign="top">No details provided yet</td> </tr>
</table>
<p> </p>
<a name="extensions"> </a>
<h2>Definition extensions</h2>
<p>
Not all resources that adhere to the Definition pattern will necessarily include all pattern elements as 'core' elements. This guide defines
extensions for certain pattern elements that may be relevant but are not supported widely enough for direct inclusion in some resources.
The extensions relevant for 'definition' resources can be found in the <a href="workflow-extensions.html">Workflow pattern extensions</a> section
of this specification.
</p>
<a name="statemachine"></a>
<h2>State Machine</h2>
<p>
The following diagram shows the "typical" state machine diagram for resources following the Definition
pattern. Note that not all resources will support all states, some resources may choose different names
for certain states and some resources may introduce sub-states to the listed states. As well, additional
transitions may be supported, including from terminal nodes (e.g. from "withdrawn" back to "active").
That said, most resources should align with this state machine fairly well.
</p>
<img src="definition-state-machine.svg" alt="Typical state machine diagram for resources following
the Definition pattern"/>
<a name=\"mappings\"></a>
<h3>Mappings</h3>
<table class="lmap"> <tr> <th></th>
<td><a title="uri [0..1]" href="definition-definitions.html#Definition.url">url</a></td>
<td><a title="Identifier [0..*]" href="definition-definitions.html#Definition.identifier">identifier</a></td>
<td><a title="string [0..1]" href="definition-definitions.html#Definition.version">version</a></td>
<td><a title="string [0..1]" href="definition-definitions.html#Definition.name">name</a></td>
<td><a title="string [0..1]" href="definition-definitions.html#Definition.title">title</a></td>
<td><a title="canonical(Definition) [0..*]" href="definition-definitions.html#Definition.derivedFromCanonical">derivedFromCanonical</a></td>
<td><a title="uri [0..*]" href="definition-definitions.html#Definition.derivedFromUri">derivedFromUri</a></td>
<td><a title="canonical(Definition) [0..*]" href="definition-definitions.html#Definition.partOf">partOf</a></td>
<td><a title="code [1..1]" href="definition-definitions.html#Definition.status">status</a></td>
<td><a title="boolean [0..1]" href="definition-definitions.html#Definition.experimental">experimental</a></td>
<td><a title="CodeableConcept|Reference(Group) [0..1]" href="definition-definitions.html#Definition.subject[x]">subject[x]</a></td>
<td><a title="dateTime [0..1]" href="definition-definitions.html#Definition.date">date</a></td>
<td><a title="Reference(Practitioner|PractitionerRole|Organization) [0..1]" href="definition-definitions.html#Definition.publisher">publisher</a></td>
<td><a title="ContactDetail [0..*]" href="definition-definitions.html#Definition.contact">contact</a></td>
<td><a title="markdown [0..1]" href="definition-definitions.html#Definition.description">description</a></td>
<td><a title="UsageContext [0..*]" href="definition-definitions.html#Definition.useContext">useContext</a></td>
<td><a title="CodeableConcept [0..*]" href="definition-definitions.html#Definition.jurisdiction">jurisdiction</a></td>
<td><a title="CodeableConcept [0..*]" href="definition-definitions.html#Definition.category">category</a></td>
<td><a title="markdown [0..1]" href="definition-definitions.html#Definition.purpose">purpose</a></td>
<td><a title="markdown [0..1]" href="definition-definitions.html#Definition.copyright">copyright</a></td>
<td><a title="date [0..1]" href="definition-definitions.html#Definition.approvalDate">approvalDate</a></td>
<td><a title="date [0..1]" href="definition-definitions.html#Definition.lastReviewDate">lastReviewDate</a></td>
<td><a title="Period [0..1]" href="definition-definitions.html#Definition.effectivePeriod">effectivePeriod</a></td>
<td><a title="CodeableConcept [0..1]" href="definition-definitions.html#Definition.performerType">performerType</a></td>
<td><a title="CodeableConcept [0..1]" href="definition-definitions.html#Definition.code">code</a></td>
<td><a title="CodeableReference(BiologicallyDerivedProduct|DeviceDefinition|Medication|NutritionProduct|Substance) [0..1]" href="definition-definitions.html#Definition.product">product</a></td>
</tr>
<tr>
<td><a href="activitydefinition.html">ActivityDefinition</a></td>
<td style="background-color: #ffebe6" title="ActivityDefinition.url : uri [0..1]
Maximum Cardinality differs (Pattern: *; Resource: 1)
activity definition does not contain the recommended logical text for Short (Pattern: Logical canonical URL to reference this activity definition (globally unique); Resource: Canonical identifier for this activity definition, represented as a URI (globally unique))
activity definition does not contain the recommended logical text for Definition (Pattern: An absolute URL that is used to identify this activity definition when it is referenced in a specification, model, design or an instance. This SHALL be a URL, SHOULD be globally unique, and SHOULD be an address at which this activity definition is (or will be) published. The URL SHOULD include the major version of the activity definition. For more information see(resource.html#versions).; Resource: An absolute URI that is used to identify this activity definition when it is referenced in a specification, model, design or an instance; also called its canonical identifier. This SHOULD be globally unique and SHOULD be a literal address at which an authoritative instance of this activity definition is (or will be) published. This URL can be the target of a canonical reference. It SHALL remain the same when the activity definition is stored on different servers.)
activity definition does not contain the recommended logical text for Comment (Pattern: Can be a urn:uuid: or a urn:oid:, but real http: addresses are preferred. This is the URI that will be used when making canonical references to this resource.; Resource: Can be a urn:uuid: or a urn:oid: but real http: addresses are preferred. Multiple instances may share the same URL if they have a distinct version.
The determination of when to create a new version of a resource (same url, new version) vs. defining a new artifact is up to the author. Considerations for making this decision are found in [Technical and Business Versions](resource.html#versions).
In some cases, the resource can no longer be found at the stated url, but the url itself cannot change. Implementations can use the [meta.source](resource.html#meta) element to indicate where the current master source of the resource can be found.)">1 C</td>
<td style="background-color: #ffffff" title="ActivityDefinition.identifier : Identifier [0..*]
activity definition does not contain the recommended logical text for Short (Pattern: Business Identifier for activity definition; Resource: Additional identifier for the activity definition)
activity definition does not contain the recommended logical text for Definition (Pattern: Business identifiers assigned to this activity definition by the performer and/or other systems. These identifiers remain constant as the resource is updated and propagates from server to server.; Resource: A formal identifier that is used to identify this activity definition when it is represented in other formats, or referenced in a specification, model, design or an instance.)
activity definition does not contain the recommended logical text for Requirements (Pattern: Allows identification of the activity definition as it is known by various participating systems and in a way that remains consistent across servers.; Resource: Allows externally provided and/or usable business identifiers to be easily associated with the module.)
activity definition does not contain the recommended logical text for Comment (Pattern: Note: This is a business identifier, not a resource identifier (see(resource.html#identifiers)). It is best practice for the identifier to only appear on a single resource instance, however business practices may occasionally dictate that multiple resource instances with the same identifier can exist - possibly even with different resource types. For example, multiple Patient and a Person resource instance might share the same social insurance number.; Resource: Typically, this is used for identifiers that can go in an HL7 V3 II (instance identifier) data type, and can then identify this activity definition outside of FHIR, where it is not possible to use the logical URI.)">1 </td>
<td style="background-color: #ffebe6" title="ActivityDefinition.version : string [0..1]
Maximum Cardinality differs (Pattern: *; Resource: 1)
activity definition does not contain the recommended logical text for Definition (Pattern: The identifier that is used to identify this version of the activity definition when it is referenced in a specification, model, design or instance. This is an arbitrary value managed by the activity definition author and is not expected to be globally unique. For example, it might be a timestamp (e.g. yyyymmdd) if a managed version is not available. There is also no expectation that versions are orderable.; Resource: The identifier that is used to identify this version of the activity definition when it is referenced in a specification, model, design or instance. This is an arbitrary value managed by the activity definition author and is not expected to be globally unique. For example, it might be a timestamp (e.g. yyyymmdd) if a managed version is not available. There is also no expectation that versions can be placed in a lexicographical sequence. To provide a version consistent with the Decision Support Service specification, use the format Major.Minor.Revision (e.g. 1.0.0). For more information on versioning knowledge assets, refer to the Decision Support Service specification. Note that a version is required for non-experimental active assets.)
activity definition does not contain the recommended logical text for Comment (Pattern: There may be multiple different instances of a activity definition that have the same identifier but different versions.; Resource: There may be different activity definition instances that have the same identifier but different versions. The version can be appended to the url in a reference to allow a reference to a particular business version of the activity definition with the format [url]|[version]. The version SHOULD NOT contain a '#' - see [Business Version](resource.html#bv-format).)">1 C</td>
<td style="background-color: #ffebe6" title="ActivityDefinition.name : string [0..1]
Maximum Cardinality differs (Pattern: *; Resource: 1)
activity definition does not contain the recommended logical text for Short (Pattern: Name for this activity definition (Computer friendly); Resource: Name for this activity definition (computer friendly))
activity definition does not contain the recommended logical text for Requirements (Pattern: Supports code generation.; Resource: Support human navigation and code generation.)">1 C</td>
<td style="background-color: #ffebe6" title="ActivityDefinition.title : string [0..1]
Maximum Cardinality differs (Pattern: *; Resource: 1)
activity definition does not contain the recommended logical text for Short (Pattern: Name for this activity definition (Human friendly); Resource: Name for this activity definition (human friendly))">1 C</td>
<td style="background-color: #f2f2f2" title=""> </td>
<td style="background-color: #f2f2f2" title=""> </td>
<td style="background-color: #f2f2f2" title=""> </td>
<td style="background-color: #ffebe6" title="ActivityDefinition.status : code [1..1]
Maximum Cardinality differs (Pattern: *; Resource: 1)
activity definition does not contain the recommended logical text for Definition (Pattern: The current state of the activity definition.; Resource: The status of this activity definition. Enables tracking the life-cycle of the content.)
activity definition does not contain the recommended logical text for Comment (Pattern: A nominal state-transition diagram can be found in the] documentation
Unknown does not represent "other" - one of the defined statuses must apply. Unknown is used when the authoring system is not sure what the current status is.; Resource: Allows filtering of activity definitions that are appropriate for use versus not.)">1 C</td>
<td style="background-color: #ffebe6" title="ActivityDefinition.experimental : boolean [0..1]
Maximum Cardinality differs (Pattern: *; Resource: 1)
activity definition does not contain the recommended logical text for Short (Pattern: If for testing purposes, not real usage; Resource: For testing purposes, not real usage)
activity definition does not contain the recommended logical text for Definition (Pattern: A flag to indicate that this activity definition is authored for testing purposes (or education/evaluation/marketing), and is not intended to be used for genuine usage.; Resource: A Boolean value to indicate that this activity definition is authored for testing purposes (or education/evaluation/marketing) and is not intended to be used for genuine usage.)
activity definition does not contain the recommended logical text for Requirements (Pattern: Enables experimental content to be developed following the same life-cycle as a production-level activity definition would.; Resource: Enables experimental content to be developed following the same lifecycle that would be used for a production-level activity definition.)
activity definition does not contain the recommended logical text for Comment (Pattern: Allows filtering of activity definition that are appropriate for use vs. not.; Resource: Allows filtering of activity definitions that are appropriate for use versus not.)">1 C</td>
<td style="background-color: #f2f2f2" title=""> </td>
<td style="background-color: #ffebe6" title="ActivityDefinition.date : dateTime [0..1]
Maximum Cardinality differs (Pattern: *; Resource: 1)
activity definition does not contain the recommended logical text for Short (Pattern: Date status first applied; Resource: Date last changed)
activity definition does not contain the recommended logical text for Definition (Pattern: For draft definitions, indicates the date of initial creation. For active definitions, represents the date of activation. For withdrawn definitions, indicates the date of withdrawal.; Resource: The date (and optionally time) when the activity definition was published. The date must change when the business version changes and it must change if the status code changes. In addition, it should change when the substantive content of the activity definition changes.)">1 C</td>
<td style="background-color: #ffebe6" title="ActivityDefinition.publisher : string [0..1]
Maximum Cardinality differs (Pattern: *; Resource: 1)
Resource does not types that are part of the pattern (Pattern: null; Resource: string)
Resource supports types that are not part of the pattern (Pattern: null; Resource: string)
activity definition does not contain the recommended logical text for Short (Pattern: The name of the individual or organization that published the activity definition; Resource: Name of the publisher/steward (organization or individual))
activity definition does not contain the recommended logical text for Definition (Pattern: Helps establish the "authority/credibility" of the activity definition. May also allow for contact.; Resource: The name of the organization or individual responsible for the release and ongoing maintenance of the activity definition.)
activity definition does not contain the recommended logical text for Requirements (Pattern: Usually an organization, but may be an individual. The publisher (or steward) of the activity definition is the organization or individual primarily responsible for the maintenance and upkeep of the activity definition. This is not necessarily the same individual or organization that developed and initially authored the content. The publisher is the primary point of contact for questions or issues with the activity definition. This item SHOULD be populated unless the information is available from context.; Resource: Helps establish the "authority/credibility" of the activity definition. May also allow for contact.)">1 TC</td>
<td style="background-color: #ffffff" title="ActivityDefinition.contact : ContactDetail [0..*]">1 </td>
<td style="background-color: #ffebe6" title="ActivityDefinition.description : markdown [0..1]
Maximum Cardinality differs (Pattern: *; Resource: 1)
activity definition does not contain the recommended logical text for Definition (Pattern: A free text natural language description of the activity definition from the consumer's perspective.; Resource: A free text natural language description of the activity definition from a consumer's perspective.)
activity definition does not contain the recommended logical text for Comment (Pattern: This description can be used to capture details such as comments about misuse, instructions for clinical use and interpretation, literature references, examples from the paper world, etc. It is not a rendering of the module as conveyed in the text field of the resource itself. This item SHOULD be populated unless the information is available from context.; Resource: This description can be used to capture details such as comments about misuse, instructions for clinical use and interpretation, literature references, examples from the paper world, etc. It is not a rendering of the activity definition as conveyed in the 'text' field of the resource itself. This item SHOULD be populated unless the information is available from context (e.g. the language of the activity definition is presumed to be the predominant language in the place the activity definition was created).)">1 C</td>
<td style="background-color: #ffffff" title="ActivityDefinition.useContext : UsageContext [0..*]
activity definition does not contain the recommended logical text for Short (Pattern: Content intends to support these contexts; Resource: The context that the content is intended to support)
activity definition does not contain the recommended logical text for Definition (Pattern: The content was developed with a focus and intent of supporting the contexts that are listed. These terms may be used to assist with indexing and searching of code system definitions.; Resource: The content was developed with a focus and intent of supporting the contexts that are listed. These contexts may be general categories (gender, age, ...) or may be references to specific programs (insurance plans, studies, ...) and may be used to assist with indexing and searching for appropriate activity definition instances.)
activity definition does not contain the recommended logical text for Comment (Pattern: When multiple usageContexts are specified, there is no expectation for whether all or any of the contexts apply.; Resource: When multiple useContexts are specified, there is no expectation that all or any of the contexts apply.)">1 </td>
<td style="background-color: #ffffff" title="ActivityDefinition.jurisdiction : CodeableConcept [0..*]
activity definition does not contain the recommended logical text for Definition (Pattern: A jurisdiction in which the activity definition is intended to be used.; Resource: A legal or geographic region in which the activity definition is intended to be used.)">1 </td>
<td style="background-color: #f2f2f2" title=""> </td>
<td style="background-color: #ffebe6" title="ActivityDefinition.purpose : markdown [0..1]
Maximum Cardinality differs (Pattern: *; Resource: 1)
activity definition does not contain the recommended logical text for Definition (Pattern: Explains why this activity definition is needed and why it has been designed as it has.; Resource: Explanation of why this activity definition is needed and why it has been designed as it has.)
activity definition does not contain the recommended logical text for Comment (Pattern: This element does not describe the usage of the activity definition. Rather it is for traceability of ''why'' the resource is either needed or ''why'' it is defined as it is. This may be used to point to source materials or specifications that drove the structure of this activity definition.; Resource: This element does not describe the usage of the activity definition. Instead, it provides traceability of ''why'' the resource is either needed or ''why'' it is defined as it is. This may be used to point to source materials or specifications that drove the structure of this activity definition.)">1 C</td>
<td style="background-color: #ffebe6" title="ActivityDefinition.copyright : markdown [0..1]
Maximum Cardinality differs (Pattern: *; Resource: 1)
activity definition does not contain the recommended logical text for Requirements (Pattern: Consumers of the activity definition must be able to determine any legal restrictions on the use of the artifact and/or its content.; Resource: Consumers must be able to determine any legal restrictions on the use of the activity definition and/or its content.)">1 C</td>
<td style="background-color: #ffebe6" title="ActivityDefinition.approvalDate : date [0..1]
Maximum Cardinality differs (Pattern: *; Resource: 1)
activity definition does not contain the recommended logical text for Short (Pattern: When activity definition approved by publisher; Resource: When the activity definition was approved by publisher)
activity definition does not contain the recommended logical text for Definition (Pattern: The date on which the asset content was approved by the publisher. Approval happens once when the content is officially approved for usage.; Resource: The date on which the resource content was approved by the publisher. Approval happens once when the content is officially approved for usage.)
activity definition does not contain the recommended logical text for Comment (Pattern: The date may be more recent than the approval date because of minor changes / editorial corrections.; Resource: The 'date' element may be more recent than the approval date because of minor changes or editorial corrections.)">1 C</td>
<td style="background-color: #ffebe6" title="ActivityDefinition.lastReviewDate : date [0..1]
Maximum Cardinality differs (Pattern: *; Resource: 1)
activity definition does not contain the recommended logical text for Short (Pattern: Last review date for the activity definition; Resource: When the activity definition was last reviewed)
activity definition does not contain the recommended logical text for Definition (Pattern: The date on which the asset content was last reviewed. Review happens periodically after that, but doesn't change the original approval date.; Resource: The date on which the resource content was last reviewed. Review happens periodically after approval but does not change the original approval date.)
activity definition does not contain the recommended logical text for Comment (Pattern: If specified, this is usually after the approval date.; Resource: If specified, this date follows the original approval date.)">1 C</td>
<td style="background-color: #ffebe6" title="ActivityDefinition.effectivePeriod : Period [0..1]
Maximum Cardinality differs (Pattern: *; Resource: 1)
activity definition does not contain the recommended logical text for Short (Pattern: The effective date range for the activity definition; Resource: When the activity definition is expected to be used)
activity definition does not contain the recommended logical text for Definition (Pattern: The period during which the activity definition content was or is planned to be effective.; Resource: The period during which the activity definition content was or is planned to be in active use.)
activity definition does not contain the recommended logical text for Comment (Pattern: The effective period for a activity definition determines when the content is applicable for usage and is independent of publication and review dates. For example, a measure intended to be used for the year 2016 would be published in 2015.; Resource: The effective period for a activity definition determines when the content is applicable for usage and is independent of publication and review dates. For example, a measure intended to be used for the year 2016 might be published in 2015.)">1 C</td>
<td style="background-color: #f2f2f2" title=""> </td>
<td style="background-color: #f2f2f2" title=""> </td>
<td style="background-color: #f2f2f2" title=""> </td>
</tr>
<tr>
<td><a href="chargeitemdefinition.html">ChargeItemDefinition</a></td>
<td style="background-color: #ffebe6" title="ChargeItemDefinition.url : uri [1..1]
Minimum Cardinality differs (Pattern: 0; Resource: 1)
Maximum Cardinality differs (Pattern: *; Resource: 1)
charge item definition does not contain the recommended logical text for Short (Pattern: Logical canonical URL to reference this charge item definition (globally unique); Resource: Canonical identifier for this charge item definition, represented as a URI (globally unique))
charge item definition does not contain the recommended logical text for Definition (Pattern: An absolute URL that is used to identify this charge item definition when it is referenced in a specification, model, design or an instance. This SHALL be a URL, SHOULD be globally unique, and SHOULD be an address at which this charge item definition is (or will be) published. The URL SHOULD include the major version of the charge item definition. For more information see(resource.html#versions).; Resource: An absolute URI that is used to identify this charge item definition when it is referenced in a specification, model, design or an instance; also called its canonical identifier. This SHOULD be globally unique and SHOULD be a literal address at which an authoritative instance of this charge item definition is (or will be) published. This URL can be the target of a canonical reference. It SHALL remain the same when the charge item definition is stored on different servers.)
charge item definition does not contain the recommended logical text for Comment (Pattern: Can be a urn:uuid: or a urn:oid:, but real http: addresses are preferred. This is the URI that will be used when making canonical references to this resource.; Resource: Can be a urn:uuid: or a urn:oid: but real http: addresses are preferred. Multiple instances may share the same URL if they have a distinct version.
The determination of when to create a new version of a resource (same url, new version) vs. defining a new artifact is up to the author. Considerations for making this decision are found in [Technical and Business Versions](resource.html#versions).
In some cases, the resource can no longer be found at the stated url, but the url itself cannot change. Implementations can use the [meta.source](resource.html#meta) element to indicate where the current master source of the resource can be found.)">1 C</td>
<td style="background-color: #ffffff" title="ChargeItemDefinition.identifier : Identifier [0..*]
charge item definition does not contain the recommended logical text for Short (Pattern: Business Identifier for charge item definition; Resource: Additional identifier for the charge item definition)
charge item definition does not contain the recommended logical text for Definition (Pattern: Business identifiers assigned to this charge item definition by the performer and/or other systems. These identifiers remain constant as the resource is updated and propagates from server to server.; Resource: A formal identifier that is used to identify this charge item definition when it is represented in other formats, or referenced in a specification, model, design or an instance.)
charge item definition does not contain the recommended logical text for Requirements (Pattern: Allows identification of the charge item definition as it is known by various participating systems and in a way that remains consistent across servers.; Resource: Allows externally provided and/or usable business identifiers to be easily associated with the module.)
charge item definition does not contain the recommended logical text for Comment (Pattern: Note: This is a business identifier, not a resource identifier (see(resource.html#identifiers)). It is best practice for the identifier to only appear on a single resource instance, however business practices may occasionally dictate that multiple resource instances with the same identifier can exist - possibly even with different resource types. For example, multiple Patient and a Person resource instance might share the same social insurance number.; Resource: Typically, this is used for identifiers that can go in an HL7 V3 II (instance identifier) data type, and can then identify this charge item definition outside of FHIR, where it is not possible to use the logical URI.)">1 </td>
<td style="background-color: #ffebe6" title="ChargeItemDefinition.version : string [0..1]
Maximum Cardinality differs (Pattern: *; Resource: 1)
charge item definition does not contain the recommended logical text for Definition (Pattern: The identifier that is used to identify this version of the charge item definition when it is referenced in a specification, model, design or instance. This is an arbitrary value managed by the charge item definition author and is not expected to be globally unique. For example, it might be a timestamp (e.g. yyyymmdd) if a managed version is not available. There is also no expectation that versions are orderable.; Resource: The identifier that is used to identify this version of the charge item definition when it is referenced in a specification, model, design or instance. This is an arbitrary value managed by the charge item definition author and is not expected to be globally unique. For example, it might be a timestamp (e.g. yyyymmdd) if a managed version is not available. There is also no expectation that versions can be placed in a lexicographical sequence. To provide a version consistent with the Decision Support Service specification, use the format Major.Minor.Revision (e.g. 1.0.0). For more information on versioning knowledge assets, refer to the Decision Support Service specification. Note that a version is required for non-experimental active assets.)
charge item definition does not contain the recommended logical text for Comment (Pattern: There may be multiple different instances of a charge item definition that have the same identifier but different versions.; Resource: There may be different charge item definition instances that have the same identifier but different versions. The version can be appended to the url in a reference to allow a reference to a particular business version of the charge item definition with the format [url]|[version]. The version SHOULD NOT contain a '#' - see [Business Version](resource.html#bv-format).)">1 C</td>
<td style="background-color: #ffebe6" title="ChargeItemDefinition.name : string [0..1]
Maximum Cardinality differs (Pattern: *; Resource: 1)
charge item definition does not contain the recommended logical text for Short (Pattern: Name for this charge item definition (Computer friendly); Resource: Name for this charge item definition (computer friendly))
charge item definition does not contain the recommended logical text for Definition (Pattern: A natural language name identifying the charge item definition. This name should be usable as an identifier for the module by machine processing applications such as code generation.; Resource: A natural language name identifying the ChargeItemDefinition. This name should be usable as an identifier for the module by machine processing applications such as code generation.)
charge item definition does not contain the recommended logical text for Requirements (Pattern: Supports code generation.; Resource: Support human navigation and code generation.)">1 C</td>
<td style="background-color: #ffebe6" title="ChargeItemDefinition.title : string [0..1]
Maximum Cardinality differs (Pattern: *; Resource: 1)
charge item definition does not contain the recommended logical text for Short (Pattern: Name for this charge item definition (Human friendly); Resource: Name for this charge item definition (human friendly))">1 C</td>
<td style="background-color: #f2f2f2" title=""> </td>
<td style="background-color: #f2f2f2" title=""> </td>
<td style="background-color: #f2f2f2" title=""> </td>
<td style="background-color: #ffebe6" title="ChargeItemDefinition.status : code [1..1]
Maximum Cardinality differs (Pattern: *; Resource: 1)
charge item definition does not contain the recommended logical text for Definition (Pattern: The current state of the charge item definition.; Resource: The current state of the ChargeItemDefinition.)
charge item definition does not contain the recommended logical text for Comment (Pattern: A nominal state-transition diagram can be found in the] documentation
Unknown does not represent "other" - one of the defined statuses must apply. Unknown is used when the authoring system is not sure what the current status is.; Resource: Allows filtering of charge item definitions that are appropriate for use versus not.)">1 C</td>
<td style="background-color: #ffebe6" title="ChargeItemDefinition.experimental : boolean [0..1]
Maximum Cardinality differs (Pattern: *; Resource: 1)
charge item definition does not contain the recommended logical text for Short (Pattern: If for testing purposes, not real usage; Resource: For testing purposes, not real usage)
charge item definition does not contain the recommended logical text for Definition (Pattern: A flag to indicate that this charge item definition is authored for testing purposes (or education/evaluation/marketing), and is not intended to be used for genuine usage.; Resource: A Boolean value to indicate that this charge item definition is authored for testing purposes (or education/evaluation/marketing) and is not intended to be used for genuine usage.)
charge item definition does not contain the recommended logical text for Requirements (Pattern: Enables experimental content to be developed following the same life-cycle as a production-level charge item definition would.; Resource: Enables experimental content to be developed following the same lifecycle that would be used for a production-level charge item definition.)
charge item definition does not contain the recommended logical text for Comment (Pattern: Allows filtering of charge item definition that are appropriate for use vs. not.; Resource: Allows filtering of charge item definitions that are appropriate for use versus not.)">1 C</td>
<td style="background-color: #f2f2f2" title=""> </td>
<td style="background-color: #ffebe6" title="ChargeItemDefinition.date : dateTime [0..1]
Maximum Cardinality differs (Pattern: *; Resource: 1)
charge item definition does not contain the recommended logical text for Short (Pattern: Date status first applied; Resource: Date last changed)
charge item definition does not contain the recommended logical text for Definition (Pattern: For draft definitions, indicates the date of initial creation. For active definitions, represents the date of activation. For withdrawn definitions, indicates the date of withdrawal.; Resource: The date (and optionally time) when the charge item definition was published. The date must change when the business version changes and it must change if the status code changes. In addition, it should change when the substantive content of the charge item definition changes.)">1 C</td>
<td style="background-color: #ffebe6" title="ChargeItemDefinition.publisher : string [0..1]
Maximum Cardinality differs (Pattern: *; Resource: 1)
Resource does not types that are part of the pattern (Pattern: null; Resource: string)
Resource supports types that are not part of the pattern (Pattern: null; Resource: string)
charge item definition does not contain the recommended logical text for Short (Pattern: The name of the individual or organization that published the charge item definition; Resource: Name of the publisher/steward (organization or individual))
charge item definition does not contain the recommended logical text for Definition (Pattern: Helps establish the "authority/credibility" of the charge item definition. May also allow for contact.; Resource: The name of the organization or individual responsible for the release and ongoing maintenance of the charge item definition.)
charge item definition does not contain the recommended logical text for Requirements (Pattern: Usually an organization, but may be an individual. The publisher (or steward) of the charge item definition is the organization or individual primarily responsible for the maintenance and upkeep of the charge item definition. This is not necessarily the same individual or organization that developed and initially authored the content. The publisher is the primary point of contact for questions or issues with the charge item definition. This item SHOULD be populated unless the information is available from context.; Resource: Helps establish the "authority/credibility" of the charge item definition. May also allow for contact.)">1 TC</td>
<td style="background-color: #ffffff" title="ChargeItemDefinition.contact : ContactDetail [0..*]">1 </td>
<td style="background-color: #ffebe6" title="ChargeItemDefinition.description : markdown [0..1]
Maximum Cardinality differs (Pattern: *; Resource: 1)
charge item definition does not contain the recommended logical text for Definition (Pattern: A free text natural language description of the charge item definition from the consumer's perspective.; Resource: A free text natural language description of the charge item definition from a consumer's perspective.)
charge item definition does not contain the recommended logical text for Comment (Pattern: This description can be used to capture details such as comments about misuse, instructions for clinical use and interpretation, literature references, examples from the paper world, etc. It is not a rendering of the module as conveyed in the text field of the resource itself. This item SHOULD be populated unless the information is available from context.; Resource: This description can be used to capture details such as comments about misuse, instructions for clinical use and interpretation, literature references, examples from the paper world, etc. It is not a rendering of the charge item definition as conveyed in the 'text' field of the resource itself. This item SHOULD be populated unless the information is available from context (e.g. the language of the charge item definition is presumed to be the predominant language in the place the charge item definition was created).)">1 C</td>
<td style="background-color: #ffffff" title="ChargeItemDefinition.useContext : UsageContext [0..*]
charge item definition does not contain the recommended logical text for Short (Pattern: Content intends to support these contexts; Resource: The context that the content is intended to support)
charge item definition does not contain the recommended logical text for Definition (Pattern: The content was developed with a focus and intent of supporting the contexts that are listed. These terms may be used to assist with indexing and searching of code system definitions.; Resource: The content was developed with a focus and intent of supporting the contexts that are listed. These contexts may be general categories (gender, age, ...) or may be references to specific programs (insurance plans, studies, ...) and may be used to assist with indexing and searching for appropriate charge item definition instances.)
charge item definition does not contain the recommended logical text for Comment (Pattern: When multiple usageContexts are specified, there is no expectation for whether all or any of the contexts apply.; Resource: When multiple useContexts are specified, there is no expectation that all or any of the contexts apply.)">1 </td>
<td style="background-color: #ffffff" title="ChargeItemDefinition.jurisdiction : CodeableConcept [0..*]
charge item definition does not contain the recommended logical text for Definition (Pattern: A jurisdiction in which the charge item definition is intended to be used.; Resource: A legal or geographic region in which the charge item definition is intended to be used.)">1 </td>
<td style="background-color: #f2f2f2" title=""> </td>
<td style="background-color: #ffebe6" title="ChargeItemDefinition.purpose : markdown [0..1]
Maximum Cardinality differs (Pattern: *; Resource: 1)
charge item definition does not contain the recommended logical text for Definition (Pattern: Explains why this charge item definition is needed and why it has been designed as it has.; Resource: Explanation of why this charge item definition is needed and why it has been designed as it has.)
charge item definition does not contain the recommended logical text for Comment (Pattern: This element does not describe the usage of the charge item definition. Rather it is for traceability of ''why'' the resource is either needed or ''why'' it is defined as it is. This may be used to point to source materials or specifications that drove the structure of this charge item definition.; Resource: This element does not describe the usage of the charge item definition. Instead, it provides traceability of ''why'' the resource is either needed or ''why'' it is defined as it is. This may be used to point to source materials or specifications that drove the structure of this charge item definition.)">1 C</td>
<td style="background-color: #ffebe6" title="ChargeItemDefinition.copyright : markdown [0..1]
Maximum Cardinality differs (Pattern: *; Resource: 1)
charge item definition does not contain the recommended logical text for Requirements (Pattern: Consumers of the charge item definition must be able to determine any legal restrictions on the use of the artifact and/or its content.; Resource: Consumers must be able to determine any legal restrictions on the use of the charge item definition and/or its content.)">1 C</td>
<td style="background-color: #ffebe6" title="ChargeItemDefinition.approvalDate : date [0..1]
Maximum Cardinality differs (Pattern: *; Resource: 1)
charge item definition does not contain the recommended logical text for Short (Pattern: When charge item definition approved by publisher; Resource: When the charge item definition was approved by publisher)
charge item definition does not contain the recommended logical text for Definition (Pattern: The date on which the asset content was approved by the publisher. Approval happens once when the content is officially approved for usage.; Resource: The date on which the resource content was approved by the publisher. Approval happens once when the content is officially approved for usage.)
charge item definition does not contain the recommended logical text for Comment (Pattern: The date may be more recent than the approval date because of minor changes / editorial corrections.; Resource: The 'date' element may be more recent than the approval date because of minor changes or editorial corrections.)">1 C</td>
<td style="background-color: #ffebe6" title="ChargeItemDefinition.lastReviewDate : date [0..1]
Maximum Cardinality differs (Pattern: *; Resource: 1)
charge item definition does not contain the recommended logical text for Short (Pattern: Last review date for the charge item definition; Resource: When the charge item definition was last reviewed)
charge item definition does not contain the recommended logical text for Definition (Pattern: The date on which the asset content was last reviewed. Review happens periodically after that, but doesn't change the original approval date.; Resource: The date on which the resource content was last reviewed. Review happens periodically after approval but does not change the original approval date.)
charge item definition does not contain the recommended logical text for Comment (Pattern: If specified, this is usually after the approval date.; Resource: If specified, this date follows the original approval date.)">1 C</td>
<td style="background-color: #ffebe6" title="ChargeItemDefinition.applicability.effectivePeriod : Period [0..1]
Maximum Cardinality differs (Pattern: *; Resource: 1)
charge item definition does not contain the recommended logical text for Short (Pattern: The effective date range for the charge item definition; Resource: When the charge item definition is expected to be used)
charge item definition does not contain the recommended logical text for Definition (Pattern: The period during which the charge item definition content was or is planned to be effective.; Resource: The period during which the charge item definition content was or is planned to be in active use.)
charge item definition does not contain the recommended logical text for Comment (Pattern: The effective period for a charge item definition determines when the content is applicable for usage and is independent of publication and review dates. For example, a measure intended to be used for the year 2016 would be published in 2015.; Resource: The effective period for a charge item definition determines when the content is applicable for usage and is independent of publication and review dates. For example, a measure intended to be used for the year 2016 might be published in 2015.)">1 C</td>
<td style="background-color: #f2f2f2" title=""> </td>
<td style="background-color: #f2f2f2" title=""> </td>
<td style="background-color: #f2f2f2" title=""> </td>
</tr>
<tr>
<td><a href="eventdefinition.html">EventDefinition</a></td>
<td style="background-color: #ffebe6" title="EventDefinition.url : uri [0..1]
Maximum Cardinality differs (Pattern: *; Resource: 1)
event definition does not contain the recommended logical text for Short (Pattern: Logical canonical URL to reference this event definition (globally unique); Resource: Canonical identifier for this event definition, represented as a URI (globally unique))
event definition does not contain the recommended logical text for Definition (Pattern: An absolute URL that is used to identify this event definition when it is referenced in a specification, model, design or an instance. This SHALL be a URL, SHOULD be globally unique, and SHOULD be an address at which this event definition is (or will be) published. The URL SHOULD include the major version of the event definition. For more information see(resource.html#versions).; Resource: An absolute URI that is used to identify this event definition when it is referenced in a specification, model, design or an instance; also called its canonical identifier. This SHOULD be globally unique and SHOULD be a literal address at which an authoritative instance of this event definition is (or will be) published. This URL can be the target of a canonical reference. It SHALL remain the same when the event definition is stored on different servers.)
event definition does not contain the recommended logical text for Comment (Pattern: Can be a urn:uuid: or a urn:oid:, but real http: addresses are preferred. This is the URI that will be used when making canonical references to this resource.; Resource: Can be a urn:uuid: or a urn:oid: but real http: addresses are preferred. Multiple instances may share the same URL if they have a distinct version.
The determination of when to create a new version of a resource (same url, new version) vs. defining a new artifact is up to the author. Considerations for making this decision are found in [Technical and Business Versions](resource.html#versions).
In some cases, the resource can no longer be found at the stated url, but the url itself cannot change. Implementations can use the [meta.source](resource.html#meta) element to indicate where the current master source of the resource can be found.)">1 C</td>
<td style="background-color: #ffffff" title="EventDefinition.identifier : Identifier [0..*]
event definition does not contain the recommended logical text for Short (Pattern: Business Identifier for event definition; Resource: Additional identifier for the event definition)
event definition does not contain the recommended logical text for Definition (Pattern: Business identifiers assigned to this event definition by the performer and/or other systems. These identifiers remain constant as the resource is updated and propagates from server to server.; Resource: A formal identifier that is used to identify this event definition when it is represented in other formats, or referenced in a specification, model, design or an instance.)
event definition does not contain the recommended logical text for Requirements (Pattern: Allows identification of the event definition as it is known by various participating systems and in a way that remains consistent across servers.; Resource: Allows externally provided and/or usable business identifiers to be easily associated with the module.)
event definition does not contain the recommended logical text for Comment (Pattern: Note: This is a business identifier, not a resource identifier (see(resource.html#identifiers)). It is best practice for the identifier to only appear on a single resource instance, however business practices may occasionally dictate that multiple resource instances with the same identifier can exist - possibly even with different resource types. For example, multiple Patient and a Person resource instance might share the same social insurance number.; Resource: Typically, this is used for identifiers that can go in an HL7 V3 II (instance identifier) data type, and can then identify this event definition outside of FHIR, where it is not possible to use the logical URI.)">1 </td>
<td style="background-color: #ffebe6" title="EventDefinition.version : string [0..1]
Maximum Cardinality differs (Pattern: *; Resource: 1)
event definition does not contain the recommended logical text for Definition (Pattern: The identifier that is used to identify this version of the event definition when it is referenced in a specification, model, design or instance. This is an arbitrary value managed by the event definition author and is not expected to be globally unique. For example, it might be a timestamp (e.g. yyyymmdd) if a managed version is not available. There is also no expectation that versions are orderable.; Resource: The identifier that is used to identify this version of the event definition when it is referenced in a specification, model, design or instance. This is an arbitrary value managed by the event definition author and is not expected to be globally unique. For example, it might be a timestamp (e.g. yyyymmdd) if a managed version is not available. There is also no expectation that versions can be placed in a lexicographical sequence.)
event definition does not contain the recommended logical text for Comment (Pattern: There may be multiple different instances of a event definition that have the same identifier but different versions.; Resource: There may be different event definition instances that have the same identifier but different versions. The version can be appended to the url in a reference to allow a reference to a particular business version of the event definition with the format [url]|[version]. The version SHOULD NOT contain a '#' - see [Business Version](resource.html#bv-format).)">1 C</td>
<td style="background-color: #ffebe6" title="EventDefinition.name : string [0..1]
Maximum Cardinality differs (Pattern: *; Resource: 1)
event definition does not contain the recommended logical text for Short (Pattern: Name for this event definition (Computer friendly); Resource: Name for this event definition (computer friendly))
event definition does not contain the recommended logical text for Requirements (Pattern: Supports code generation.; Resource: Support human navigation and code generation.)">1 C</td>
<td style="background-color: #ffebe6" title="EventDefinition.title : string [0..1]
Maximum Cardinality differs (Pattern: *; Resource: 1)
event definition does not contain the recommended logical text for Short (Pattern: Name for this event definition (Human friendly); Resource: Name for this event definition (human friendly))">1 C</td>
<td style="background-color: #f2f2f2" title=""> </td>
<td style="background-color: #f2f2f2" title=""> </td>
<td style="background-color: #f2f2f2" title=""> </td>
<td style="background-color: #ffebe6" title="EventDefinition.status : code [1..1]
Maximum Cardinality differs (Pattern: *; Resource: 1)
event definition does not contain the recommended logical text for Definition (Pattern: The current state of the event definition.; Resource: The status of this event definition. Enables tracking the life-cycle of the content.)
event definition does not contain the recommended logical text for Comment (Pattern: A nominal state-transition diagram can be found in the] documentation
Unknown does not represent "other" - one of the defined statuses must apply. Unknown is used when the authoring system is not sure what the current status is.; Resource: Allows filtering of event definitions that are appropriate for use versus not.)">1 C</td>
<td style="background-color: #ffebe6" title="EventDefinition.experimental : boolean [0..1]
Maximum Cardinality differs (Pattern: *; Resource: 1)
event definition does not contain the recommended logical text for Short (Pattern: If for testing purposes, not real usage; Resource: For testing purposes, not real usage)
event definition does not contain the recommended logical text for Definition (Pattern: A flag to indicate that this event definition is authored for testing purposes (or education/evaluation/marketing), and is not intended to be used for genuine usage.; Resource: A Boolean value to indicate that this event definition is authored for testing purposes (or education/evaluation/marketing) and is not intended to be used for genuine usage.)
event definition does not contain the recommended logical text for Requirements (Pattern: Enables experimental content to be developed following the same life-cycle as a production-level event definition would.; Resource: Enables experimental content to be developed following the same lifecycle that would be used for a production-level event definition.)
event definition does not contain the recommended logical text for Comment (Pattern: Allows filtering of event definition that are appropriate for use vs. not.; Resource: Allows filtering of event definitions that are appropriate for use versus not.)">1 C</td>
<td style="background-color: #f2f2f2" title=""> </td>
<td style="background-color: #ffebe6" title="EventDefinition.date : dateTime [0..1]
Maximum Cardinality differs (Pattern: *; Resource: 1)
event definition does not contain the recommended logical text for Short (Pattern: Date status first applied; Resource: Date last changed)
event definition does not contain the recommended logical text for Definition (Pattern: For draft definitions, indicates the date of initial creation. For active definitions, represents the date of activation. For withdrawn definitions, indicates the date of withdrawal.; Resource: The date (and optionally time) when the event definition was published. The date must change when the business version changes and it must change if the status code changes. In addition, it should change when the substantive content of the event definition changes.)">1 C</td>
<td style="background-color: #ffebe6" title="EventDefinition.publisher : string [0..1]
Maximum Cardinality differs (Pattern: *; Resource: 1)
Resource does not types that are part of the pattern (Pattern: null; Resource: string)
Resource supports types that are not part of the pattern (Pattern: null; Resource: string)
event definition does not contain the recommended logical text for Short (Pattern: The name of the individual or organization that published the event definition; Resource: Name of the publisher/steward (organization or individual))
event definition does not contain the recommended logical text for Definition (Pattern: Helps establish the "authority/credibility" of the event definition. May also allow for contact.; Resource: The name of the organization or individual responsible for the release and ongoing maintenance of the event definition.)
event definition does not contain the recommended logical text for Requirements (Pattern: Usually an organization, but may be an individual. The publisher (or steward) of the event definition is the organization or individual primarily responsible for the maintenance and upkeep of the event definition. This is not necessarily the same individual or organization that developed and initially authored the content. The publisher is the primary point of contact for questions or issues with the event definition. This item SHOULD be populated unless the information is available from context.; Resource: Helps establish the "authority/credibility" of the event definition. May also allow for contact.)">1 TC</td>
<td style="background-color: #ffffff" title="EventDefinition.contact : ContactDetail [0..*]">1 </td>
<td style="background-color: #ffebe6" title="EventDefinition.description : markdown [0..1]
Maximum Cardinality differs (Pattern: *; Resource: 1)
event definition does not contain the recommended logical text for Definition (Pattern: A free text natural language description of the event definition from the consumer's perspective.; Resource: A free text natural language description of the event definition from a consumer's perspective.)
event definition does not contain the recommended logical text for Comment (Pattern: This description can be used to capture details such as comments about misuse, instructions for clinical use and interpretation, literature references, examples from the paper world, etc. It is not a rendering of the module as conveyed in the text field of the resource itself. This item SHOULD be populated unless the information is available from context.; Resource: This description can be used to capture details such as comments about misuse, instructions for clinical use and interpretation, literature references, examples from the paper world, etc. It is not a rendering of the event definition as conveyed in the 'text' field of the resource itself. This item SHOULD be populated unless the information is available from context (e.g. the language of the event definition is presumed to be the predominant language in the place the event definition was created).)">1 C</td>
<td style="background-color: #ffffff" title="EventDefinition.useContext : UsageContext [0..*]
event definition does not contain the recommended logical text for Short (Pattern: Content intends to support these contexts; Resource: The context that the content is intended to support)
event definition does not contain the recommended logical text for Definition (Pattern: The content was developed with a focus and intent of supporting the contexts that are listed. These terms may be used to assist with indexing and searching of code system definitions.; Resource: The content was developed with a focus and intent of supporting the contexts that are listed. These contexts may be general categories (gender, age, ...) or may be references to specific programs (insurance plans, studies, ...) and may be used to assist with indexing and searching for appropriate event definition instances.)
event definition does not contain the recommended logical text for Comment (Pattern: When multiple usageContexts are specified, there is no expectation for whether all or any of the contexts apply.; Resource: When multiple useContexts are specified, there is no expectation that all or any of the contexts apply.)">1 </td>
<td style="background-color: #ffffff" title="EventDefinition.jurisdiction : CodeableConcept [0..*]
event definition does not contain the recommended logical text for Definition (Pattern: A jurisdiction in which the event definition is intended to be used.; Resource: A legal or geographic region in which the event definition is intended to be used.)">1 </td>
<td style="background-color: #f2f2f2" title=""> </td>
<td style="background-color: #ffebe6" title="EventDefinition.purpose : markdown [0..1]
Maximum Cardinality differs (Pattern: *; Resource: 1)
event definition does not contain the recommended logical text for Definition (Pattern: Explains why this event definition is needed and why it has been designed as it has.; Resource: Explanation of why this event definition is needed and why it has been designed as it has.)
event definition does not contain the recommended logical text for Comment (Pattern: This element does not describe the usage of the event definition. Rather it is for traceability of ''why'' the resource is either needed or ''why'' it is defined as it is. This may be used to point to source materials or specifications that drove the structure of this event definition.; Resource: This element does not describe the usage of the event definition. Instead, it provides traceability of ''why'' the resource is either needed or ''why'' it is defined as it is. This may be used to point to source materials or specifications that drove the structure of this event definition.)">1 C</td>
<td style="background-color: #ffebe6" title="EventDefinition.copyright : markdown [0..1]
Maximum Cardinality differs (Pattern: *; Resource: 1)
event definition does not contain the recommended logical text for Requirements (Pattern: Consumers of the event definition must be able to determine any legal restrictions on the use of the artifact and/or its content.; Resource: Consumers must be able to determine any legal restrictions on the use of the event definition and/or its content.)">1 C</td>
<td style="background-color: #ffebe6" title="EventDefinition.approvalDate : date [0..1]
Maximum Cardinality differs (Pattern: *; Resource: 1)
event definition does not contain the recommended logical text for Short (Pattern: When event definition approved by publisher; Resource: When the event definition was approved by publisher)
event definition does not contain the recommended logical text for Definition (Pattern: The date on which the asset content was approved by the publisher. Approval happens once when the content is officially approved for usage.; Resource: The date on which the resource content was approved by the publisher. Approval happens once when the content is officially approved for usage.)
event definition does not contain the recommended logical text for Comment (Pattern: The date may be more recent than the approval date because of minor changes / editorial corrections.; Resource: The 'date' element may be more recent than the approval date because of minor changes or editorial corrections.)">1 C</td>
<td style="background-color: #ffebe6" title="EventDefinition.lastReviewDate : date [0..1]
Maximum Cardinality differs (Pattern: *; Resource: 1)
event definition does not contain the recommended logical text for Short (Pattern: Last review date for the event definition; Resource: When the event definition was last reviewed)
event definition does not contain the recommended logical text for Definition (Pattern: The date on which the asset content was last reviewed. Review happens periodically after that, but doesn't change the original approval date.; Resource: The date on which the resource content was last reviewed. Review happens periodically after approval but does not change the original approval date.)
event definition does not contain the recommended logical text for Comment (Pattern: If specified, this is usually after the approval date.; Resource: If specified, this date follows the original approval date.)">1 C</td>
<td style="background-color: #ffebe6" title="EventDefinition.effectivePeriod : Period [0..1]
Maximum Cardinality differs (Pattern: *; Resource: 1)
event definition does not contain the recommended logical text for Short (Pattern: The effective date range for the event definition; Resource: When the event definition is expected to be used)
event definition does not contain the recommended logical text for Definition (Pattern: The period during which the event definition content was or is planned to be effective.; Resource: The period during which the event definition content was or is planned to be in active use.)
event definition does not contain the recommended logical text for Comment (Pattern: The effective period for a event definition determines when the content is applicable for usage and is independent of publication and review dates. For example, a measure intended to be used for the year 2016 would be published in 2015.; Resource: The effective period for a event definition determines when the content is applicable for usage and is independent of publication and review dates. For example, a measure intended to be used for the year 2016 might be published in 2015.)">1 C</td>
<td style="background-color: #f2f2f2" title=""> </td>
<td style="background-color: #f2f2f2" title=""> </td>
<td style="background-color: #f2f2f2" title=""> </td>
</tr>
<tr>
<td><a href="measure.html">Measure</a></td>
<td style="background-color: #ffebe6" title="Measure.url : uri [0..1]
Maximum Cardinality differs (Pattern: *; Resource: 1)
measure does not contain the recommended logical text for Short (Pattern: Logical canonical URL to reference this measure (globally unique); Resource: Canonical identifier for this measure, represented as a URI (globally unique))
measure does not contain the recommended logical text for Definition (Pattern: An absolute URL that is used to identify this measure when it is referenced in a specification, model, design or an instance. This SHALL be a URL, SHOULD be globally unique, and SHOULD be an address at which this measure is (or will be) published. The URL SHOULD include the major version of the measure. For more information see(resource.html#versions).; Resource: An absolute URI that is used to identify this measure when it is referenced in a specification, model, design or an instance; also called its canonical identifier. This SHOULD be globally unique and SHOULD be a literal address at which an authoritative instance of this measure is (or will be) published. This URL can be the target of a canonical reference. It SHALL remain the same when the measure is stored on different servers.)
measure does not contain the recommended logical text for Comment (Pattern: Can be a urn:uuid: or a urn:oid:, but real http: addresses are preferred. This is the URI that will be used when making canonical references to this resource.; Resource: Can be a urn:uuid: or a urn:oid: but real http: addresses are preferred. Multiple instances may share the same URL if they have a distinct version.
The determination of when to create a new version of a resource (same url, new version) vs. defining a new artifact is up to the author. Considerations for making this decision are found in [Technical and Business Versions](resource.html#versions).
In some cases, the resource can no longer be found at the stated url, but the url itself cannot change. Implementations can use the [meta.source](resource.html#meta) element to indicate where the current master source of the resource can be found.)">1 C</td>
<td style="background-color: #ffffff" title="Measure.identifier : Identifier [0..*]
measure does not contain the recommended logical text for Short (Pattern: Business Identifier for measure; Resource: Additional identifier for the measure)
measure does not contain the recommended logical text for Definition (Pattern: Business identifiers assigned to this measure by the performer and/or other systems. These identifiers remain constant as the resource is updated and propagates from server to server.; Resource: A formal identifier that is used to identify this measure when it is represented in other formats, or referenced in a specification, model, design or an instance.)
measure does not contain the recommended logical text for Requirements (Pattern: Allows identification of the measure as it is known by various participating systems and in a way that remains consistent across servers.; Resource: Allows externally provided and/or usable business identifiers to be easily associated with the module.)
measure does not contain the recommended logical text for Comment (Pattern: Note: This is a business identifier, not a resource identifier (see(resource.html#identifiers)). It is best practice for the identifier to only appear on a single resource instance, however business practices may occasionally dictate that multiple resource instances with the same identifier can exist - possibly even with different resource types. For example, multiple Patient and a Person resource instance might share the same social insurance number.; Resource: Typically, this is used for identifiers that can go in an HL7 V3 II (instance identifier) data type, and can then identify this measure outside of FHIR, where it is not possible to use the logical URI.)">1 </td>
<td style="background-color: #ffebe6" title="Measure.version : string [0..1]
Maximum Cardinality differs (Pattern: *; Resource: 1)
measure does not contain the recommended logical text for Definition (Pattern: The identifier that is used to identify this version of the measure when it is referenced in a specification, model, design or instance. This is an arbitrary value managed by the measure author and is not expected to be globally unique. For example, it might be a timestamp (e.g. yyyymmdd) if a managed version is not available. There is also no expectation that versions are orderable.; Resource: The identifier that is used to identify this version of the measure when it is referenced in a specification, model, design or instance. This is an arbitrary value managed by the measure author and is not expected to be globally unique. For example, it might be a timestamp (e.g. yyyymmdd) if a managed version is not available. There is also no expectation that versions can be placed in a lexicographical sequence. To provide a version consistent with the Decision Support Service specification, use the format Major.Minor.Revision (e.g. 1.0.0). For more information on versioning knowledge assets, refer to the Decision Support Service specification. Note that a version is required for non-experimental active artifacts.)
measure does not contain the recommended logical text for Comment (Pattern: There may be multiple different instances of a measure that have the same identifier but different versions.; Resource: There may be different measure instances that have the same identifier but different versions. The version can be appended to the url in a reference to allow a reference to a particular business version of the measure with the format [url]|[version]. The version SHOULD NOT contain a '#' - see [Business Version](resource.html#bv-format).)">1 C</td>
<td style="background-color: #ffebe6" title="Measure.name : string [0..1]
Maximum Cardinality differs (Pattern: *; Resource: 1)
measure does not contain the recommended logical text for Short (Pattern: Name for this measure (Computer friendly); Resource: Name for this measure (computer friendly))
measure does not contain the recommended logical text for Requirements (Pattern: Supports code generation.; Resource: Support human navigation and code generation.)">1 C</td>
<td style="background-color: #ffebe6" title="Measure.title : string [0..1]
Maximum Cardinality differs (Pattern: *; Resource: 1)
measure does not contain the recommended logical text for Short (Pattern: Name for this measure (Human friendly); Resource: Name for this measure (human friendly))">1 C</td>
<td style="background-color: #f2f2f2" title=""> </td>
<td style="background-color: #f2f2f2" title=""> </td>
<td style="background-color: #f2f2f2" title=""> </td>
<td style="background-color: #ffebe6" title="Measure.status : code [1..1]
Maximum Cardinality differs (Pattern: *; Resource: 1)
measure does not contain the recommended logical text for Definition (Pattern: The current state of the measure.; Resource: The status of this measure. Enables tracking the life-cycle of the content.)
measure does not contain the recommended logical text for Comment (Pattern: A nominal state-transition diagram can be found in the] documentation
Unknown does not represent "other" - one of the defined statuses must apply. Unknown is used when the authoring system is not sure what the current status is.; Resource: Allows filtering of measures that are appropriate for use versus not.)">1 C</td>
<td style="background-color: #ffebe6" title="Measure.experimental : boolean [0..1]
Maximum Cardinality differs (Pattern: *; Resource: 1)
measure does not contain the recommended logical text for Short (Pattern: If for testing purposes, not real usage; Resource: For testing purposes, not real usage)
measure does not contain the recommended logical text for Definition (Pattern: A flag to indicate that this measure is authored for testing purposes (or education/evaluation/marketing), and is not intended to be used for genuine usage.; Resource: A Boolean value to indicate that this measure is authored for testing purposes (or education/evaluation/marketing) and is not intended to be used for genuine usage.)
measure does not contain the recommended logical text for Requirements (Pattern: Enables experimental content to be developed following the same life-cycle as a production-level measure would.; Resource: Enables experimental content to be developed following the same lifecycle that would be used for a production-level measure.)
measure does not contain the recommended logical text for Comment (Pattern: Allows filtering of measure that are appropriate for use vs. not.; Resource: Allows filtering of measures that are appropriate for use versus not.)">1 C</td>
<td style="background-color: #f2f2f2" title=""> </td>
<td style="background-color: #ffebe6" title="Measure.date : dateTime [0..1]
Maximum Cardinality differs (Pattern: *; Resource: 1)
measure does not contain the recommended logical text for Short (Pattern: Date status first applied; Resource: Date last changed)
measure does not contain the recommended logical text for Definition (Pattern: For draft definitions, indicates the date of initial creation. For active definitions, represents the date of activation. For withdrawn definitions, indicates the date of withdrawal.; Resource: The date (and optionally time) when the measure was published. The date must change when the business version changes and it must change if the status code changes. In addition, it should change when the substantive content of the measure changes.)">1 C</td>
<td style="background-color: #ffebe6" title="Measure.publisher : string [0..1]
Maximum Cardinality differs (Pattern: *; Resource: 1)
Resource does not types that are part of the pattern (Pattern: null; Resource: string)
Resource supports types that are not part of the pattern (Pattern: null; Resource: string)
measure does not contain the recommended logical text for Short (Pattern: The name of the individual or organization that published the measure; Resource: Name of the publisher/steward (organization or individual))
measure does not contain the recommended logical text for Definition (Pattern: Helps establish the "authority/credibility" of the measure. May also allow for contact.; Resource: The name of the organization or individual responsible for the release and ongoing maintenance of the measure.)
measure does not contain the recommended logical text for Requirements (Pattern: Usually an organization, but may be an individual. The publisher (or steward) of the measure is the organization or individual primarily responsible for the maintenance and upkeep of the measure. This is not necessarily the same individual or organization that developed and initially authored the content. The publisher is the primary point of contact for questions or issues with the measure. This item SHOULD be populated unless the information is available from context.; Resource: Helps establish the "authority/credibility" of the measure. May also allow for contact.)">1 TC</td>
<td style="background-color: #ffffff" title="Measure.contact : ContactDetail [0..*]">1 </td>
<td style="background-color: #ffebe6" title="Measure.description : markdown [0..1]
Maximum Cardinality differs (Pattern: *; Resource: 1)
measure does not contain the recommended logical text for Definition (Pattern: A free text natural language description of the measure from the consumer's perspective.; Resource: A free text natural language description of the measure from a consumer's perspective.)
measure does not contain the recommended logical text for Comment (Pattern: This description can be used to capture details such as comments about misuse, instructions for clinical use and interpretation, literature references, examples from the paper world, etc. It is not a rendering of the module as conveyed in the text field of the resource itself. This item SHOULD be populated unless the information is available from context.; Resource: This description can be used to capture details such as comments about misuse, instructions for clinical use and interpretation, literature references, examples from the paper world, etc. It is not a rendering of the measure as conveyed in the 'text' field of the resource itself. This item SHOULD be populated unless the information is available from context (e.g. the language of the measure is presumed to be the predominant language in the place the measure was created).)">1 C</td>
<td style="background-color: #ffffff" title="Measure.useContext : UsageContext [0..*]
measure does not contain the recommended logical text for Short (Pattern: Content intends to support these contexts; Resource: The context that the content is intended to support)
measure does not contain the recommended logical text for Definition (Pattern: The content was developed with a focus and intent of supporting the contexts that are listed. These terms may be used to assist with indexing and searching of code system definitions.; Resource: The content was developed with a focus and intent of supporting the contexts that are listed. These contexts may be general categories (gender, age, ...) or may be references to specific programs (insurance plans, studies, ...) and may be used to assist with indexing and searching for appropriate measure instances.)
measure does not contain the recommended logical text for Comment (Pattern: When multiple usageContexts are specified, there is no expectation for whether all or any of the contexts apply.; Resource: When multiple useContexts are specified, there is no expectation that all or any of the contexts apply.)">1 </td>
<td style="background-color: #ffffff" title="Measure.jurisdiction : CodeableConcept [0..*]
measure does not contain the recommended logical text for Definition (Pattern: A jurisdiction in which the measure is intended to be used.; Resource: A legal or geographic region in which the measure is intended to be used.)">1 </td>
<td style="background-color: #f2f2f2" title=""> </td>
<td style="background-color: #ffebe6" title="Measure.purpose : markdown [0..1]
Maximum Cardinality differs (Pattern: *; Resource: 1)
measure does not contain the recommended logical text for Definition (Pattern: Explains why this measure is needed and why it has been designed as it has.; Resource: Explanation of why this measure is needed and why it has been designed as it has.)
measure does not contain the recommended logical text for Comment (Pattern: This element does not describe the usage of the measure. Rather it is for traceability of ''why'' the resource is either needed or ''why'' it is defined as it is. This may be used to point to source materials or specifications that drove the structure of this measure.; Resource: This element does not describe the usage of the measure. Instead, it provides traceability of ''why'' the resource is either needed or ''why'' it is defined as it is. This may be used to point to source materials or specifications that drove the structure of this measure.)">1 C</td>
<td style="background-color: #ffebe6" title="Measure.copyright : markdown [0..1]
Maximum Cardinality differs (Pattern: *; Resource: 1)
measure does not contain the recommended logical text for Requirements (Pattern: Consumers of the measure must be able to determine any legal restrictions on the use of the artifact and/or its content.; Resource: Consumers must be able to determine any legal restrictions on the use of the measure and/or its content.)">1 C</td>
<td style="background-color: #ffebe6" title="Measure.approvalDate : date [0..1]
Maximum Cardinality differs (Pattern: *; Resource: 1)
measure does not contain the recommended logical text for Short (Pattern: When measure approved by publisher; Resource: When the measure was approved by publisher)
measure does not contain the recommended logical text for Definition (Pattern: The date on which the asset content was approved by the publisher. Approval happens once when the content is officially approved for usage.; Resource: The date on which the resource content was approved by the publisher. Approval happens once when the content is officially approved for usage.)
measure does not contain the recommended logical text for Comment (Pattern: The date may be more recent than the approval date because of minor changes / editorial corrections.; Resource: The 'date' element may be more recent than the approval date because of minor changes or editorial corrections.)">1 C</td>
<td style="background-color: #ffebe6" title="Measure.lastReviewDate : date [0..1]
Maximum Cardinality differs (Pattern: *; Resource: 1)
measure does not contain the recommended logical text for Short (Pattern: Last review date for the measure; Resource: When the measure was last reviewed)
measure does not contain the recommended logical text for Definition (Pattern: The date on which the asset content was last reviewed. Review happens periodically after that, but doesn't change the original approval date.; Resource: The date on which the resource content was last reviewed. Review happens periodically after approval but does not change the original approval date.)
measure does not contain the recommended logical text for Comment (Pattern: If specified, this is usually after the approval date.; Resource: If specified, this date follows the original approval date.)">1 C</td>
<td style="background-color: #ffebe6" title="Measure.effectivePeriod : Period [0..1]
Maximum Cardinality differs (Pattern: *; Resource: 1)
measure does not contain the recommended logical text for Short (Pattern: The effective date range for the measure; Resource: When the measure is expected to be used)
measure does not contain the recommended logical text for Definition (Pattern: The period during which the measure content was or is planned to be effective.; Resource: The period during which the measure content was or is planned to be in active use.)
measure does not contain the recommended logical text for Comment (Pattern: The effective period for a measure determines when the content is applicable for usage and is independent of publication and review dates. For example, a measure intended to be used for the year 2016 would be published in 2015.; Resource: The effective period for a measure determines when the content is applicable for usage and is independent of publication and review dates. For example, a measure intended to be used for the year 2016 might be published in 2015.)">1 C</td>
<td style="background-color: #f2f2f2" title=""> </td>
<td style="background-color: #f2f2f2" title=""> </td>
<td style="background-color: #f2f2f2" title=""> </td>
</tr>
<tr>
<td><a href="messagedefinition.html">MessageDefinition</a></td>
<td style="background-color: #ffebe6" title="MessageDefinition.url : uri [0..1]
Maximum Cardinality differs (Pattern: *; Resource: 1)
message definition does not contain the recommended logical text for Short (Pattern: Logical canonical URL to reference this message definition (globally unique); Resource: Business Identifier for a given MessageDefinition)
message definition does not contain the recommended logical text for Definition (Pattern: An absolute URL that is used to identify this message definition when it is referenced in a specification, model, design or an instance. This SHALL be a URL, SHOULD be globally unique, and SHOULD be an address at which this message definition is (or will be) published. The URL SHOULD include the major version of the message definition. For more information see(resource.html#versions).; Resource: The business identifier that is used to reference the MessageDefinition and *is* expected to be consistent from server to server.)
message definition does not contain the recommended logical text for Comment (Pattern: Can be a urn:uuid: or a urn:oid:, but real http: addresses are preferred. This is the URI that will be used when making canonical references to this resource.; Resource: Can be a urn:uuid: or a urn:oid: but real http: addresses are preferred. Multiple instances may share the same URL if they have a distinct version.
The determination of when to create a new version of a resource (same url, new version) vs. defining a new artifact is up to the author. Considerations for making this decision are found in [Technical and Business Versions](resource.html#versions).
In some cases, the resource can no longer be found at the stated url, but the url itself cannot change. Implementations can use the [meta.source](resource.html#meta) element to indicate where the current master source of the resource can be found.)">1 C</td>
<td style="background-color: #ffffff" title="MessageDefinition.identifier : Identifier [0..*]
message definition does not contain the recommended logical text for Short (Pattern: Business Identifier for message definition; Resource: Primary key for the message definition on a given server)
message definition does not contain the recommended logical text for Definition (Pattern: Business identifiers assigned to this message definition by the performer and/or other systems. These identifiers remain constant as the resource is updated and propagates from server to server.; Resource: A formal identifier that is used to identify this message definition when it is represented in other formats, or referenced in a specification, model, design or an instance.)
message definition does not contain the recommended logical text for Requirements (Pattern: Allows identification of the message definition as it is known by various participating systems and in a way that remains consistent across servers.; Resource: Allows externally provided and/or usable business identifiers to be easily associated with the module.)
message definition does not contain the recommended logical text for Comment (Pattern: Note: This is a business identifier, not a resource identifier (see(resource.html#identifiers)). It is best practice for the identifier to only appear on a single resource instance, however business practices may occasionally dictate that multiple resource instances with the same identifier can exist - possibly even with different resource types. For example, multiple Patient and a Person resource instance might share the same social insurance number.; Resource: Typically, this is used for identifiers that can go in an HL7 V3 II (instance identifier) data type, and can then identify this message definition outside of FHIR, where it is not possible to use the logical URI.)">1 </td>
<td style="background-color: #ffebe6" title="MessageDefinition.version : string [0..1]
Maximum Cardinality differs (Pattern: *; Resource: 1)
message definition does not contain the recommended logical text for Definition (Pattern: The identifier that is used to identify this version of the message definition when it is referenced in a specification, model, design or instance. This is an arbitrary value managed by the message definition author and is not expected to be globally unique. For example, it might be a timestamp (e.g. yyyymmdd) if a managed version is not available. There is also no expectation that versions are orderable.; Resource: The identifier that is used to identify this version of the message definition when it is referenced in a specification, model, design or instance. This is an arbitrary value managed by the message definition author and is not expected to be globally unique. For example, it might be a timestamp (e.g. yyyymmdd) if a managed version is not available. There is also no expectation that versions can be placed in a lexicographical sequence.)
message definition does not contain the recommended logical text for Comment (Pattern: There may be multiple different instances of a message definition that have the same identifier but different versions.; Resource: There may be different message definition instances that have the same identifier but different versions. The version can be appended to the url in a reference to allow a reference to a particular business version of the message definition with the format [url]|[version]. The version SHOULD NOT contain a '#' - see [Business Version](resource.html#bv-format).)">1 C</td>
<td style="background-color: #ffebe6" title="MessageDefinition.name : string [0..1]
Maximum Cardinality differs (Pattern: *; Resource: 1)
message definition does not contain the recommended logical text for Short (Pattern: Name for this message definition (Computer friendly); Resource: Name for this message definition (computer friendly))
message definition does not contain the recommended logical text for Requirements (Pattern: Supports code generation.; Resource: Support human navigation and code generation.)">1 C</td>
<td style="background-color: #ffebe6" title="MessageDefinition.title : string [0..1]
Maximum Cardinality differs (Pattern: *; Resource: 1)
message definition does not contain the recommended logical text for Short (Pattern: Name for this message definition (Human friendly); Resource: Name for this message definition (human friendly))">1 C</td>
<td style="background-color: #f2f2f2" title=""> </td>
<td style="background-color: #f2f2f2" title=""> </td>
<td style="background-color: #f2f2f2" title=""> </td>
<td style="background-color: #ffebe6" title="MessageDefinition.status : code [1..1]
Maximum Cardinality differs (Pattern: *; Resource: 1)
message definition does not contain the recommended logical text for Definition (Pattern: The current state of the message definition.; Resource: The status of this message definition. Enables tracking the life-cycle of the content.)
message definition does not contain the recommended logical text for Comment (Pattern: A nominal state-transition diagram can be found in the] documentation
Unknown does not represent "other" - one of the defined statuses must apply. Unknown is used when the authoring system is not sure what the current status is.; Resource: Allows filtering of message definitions that are appropriate for use versus not.)">1 C</td>
<td style="background-color: #ffebe6" title="MessageDefinition.experimental : boolean [0..1]
Maximum Cardinality differs (Pattern: *; Resource: 1)
message definition does not contain the recommended logical text for Short (Pattern: If for testing purposes, not real usage; Resource: For testing purposes, not real usage)
message definition does not contain the recommended logical text for Definition (Pattern: A flag to indicate that this message definition is authored for testing purposes (or education/evaluation/marketing), and is not intended to be used for genuine usage.; Resource: A Boolean value to indicate that this message definition is authored for testing purposes (or education/evaluation/marketing) and is not intended to be used for genuine usage.)
message definition does not contain the recommended logical text for Requirements (Pattern: Enables experimental content to be developed following the same life-cycle as a production-level message definition would.; Resource: Enables experimental content to be developed following the same lifecycle that would be used for a production-level message definition.)
message definition does not contain the recommended logical text for Comment (Pattern: Allows filtering of message definition that are appropriate for use vs. not.; Resource: Allows filtering of message definitions that are appropriate for use versus not.)">1 C</td>
<td style="background-color: #f2f2f2" title=""> </td>
<td style="background-color: #ffebe6" title="MessageDefinition.date : dateTime [1..1]
Minimum Cardinality differs (Pattern: 0; Resource: 1)
Maximum Cardinality differs (Pattern: *; Resource: 1)
message definition does not contain the recommended logical text for Short (Pattern: Date status first applied; Resource: Date last changed)
message definition does not contain the recommended logical text for Definition (Pattern: For draft definitions, indicates the date of initial creation. For active definitions, represents the date of activation. For withdrawn definitions, indicates the date of withdrawal.; Resource: The date (and optionally time) when the message definition was published. The date must change when the business version changes and it must change if the status code changes. In addition, it should change when the substantive content of the message definition changes.)">1 C</td>
<td style="background-color: #ffebe6" title="MessageDefinition.publisher : string [0..1]
Maximum Cardinality differs (Pattern: *; Resource: 1)
Resource does not types that are part of the pattern (Pattern: null; Resource: string)
Resource supports types that are not part of the pattern (Pattern: null; Resource: string)
message definition does not contain the recommended logical text for Short (Pattern: The name of the individual or organization that published the message definition; Resource: Name of the publisher/steward (organization or individual))
message definition does not contain the recommended logical text for Definition (Pattern: Helps establish the "authority/credibility" of the message definition. May also allow for contact.; Resource: The name of the organization or individual responsible for the release and ongoing maintenance of the message definition.)
message definition does not contain the recommended logical text for Requirements (Pattern: Usually an organization, but may be an individual. The publisher (or steward) of the message definition is the organization or individual primarily responsible for the maintenance and upkeep of the message definition. This is not necessarily the same individual or organization that developed and initially authored the content. The publisher is the primary point of contact for questions or issues with the message definition. This item SHOULD be populated unless the information is available from context.; Resource: Helps establish the "authority/credibility" of the message definition. May also allow for contact.)">1 TC</td>
<td style="background-color: #ffffff" title="MessageDefinition.contact : ContactDetail [0..*]">1 </td>
<td style="background-color: #ffebe6" title="MessageDefinition.description : markdown [0..1]
Maximum Cardinality differs (Pattern: *; Resource: 1)
message definition does not contain the recommended logical text for Definition (Pattern: A free text natural language description of the message definition from the consumer's perspective.; Resource: A free text natural language description of the message definition from a consumer's perspective.)
message definition does not contain the recommended logical text for Comment (Pattern: This description can be used to capture details such as comments about misuse, instructions for clinical use and interpretation, literature references, examples from the paper world, etc. It is not a rendering of the module as conveyed in the text field of the resource itself. This item SHOULD be populated unless the information is available from context.; Resource: This description can be used to capture details such as comments about misuse, instructions for clinical use and interpretation, literature references, examples from the paper world, etc. It is not a rendering of the message definition as conveyed in the 'text' field of the resource itself. This item SHOULD be populated unless the information is available from context (e.g. the language of the message definition is presumed to be the predominant language in the place the message definition was created).)">1 C</td>
<td style="background-color: #ffffff" title="MessageDefinition.useContext : UsageContext [0..*]
message definition does not contain the recommended logical text for Short (Pattern: Content intends to support these contexts; Resource: The context that the content is intended to support)
message definition does not contain the recommended logical text for Definition (Pattern: The content was developed with a focus and intent of supporting the contexts that are listed. These terms may be used to assist with indexing and searching of code system definitions.; Resource: The content was developed with a focus and intent of supporting the contexts that are listed. These contexts may be general categories (gender, age, ...) or may be references to specific programs (insurance plans, studies, ...) and may be used to assist with indexing and searching for appropriate message definition instances.)
message definition does not contain the recommended logical text for Comment (Pattern: When multiple usageContexts are specified, there is no expectation for whether all or any of the contexts apply.; Resource: When multiple useContexts are specified, there is no expectation that all or any of the contexts apply.)">1 </td>
<td style="background-color: #ffffff" title="MessageDefinition.jurisdiction : CodeableConcept [0..*]
message definition does not contain the recommended logical text for Definition (Pattern: A jurisdiction in which the message definition is intended to be used.; Resource: A legal or geographic region in which the message definition is intended to be used.)">1 </td>
<td style="background-color: #f2f2f2" title=""> </td>
<td style="background-color: #ffebe6" title="MessageDefinition.purpose : markdown [0..1]
Maximum Cardinality differs (Pattern: *; Resource: 1)
message definition does not contain the recommended logical text for Definition (Pattern: Explains why this message definition is needed and why it has been designed as it has.; Resource: Explanation of why this message definition is needed and why it has been designed as it has.)
message definition does not contain the recommended logical text for Comment (Pattern: This element does not describe the usage of the message definition. Rather it is for traceability of ''why'' the resource is either needed or ''why'' it is defined as it is. This may be used to point to source materials or specifications that drove the structure of this message definition.; Resource: This element does not describe the usage of the message definition. Instead, it provides traceability of ''why'' the resource is either needed or ''why'' it is defined as it is. This may be used to point to source materials or specifications that drove the structure of this message definition.)">1 C</td>
<td style="background-color: #ffebe6" title="MessageDefinition.copyright : markdown [0..1]
Maximum Cardinality differs (Pattern: *; Resource: 1)
message definition does not contain the recommended logical text for Requirements (Pattern: Consumers of the message definition must be able to determine any legal restrictions on the use of the artifact and/or its content.; Resource: Consumers must be able to determine any legal restrictions on the use of the message definition and/or its content.)">1 C</td>
<td style="background-color: #f2f2f2" title=""> </td>
<td style="background-color: #f2f2f2" title=""> </td>
<td style="background-color: #f2f2f2" title=""> </td>
<td style="background-color: #f2f2f2" title=""> </td>
<td style="background-color: #f2f2f2" title=""> </td>
<td style="background-color: #f2f2f2" title=""> </td>
</tr>
<tr>
<td><a href="observationdefinition.html">ObservationDefinition</a></td>
<td style="background-color: #ffebe6" title="ObservationDefinition.url : uri [0..1]
Maximum Cardinality differs (Pattern: *; Resource: 1)
observation definition does not contain the recommended logical text for Short (Pattern: Logical canonical URL to reference this observation definition (globally unique); Resource: Logical canonical URL to reference this ObservationDefinition (globally unique))
observation definition does not contain the recommended logical text for Definition (Pattern: An absolute URL that is used to identify this observation definition when it is referenced in a specification, model, design or an instance. This SHALL be a URL, SHOULD be globally unique, and SHOULD be an address at which this observation definition is (or will be) published. The URL SHOULD include the major version of the observation definition. For more information see(resource.html#versions).; Resource: An absolute URL that is used to identify this ObservationDefinition when it is referenced in a specification, model, design or an instance. This SHALL be a URL, SHOULD be globally unique, and SHOULD be an address at which this ObservationDefinition is (or will be) published. The URL SHOULD include the major version of the ObservationDefinition. For more information see Technical and Business Versions.)
observation definition does not contain the recommended logical text for Requirements (Pattern: Allows the observation definition to be referenced by a single globally unique identifier.; Resource: Allows the ObservationDefinition to be referenced by a single globally unique identifier.)
observation definition does not contain the recommended logical text for Comment (Pattern: Can be a urn:uuid: or a urn:oid:, but real http: addresses are preferred. This is the URI that will be used when making canonical references to this resource.; Resource: Can be a urn:uuid: or a urn:oid:, but real http: addresses are preferred. This is the URI that will be used when making canonical references to this resource.)">1 C</td>
<td style="background-color: #ffebe6" title="ObservationDefinition.identifier : Identifier [0..1]
Maximum Cardinality differs (Pattern: *; Resource: 1)
observation definition does not contain the recommended logical text for Short (Pattern: Business Identifier for observation definition; Resource: Business identifier of the ObservationDefinition)
observation definition does not contain the recommended logical text for Definition (Pattern: Business identifiers assigned to this observation definition by the performer and/or other systems. These identifiers remain constant as the resource is updated and propagates from server to server.; Resource: Business identifiers assigned to this ObservationDefinition. by the performer and/or other systems. These identifiers remain constant as the resource is updated and propagates from server to server.)
observation definition does not contain the recommended logical text for Requirements (Pattern: Allows identification of the observation definition as it is known by various participating systems and in a way that remains consistent across servers.; Resource: Allows identification of the ObservationDefinition as it is known by various participating systems and in a way that remains consistent across servers.)
observation definition does not contain the recommended logical text for Comment (Pattern: Note: This is a business identifier, not a resource identifier (see(resource.html#identifiers)). It is best practice for the identifier to only appear on a single resource instance, however business practices may occasionally dictate that multiple resource instances with the same identifier can exist - possibly even with different resource types. For example, multiple Patient and a Person resource instance might share the same social insurance number.; Resource: This is a business identifier, not a resource identifier. It is best practice for the identifier to only appear on a single resource instance, however business practices may occasionally dictate that multiple resource instances with the same identifier can exist - possibly even with different resource types.)">1 C</td>
<td style="background-color: #ffebe6" title="ObservationDefinition.version : string [0..1]
Maximum Cardinality differs (Pattern: *; Resource: 1)
observation definition does not contain the recommended logical text for Short (Pattern: Business version of the observation definition; Resource: Business version of the ObservationDefinition)
observation definition does not contain the recommended logical text for Definition (Pattern: The identifier that is used to identify this version of the observation definition when it is referenced in a specification, model, design or instance. This is an arbitrary value managed by the observation definition author and is not expected to be globally unique. For example, it might be a timestamp (e.g. yyyymmdd) if a managed version is not available. There is also no expectation that versions are orderable.; Resource: The identifier that is used to identify this version of the ObservationDefinition when it is referenced in a specification, model, design or instance. This is an arbitrary value managed by the ObservationDefinition author and is not expected to be globally unique. For example, it might be a timestamp (e.g. yyyymmdd) if a managed version is not available. There is also no expectation that versions are orderable.)
observation definition does not contain the recommended logical text for Comment (Pattern: There may be multiple different instances of a observation definition that have the same identifier but different versions.; Resource: There may be multiple different instances of a ObservationDefinition that have the same identifier but different versions.)">1 C</td>
<td style="background-color: #ffebe6" title="ObservationDefinition.name : string [0..1]
Maximum Cardinality differs (Pattern: *; Resource: 1)
observation definition does not contain the recommended logical text for Short (Pattern: Name for this observation definition (Computer friendly); Resource: Name for this ObservationDefinition (computer friendly))
observation definition does not contain the recommended logical text for Definition (Pattern: A natural language name identifying the observation definition. This name should be usable as an identifier for the module by machine processing applications such as code generation.; Resource: A natural language name identifying the ObservationDefinition. This name should be usable as an identifier for the module by machine processing applications such as code generation.)
observation definition does not contain the recommended logical text for Requirements (Pattern: Supports code generation.; Resource: Support human navigation and code generation.)">1 C</td>
<td style="background-color: #ffebe6" title="ObservationDefinition.title : string [0..1]
Maximum Cardinality differs (Pattern: *; Resource: 1)
observation definition does not contain the recommended logical text for Short (Pattern: Name for this observation definition (Human friendly); Resource: Name for this ObservationDefinition (human friendly))
observation definition does not contain the recommended logical text for Definition (Pattern: A short, descriptive, user-friendly title for the observation definition.; Resource: A short, descriptive, user-friendly title for the ObservationDefinition.)">1 C</td>
<td style="background-color: #f2f2f2" title=""> </td>
<td style="background-color: #f2f2f2" title=""> </td>
<td style="background-color: #f2f2f2" title=""> </td>
<td style="background-color: #ffebe6" title="ObservationDefinition.status : code [1..1]
Maximum Cardinality differs (Pattern: *; Resource: 1)
observation definition does not contain the recommended logical text for Definition (Pattern: The current state of the observation definition.; Resource: The current state of the ObservationDefinition.)
observation definition does not contain the recommended logical text for Comment (Pattern: A nominal state-transition diagram can be found in the] documentation
Unknown does not represent "other" - one of the defined statuses must apply. Unknown is used when the authoring system is not sure what the current status is.; Resource: A nominal state-transition diagram can be found in the [[definition.html#statemachine | Definition pattern]] documentation
Unknown does not represent "other" - one of the defined statuses must apply. Unknown is used when the authoring system is not sure what the current status is.)">1 C</td>
<td style="background-color: #ffebe6" title="ObservationDefinition.experimental : boolean [0..1]
Maximum Cardinality differs (Pattern: *; Resource: 1)
observation definition does not contain the recommended logical text for Definition (Pattern: A flag to indicate that this observation definition is authored for testing purposes (or education/evaluation/marketing), and is not intended to be used for genuine usage.; Resource: A flag to indicate that this ObservationDefinition is authored for testing purposes (or education/evaluation/marketing), and is not intended to be used for genuine usage.)
observation definition does not contain the recommended logical text for Requirements (Pattern: Enables experimental content to be developed following the same life-cycle as a production-level observation definition would.; Resource: null)
observation definition does not contain the recommended logical text for Comment (Pattern: Allows filtering of observation definition that are appropriate for use vs. not.; Resource: Allows filtering of ObservationDefinition that are appropriate for use vs. not.)">1 C</td>
<td style="background-color: #f2f2f2" title=""> </td>
<td style="background-color: #ffebe6" title="ObservationDefinition.date : dateTime [0..1]
Maximum Cardinality differs (Pattern: *; Resource: 1)
observation definition does not contain the recommended logical text for Short (Pattern: Date status first applied; Resource: Date last changed)
observation definition does not contain the recommended logical text for Definition (Pattern: For draft definitions, indicates the date of initial creation. For active definitions, represents the date of activation. For withdrawn definitions, indicates the date of withdrawal.; Resource: The date (and optionally time) when the ObservationDefinition was published. The date must change when the business version changes and it must change if the status code changes. In addition, it should change when the substantive content of the ObservationDefinition changes.)">1 C</td>
<td style="background-color: #ffebe6" title="ObservationDefinition.publisher : string [0..1]
Maximum Cardinality differs (Pattern: *; Resource: 1)
Resource does not types that are part of the pattern (Pattern: null; Resource: string)
Resource supports types that are not part of the pattern (Pattern: null; Resource: string)
observation definition does not contain the recommended logical text for Short (Pattern: The name of the individual or organization that published the observation definition; Resource: The name of the individual or organization that published the ObservationDefinition)
observation definition does not contain the recommended logical text for Definition (Pattern: Helps establish the "authority/credibility" of the observation definition. May also allow for contact.; Resource: Helps establish the "authority/credibility" of the ObservationDefinition. May also allow for contact.)
observation definition does not contain the recommended logical text for Requirements (Pattern: Usually an organization, but may be an individual. The publisher (or steward) of the observation definition is the organization or individual primarily responsible for the maintenance and upkeep of the observation definition. This is not necessarily the same individual or organization that developed and initially authored the content. The publisher is the primary point of contact for questions or issues with the observation definition. This item SHOULD be populated unless the information is available from context.; Resource: Usually an organization, but may be an individual. The publisher (or steward) of the ObservationDefinition is the organization or individual primarily responsible for the maintenance and upkeep of the ObservationDefinition. This is not necessarily the same individual or organization that developed and initially authored the content. The publisher is the primary point of contact for questions or issues with the ObservationDefinition. This item SHOULD be populated unless the information is available from context.)">1 TC</td>
<td style="background-color: #ffffff" title="ObservationDefinition.contact : ContactDetail [0..*]">1 </td>
<td style="background-color: #ffebe6" title="ObservationDefinition.description : markdown [0..1]
Maximum Cardinality differs (Pattern: *; Resource: 1)
observation definition does not contain the recommended logical text for Short (Pattern: Natural language description of the observation definition; Resource: Natural language description of the ObservationDefinition)
observation definition does not contain the recommended logical text for Definition (Pattern: A free text natural language description of the observation definition from the consumer's perspective.; Resource: A free text natural language description of the ObservationDefinition from the consumer's perspective.)">1 C</td>
<td style="background-color: #ffffff" title="ObservationDefinition.useContext : UsageContext [0..*]
observation definition does not contain the recommended logical text for Definition (Pattern: The content was developed with a focus and intent of supporting the contexts that are listed. These terms may be used to assist with indexing and searching of code system definitions.; Resource: The content was developed with a focus and intent of supporting the contexts that are listed. These contexts may be general categories (gender, age, ...) or may be references to specific programs (insurance plans, studies, ...) and may be used to assist with indexing and searching for appropriate ObservationDefinition instances.)">1 </td>
<td style="background-color: #ffffff" title="ObservationDefinition.jurisdiction : CodeableConcept [0..*]
observation definition does not contain the recommended logical text for Short (Pattern: Intended jurisdiction for observation definition (if applicable); Resource: Intended jurisdiction for this ObservationDefinition (if applicable))
observation definition does not contain the recommended logical text for Definition (Pattern: A jurisdiction in which the observation definition is intended to be used.; Resource: A jurisdiction in which the ObservationDefinition is intended to be used.)">1 </td>
<td style="background-color: #f2f2f2" title=""> </td>
<td style="background-color: #ffebe6" title="ObservationDefinition.purpose : markdown [0..1]
Maximum Cardinality differs (Pattern: *; Resource: 1)
observation definition does not contain the recommended logical text for Short (Pattern: Why this observation definition is defined; Resource: Why this ObservationDefinition is defined)
observation definition does not contain the recommended logical text for Definition (Pattern: Explains why this observation definition is needed and why it has been designed as it has.; Resource: Explains why this ObservationDefinition is needed and why it has been designed as it has.)
observation definition does not contain the recommended logical text for Comment (Pattern: This element does not describe the usage of the observation definition. Rather it is for traceability of ''why'' the resource is either needed or ''why'' it is defined as it is. This may be used to point to source materials or specifications that drove the structure of this observation definition.; Resource: This element does not describe the usage of the ObservationDefinition. Rather it is for traceability of ''why'' the resource is either needed or ''why'' it is defined as it is. This may be used to point to source materials or specifications that drove the structure of this ObservationDefinition.)">1 C</td>
<td style="background-color: #ffebe6" title="ObservationDefinition.copyright : markdown [0..1]
Maximum Cardinality differs (Pattern: *; Resource: 1)
observation definition does not contain the recommended logical text for Definition (Pattern: A copyright statement relating to the observation definition and/or its contents. Copyright statements are generally legal restrictions on the use and publishing of the observation definition.; Resource: Copyright statement relating to the ObservationDefinition and/or its contents. Copyright statements are generally legal restrictions on the use and publishing of the ObservationDefinition.)
observation definition does not contain the recommended logical text for Requirements (Pattern: Consumers of the observation definition must be able to determine any legal restrictions on the use of the artifact and/or its content.; Resource: Consumers of the ObservationDefinition must be able to determine any legal restrictions on the use of the artifact and/or its content.)">1 C</td>
<td style="background-color: #ffebe6" title="ObservationDefinition.approvalDate : date [0..1]
Maximum Cardinality differs (Pattern: *; Resource: 1)
observation definition does not contain the recommended logical text for Short (Pattern: When observation definition approved by publisher; Resource: When ObservationDefinition was approved by publisher)">1 C</td>
<td style="background-color: #ffebe6" title="ObservationDefinition.lastReviewDate : date [0..1]
Maximum Cardinality differs (Pattern: *; Resource: 1)
observation definition does not contain the recommended logical text for Short (Pattern: Last review date for the observation definition; Resource: Date on which the asset content was last reviewed)">1 C</td>
<td style="background-color: #ffebe6" title="ObservationDefinition.effectivePeriod : Period [0..1]
Maximum Cardinality differs (Pattern: *; Resource: 1)
observation definition does not contain the recommended logical text for Short (Pattern: The effective date range for the observation definition; Resource: The effective date range for the ObservationDefinition)
observation definition does not contain the recommended logical text for Definition (Pattern: The period during which the observation definition content was or is planned to be effective.; Resource: The period during which the ObservationDefinition content was or is planned to be effective.)
observation definition does not contain the recommended logical text for Comment (Pattern: The effective period for a observation definition determines when the content is applicable for usage and is independent of publication and review dates. For example, a measure intended to be used for the year 2016 would be published in 2015.; Resource: The effective period for an ObservationDefinition determines when the content is applicable for usage and is independent of publication and review dates. For example, an observation intended to be used for the year 2021 might be published in 2020.)">1 C</td>
<td style="background-color: #f2f2f2" title=""> </td>
<td style="background-color: #f2f2f2" title=""> </td>
<td style="background-color: #f2f2f2" title=""> </td>
</tr>
<tr>
<td><a href="operationdefinition.html">OperationDefinition</a></td>
<td style="background-color: #ffebe6" title="OperationDefinition.url : uri [0..1]
Maximum Cardinality differs (Pattern: *; Resource: 1)
operation definition does not contain the recommended logical text for Short (Pattern: Logical canonical URL to reference this operation definition (globally unique); Resource: Canonical identifier for this operation definition, represented as a URI (globally unique))
operation definition does not contain the recommended logical text for Definition (Pattern: An absolute URL that is used to identify this operation definition when it is referenced in a specification, model, design or an instance. This SHALL be a URL, SHOULD be globally unique, and SHOULD be an address at which this operation definition is (or will be) published. The URL SHOULD include the major version of the operation definition. For more information see(resource.html#versions).; Resource: An absolute URI that is used to identify this operation definition when it is referenced in a specification, model, design or an instance; also called its canonical identifier. This SHOULD be globally unique and SHOULD be a literal address at which an authoritative instance of this operation definition is (or will be) published. This URL can be the target of a canonical reference. It SHALL remain the same when the operation definition is stored on different servers.)
operation definition does not contain the recommended logical text for Comment (Pattern: Can be a urn:uuid: or a urn:oid:, but real http: addresses are preferred. This is the URI that will be used when making canonical references to this resource.; Resource: Can be a urn:uuid: or a urn:oid: but real http: addresses are preferred. Multiple instances may share the same URL if they have a distinct version.
The determination of when to create a new version of a resource (same url, new version) vs. defining a new artifact is up to the author. Considerations for making this decision are found in [Technical and Business Versions](resource.html#versions).
In some cases, the resource can no longer be found at the stated url, but the url itself cannot change. Implementations can use the [meta.source](resource.html#meta) element to indicate where the current master source of the resource can be found.)">1 C</td>
<td style="background-color: #f2f2f2" title=""> </td>
<td style="background-color: #ffebe6" title="OperationDefinition.version : string [0..1]
Maximum Cardinality differs (Pattern: *; Resource: 1)
operation definition does not contain the recommended logical text for Definition (Pattern: The identifier that is used to identify this version of the operation definition when it is referenced in a specification, model, design or instance. This is an arbitrary value managed by the operation definition author and is not expected to be globally unique. For example, it might be a timestamp (e.g. yyyymmdd) if a managed version is not available. There is also no expectation that versions are orderable.; Resource: The identifier that is used to identify this version of the operation definition when it is referenced in a specification, model, design or instance. This is an arbitrary value managed by the operation definition author and is not expected to be globally unique. For example, it might be a timestamp (e.g. yyyymmdd) if a managed version is not available. There is also no expectation that versions can be placed in a lexicographical sequence.)
operation definition does not contain the recommended logical text for Comment (Pattern: There may be multiple different instances of a operation definition that have the same identifier but different versions.; Resource: There may be different operation definition instances that have the same identifier but different versions. The version can be appended to the url in a reference to allow a reference to a particular business version of the operation definition with the format [url]|[version]. The version SHOULD NOT contain a '#' - see [Business Version](resource.html#bv-format).)">1 C</td>
<td style="background-color: #ffebe6" title="OperationDefinition.name : string [1..1]
Minimum Cardinality differs (Pattern: 0; Resource: 1)
Maximum Cardinality differs (Pattern: *; Resource: 1)
operation definition does not contain the recommended logical text for Short (Pattern: Name for this operation definition (Computer friendly); Resource: Name for this operation definition (computer friendly))
operation definition does not contain the recommended logical text for Requirements (Pattern: Supports code generation.; Resource: Support human navigation and code generation.)">1 C</td>
<td style="background-color: #ffebe6" title="OperationDefinition.title : string [0..1]
Maximum Cardinality differs (Pattern: *; Resource: 1)
operation definition does not contain the recommended logical text for Short (Pattern: Name for this operation definition (Human friendly); Resource: Name for this operation definition (human friendly))">1 C</td>
<td style="background-color: #f2f2f2" title=""> </td>
<td style="background-color: #f2f2f2" title=""> </td>
<td style="background-color: #f2f2f2" title=""> </td>
<td style="background-color: #ffebe6" title="OperationDefinition.status : code [1..1]
Maximum Cardinality differs (Pattern: *; Resource: 1)
operation definition does not contain the recommended logical text for Definition (Pattern: The current state of the operation definition.; Resource: The status of this operation definition. Enables tracking the life-cycle of the content.)
operation definition does not contain the recommended logical text for Comment (Pattern: A nominal state-transition diagram can be found in the] documentation
Unknown does not represent "other" - one of the defined statuses must apply. Unknown is used when the authoring system is not sure what the current status is.; Resource: Allows filtering of operation definitions that are appropriate for use versus not.)">1 C</td>
<td style="background-color: #ffebe6" title="OperationDefinition.experimental : boolean [0..1]
Maximum Cardinality differs (Pattern: *; Resource: 1)
operation definition does not contain the recommended logical text for Short (Pattern: If for testing purposes, not real usage; Resource: For testing purposes, not real usage)
operation definition does not contain the recommended logical text for Definition (Pattern: A flag to indicate that this operation definition is authored for testing purposes (or education/evaluation/marketing), and is not intended to be used for genuine usage.; Resource: A Boolean value to indicate that this operation definition is authored for testing purposes (or education/evaluation/marketing) and is not intended to be used for genuine usage.)
operation definition does not contain the recommended logical text for Requirements (Pattern: Enables experimental content to be developed following the same life-cycle as a production-level operation definition would.; Resource: Enables experimental content to be developed following the same lifecycle that would be used for a production-level operation definition.)
operation definition does not contain the recommended logical text for Comment (Pattern: Allows filtering of operation definition that are appropriate for use vs. not.; Resource: Allows filtering of operation definitions that are appropriate for use versus not.)">1 C</td>
<td style="background-color: #ffebe6" title="OperationDefinition.resource : code [0..*]
Element names differ (Pattern: subject[x]; Resource: resource)
Resource does not types that are part of the pattern (Pattern: null; Resource: code)
Resource supports types that are not part of the pattern (Pattern: null; Resource: code)
operation definition does not contain the recommended logical text for Short (Pattern: Type of individual the defined service is for; Resource: Types this operation applies to)
operation definition does not contain the recommended logical text for Definition (Pattern: A code or group definition that describes the intended subject of instantiations of this definition.; Resource: The types on which this operation can be executed.)
operation definition does not contain the recommended logical text for Requirements (Pattern: Many protocols, order sets and guidelines are inted for use only with specific types of patients or subjects.; Resource: null)">1 NT</td>
<td style="background-color: #ffebe6" title="OperationDefinition.date : dateTime [0..1]
Maximum Cardinality differs (Pattern: *; Resource: 1)
operation definition does not contain the recommended logical text for Short (Pattern: Date status first applied; Resource: Date last changed)
operation definition does not contain the recommended logical text for Definition (Pattern: For draft definitions, indicates the date of initial creation. For active definitions, represents the date of activation. For withdrawn definitions, indicates the date of withdrawal.; Resource: The date (and optionally time) when the operation definition was published. The date must change when the business version changes and it must change if the status code changes. In addition, it should change when the substantive content of the operation definition changes.)">1 C</td>
<td style="background-color: #ffebe6" title="OperationDefinition.publisher : string [0..1]
Maximum Cardinality differs (Pattern: *; Resource: 1)
Resource does not types that are part of the pattern (Pattern: null; Resource: string)
Resource supports types that are not part of the pattern (Pattern: null; Resource: string)
operation definition does not contain the recommended logical text for Short (Pattern: The name of the individual or organization that published the operation definition; Resource: Name of the publisher/steward (organization or individual))
operation definition does not contain the recommended logical text for Definition (Pattern: Helps establish the "authority/credibility" of the operation definition. May also allow for contact.; Resource: The name of the organization or individual responsible for the release and ongoing maintenance of the operation definition.)
operation definition does not contain the recommended logical text for Requirements (Pattern: Usually an organization, but may be an individual. The publisher (or steward) of the operation definition is the organization or individual primarily responsible for the maintenance and upkeep of the operation definition. This is not necessarily the same individual or organization that developed and initially authored the content. The publisher is the primary point of contact for questions or issues with the operation definition. This item SHOULD be populated unless the information is available from context.; Resource: Helps establish the "authority/credibility" of the operation definition. May also allow for contact.)">1 TC</td>
<td style="background-color: #ffffff" title="OperationDefinition.contact : ContactDetail [0..*]">1 </td>
<td style="background-color: #ffebe6" title="OperationDefinition.description : markdown [0..1]
Maximum Cardinality differs (Pattern: *; Resource: 1)
operation definition does not contain the recommended logical text for Definition (Pattern: A free text natural language description of the operation definition from the consumer's perspective.; Resource: A free text natural language description of the operation definition from a consumer's perspective.)
operation definition does not contain the recommended logical text for Comment (Pattern: This description can be used to capture details such as comments about misuse, instructions for clinical use and interpretation, literature references, examples from the paper world, etc. It is not a rendering of the module as conveyed in the text field of the resource itself. This item SHOULD be populated unless the information is available from context.; Resource: This description can be used to capture details such as comments about misuse, instructions for clinical use and interpretation, literature references, examples from the paper world, etc. It is not a rendering of the operation definition as conveyed in the 'text' field of the resource itself. This item SHOULD be populated unless the information is available from context (e.g. the language of the operation definition is presumed to be the predominant language in the place the operation definition was created).)">1 C</td>
<td style="background-color: #ffffff" title="OperationDefinition.useContext : UsageContext [0..*]
operation definition does not contain the recommended logical text for Short (Pattern: Content intends to support these contexts; Resource: The context that the content is intended to support)