fhirbolt-shared 0.4.0

Internal shared library of the fhirbolt project
Documentation
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
// Generated on 2023-05-17 by fhirbolt-codegen v0.10.0
use phf::{phf_map, phf_ordered_set};
pub static ELEMENT_MAP: phf::Map<&str, &phf::OrderedSet<&str>> = phf_map! { "base64Binary" => & BASE64BINARY , "boolean" => & BOOLEAN , "canonical" => & CANONICAL , "code" => & CODE , "date" => & DATE , "dateTime" => & DATETIME , "decimal" => & DECIMAL , "id" => & ID , "instant" => & INSTANT , "integer" => & INTEGER , "integer64" => & INTEGER64 , "markdown" => & MARKDOWN , "oid" => & OID , "positiveInt" => & POSITIVEINT , "string" => & STRING , "time" => & TIME , "unsignedInt" => & UNSIGNEDINT , "uri" => & URI , "url" => & URL , "uuid" => & UUID , "xhtml" => & XHTML , "Address" => & ADDRESS , "Age" => & AGE , "Annotation" => & ANNOTATION , "Attachment" => & ATTACHMENT , "Availability" => & AVAILABILITY , "Availability.availableTime" => & AVAILABILITY_AVAILABLETIME , "Availability.notAvailableTime" => & AVAILABILITY_NOTAVAILABLETIME , "CodeableConcept" => & CODEABLECONCEPT , "CodeableReference" => & CODEABLEREFERENCE , "Coding" => & CODING , "ContactDetail" => & CONTACTDETAIL , "ContactPoint" => & CONTACTPOINT , "Contributor" => & CONTRIBUTOR , "Count" => & COUNT , "DataRequirement" => & DATAREQUIREMENT , "DataRequirement.codeFilter" => & DATAREQUIREMENT_CODEFILTER , "DataRequirement.dateFilter" => & DATAREQUIREMENT_DATEFILTER , "DataRequirement.valueFilter" => & DATAREQUIREMENT_VALUEFILTER , "DataRequirement.sort" => & DATAREQUIREMENT_SORT , "Distance" => & DISTANCE , "Dosage" => & DOSAGE , "Dosage.doseAndRate" => & DOSAGE_DOSEANDRATE , "Duration" => & DURATION , "ElementDefinition" => & ELEMENTDEFINITION , "ElementDefinition.slicing" => & ELEMENTDEFINITION_SLICING , "ElementDefinition.slicing.discriminator" => & ELEMENTDEFINITION_SLICING_DISCRIMINATOR , "ElementDefinition.base" => & ELEMENTDEFINITION_BASE , "ElementDefinition.type" => & ELEMENTDEFINITION_TYPE , "ElementDefinition.example" => & ELEMENTDEFINITION_EXAMPLE , "ElementDefinition.constraint" => & ELEMENTDEFINITION_CONSTRAINT , "ElementDefinition.binding" => & ELEMENTDEFINITION_BINDING , "ElementDefinition.binding.additional" => & ELEMENTDEFINITION_BINDING_ADDITIONAL , "ElementDefinition.mapping" => & ELEMENTDEFINITION_MAPPING , "Expression" => & EXPRESSION , "ExtendedContactDetail" => & EXTENDEDCONTACTDETAIL , "Extension" => & EXTENSION , "HumanName" => & HUMANNAME , "Identifier" => & IDENTIFIER , "MarketingStatus" => & MARKETINGSTATUS , "Meta" => & META , "MonetaryComponent" => & MONETARYCOMPONENT , "Money" => & MONEY , "Narrative" => & NARRATIVE , "ParameterDefinition" => & PARAMETERDEFINITION , "Period" => & PERIOD , "ProductShelfLife" => & PRODUCTSHELFLIFE , "Quantity" => & QUANTITY , "Range" => & RANGE , "Ratio" => & RATIO , "RatioRange" => & RATIORANGE , "Reference" => & REFERENCE , "RelatedArtifact" => & RELATEDARTIFACT , "SampledData" => & SAMPLEDDATA , "Signature" => & SIGNATURE , "Timing" => & TIMING , "Timing.repeat" => & TIMING_REPEAT , "TriggerDefinition" => & TRIGGERDEFINITION , "UsageContext" => & USAGECONTEXT , "VirtualServiceDetail" => & VIRTUALSERVICEDETAIL , "Account" => & ACCOUNT , "Account.coverage" => & ACCOUNT_COVERAGE , "Account.guarantor" => & ACCOUNT_GUARANTOR , "Account.diagnosis" => & ACCOUNT_DIAGNOSIS , "Account.procedure" => & ACCOUNT_PROCEDURE , "Account.relatedAccount" => & ACCOUNT_RELATEDACCOUNT , "Account.balance" => & ACCOUNT_BALANCE , "ActivityDefinition" => & ACTIVITYDEFINITION , "ActivityDefinition.participant" => & ACTIVITYDEFINITION_PARTICIPANT , "ActivityDefinition.dynamicValue" => & ACTIVITYDEFINITION_DYNAMICVALUE , "ActorDefinition" => & ACTORDEFINITION , "AdministrableProductDefinition" => & ADMINISTRABLEPRODUCTDEFINITION , "AdministrableProductDefinition.property" => & ADMINISTRABLEPRODUCTDEFINITION_PROPERTY , "AdministrableProductDefinition.routeOfAdministration" => & ADMINISTRABLEPRODUCTDEFINITION_ROUTEOFADMINISTRATION , "AdministrableProductDefinition.routeOfAdministration.targetSpecies" => & ADMINISTRABLEPRODUCTDEFINITION_ROUTEOFADMINISTRATION_TARGETSPECIES , "AdministrableProductDefinition.routeOfAdministration.targetSpecies.withdrawalPeriod" => & ADMINISTRABLEPRODUCTDEFINITION_ROUTEOFADMINISTRATION_TARGETSPECIES_WITHDRAWALPERIOD , "AdverseEvent" => & ADVERSEEVENT , "AdverseEvent.participant" => & ADVERSEEVENT_PARTICIPANT , "AdverseEvent.suspectEntity" => & ADVERSEEVENT_SUSPECTENTITY , "AdverseEvent.suspectEntity.causality" => & ADVERSEEVENT_SUSPECTENTITY_CAUSALITY , "AdverseEvent.contributingFactor" => & ADVERSEEVENT_CONTRIBUTINGFACTOR , "AdverseEvent.preventiveAction" => & ADVERSEEVENT_PREVENTIVEACTION , "AdverseEvent.mitigatingAction" => & ADVERSEEVENT_MITIGATINGACTION , "AdverseEvent.supportingInfo" => & ADVERSEEVENT_SUPPORTINGINFO , "AllergyIntolerance" => & ALLERGYINTOLERANCE , "AllergyIntolerance.participant" => & ALLERGYINTOLERANCE_PARTICIPANT , "AllergyIntolerance.reaction" => & ALLERGYINTOLERANCE_REACTION , "Appointment" => & APPOINTMENT , "Appointment.participant" => & APPOINTMENT_PARTICIPANT , "Appointment.recurrenceTemplate" => & APPOINTMENT_RECURRENCETEMPLATE , "Appointment.recurrenceTemplate.weeklyTemplate" => & APPOINTMENT_RECURRENCETEMPLATE_WEEKLYTEMPLATE , "Appointment.recurrenceTemplate.monthlyTemplate" => & APPOINTMENT_RECURRENCETEMPLATE_MONTHLYTEMPLATE , "Appointment.recurrenceTemplate.yearlyTemplate" => & APPOINTMENT_RECURRENCETEMPLATE_YEARLYTEMPLATE , "AppointmentResponse" => & APPOINTMENTRESPONSE , "ArtifactAssessment" => & ARTIFACTASSESSMENT , "ArtifactAssessment.content" => & ARTIFACTASSESSMENT_CONTENT , "AuditEvent" => & AUDITEVENT , "AuditEvent.outcome" => & AUDITEVENT_OUTCOME , "AuditEvent.agent" => & AUDITEVENT_AGENT , "AuditEvent.source" => & AUDITEVENT_SOURCE , "AuditEvent.entity" => & AUDITEVENT_ENTITY , "AuditEvent.entity.detail" => & AUDITEVENT_ENTITY_DETAIL , "Basic" => & BASIC , "Binary" => & BINARY , "BiologicallyDerivedProduct" => & BIOLOGICALLYDERIVEDPRODUCT , "BiologicallyDerivedProduct.collection" => & BIOLOGICALLYDERIVEDPRODUCT_COLLECTION , "BiologicallyDerivedProduct.property" => & BIOLOGICALLYDERIVEDPRODUCT_PROPERTY , "BiologicallyDerivedProductDispense" => & BIOLOGICALLYDERIVEDPRODUCTDISPENSE , "BiologicallyDerivedProductDispense.performer" => & BIOLOGICALLYDERIVEDPRODUCTDISPENSE_PERFORMER , "BodyStructure" => & BODYSTRUCTURE , "BodyStructure.includedStructure" => & BODYSTRUCTURE_INCLUDEDSTRUCTURE , "BodyStructure.includedStructure.bodyLandmarkOrientation" => & BODYSTRUCTURE_INCLUDEDSTRUCTURE_BODYLANDMARKORIENTATION , "BodyStructure.includedStructure.bodyLandmarkOrientation.distanceFromLandmark" => & BODYSTRUCTURE_INCLUDEDSTRUCTURE_BODYLANDMARKORIENTATION_DISTANCEFROMLANDMARK , "Bundle" => & BUNDLE , "Bundle.link" => & BUNDLE_LINK , "Bundle.entry" => & BUNDLE_ENTRY , "Bundle.entry.search" => & BUNDLE_ENTRY_SEARCH , "Bundle.entry.request" => & BUNDLE_ENTRY_REQUEST , "Bundle.entry.response" => & BUNDLE_ENTRY_RESPONSE , "CapabilityStatement" => & CAPABILITYSTATEMENT , "CapabilityStatement.software" => & CAPABILITYSTATEMENT_SOFTWARE , "CapabilityStatement.implementation" => & CAPABILITYSTATEMENT_IMPLEMENTATION , "CapabilityStatement.rest" => & CAPABILITYSTATEMENT_REST , "CapabilityStatement.rest.security" => & CAPABILITYSTATEMENT_REST_SECURITY , "CapabilityStatement.rest.resource" => & CAPABILITYSTATEMENT_REST_RESOURCE , "CapabilityStatement.rest.resource.interaction" => & CAPABILITYSTATEMENT_REST_RESOURCE_INTERACTION , "CapabilityStatement.rest.resource.searchParam" => & CAPABILITYSTATEMENT_REST_RESOURCE_SEARCHPARAM , "CapabilityStatement.rest.resource.operation" => & CAPABILITYSTATEMENT_REST_RESOURCE_OPERATION , "CapabilityStatement.rest.interaction" => & CAPABILITYSTATEMENT_REST_INTERACTION , "CapabilityStatement.messaging" => & CAPABILITYSTATEMENT_MESSAGING , "CapabilityStatement.messaging.endpoint" => & CAPABILITYSTATEMENT_MESSAGING_ENDPOINT , "CapabilityStatement.messaging.supportedMessage" => & CAPABILITYSTATEMENT_MESSAGING_SUPPORTEDMESSAGE , "CapabilityStatement.document" => & CAPABILITYSTATEMENT_DOCUMENT , "CarePlan" => & CAREPLAN , "CarePlan.activity" => & CAREPLAN_ACTIVITY , "CareTeam" => & CARETEAM , "CareTeam.participant" => & CARETEAM_PARTICIPANT , "ChargeItem" => & CHARGEITEM , "ChargeItem.performer" => & CHARGEITEM_PERFORMER , "ChargeItemDefinition" => & CHARGEITEMDEFINITION , "ChargeItemDefinition.applicability" => & CHARGEITEMDEFINITION_APPLICABILITY , "ChargeItemDefinition.propertyGroup" => & CHARGEITEMDEFINITION_PROPERTYGROUP , "Citation" => & CITATION , "Citation.summary" => & CITATION_SUMMARY , "Citation.classification" => & CITATION_CLASSIFICATION , "Citation.statusDate" => & CITATION_STATUSDATE , "Citation.citedArtifact" => & CITATION_CITEDARTIFACT , "Citation.citedArtifact.version" => & CITATION_CITEDARTIFACT_VERSION , "Citation.citedArtifact.statusDate" => & CITATION_CITEDARTIFACT_STATUSDATE , "Citation.citedArtifact.title" => & CITATION_CITEDARTIFACT_TITLE , "Citation.citedArtifact.abstract" => & CITATION_CITEDARTIFACT_ABSTRACT , "Citation.citedArtifact.part" => & CITATION_CITEDARTIFACT_PART , "Citation.citedArtifact.relatesTo" => & CITATION_CITEDARTIFACT_RELATESTO , "Citation.citedArtifact.publicationForm" => & CITATION_CITEDARTIFACT_PUBLICATIONFORM , "Citation.citedArtifact.publicationForm.publishedIn" => & CITATION_CITEDARTIFACT_PUBLICATIONFORM_PUBLISHEDIN , "Citation.citedArtifact.webLocation" => & CITATION_CITEDARTIFACT_WEBLOCATION , "Citation.citedArtifact.classification" => & CITATION_CITEDARTIFACT_CLASSIFICATION , "Citation.citedArtifact.contributorship" => & CITATION_CITEDARTIFACT_CONTRIBUTORSHIP , "Citation.citedArtifact.contributorship.entry" => & CITATION_CITEDARTIFACT_CONTRIBUTORSHIP_ENTRY , "Citation.citedArtifact.contributorship.entry.contributionInstance" => & CITATION_CITEDARTIFACT_CONTRIBUTORSHIP_ENTRY_CONTRIBUTIONINSTANCE , "Citation.citedArtifact.contributorship.summary" => & CITATION_CITEDARTIFACT_CONTRIBUTORSHIP_SUMMARY , "Claim" => & CLAIM , "Claim.related" => & CLAIM_RELATED , "Claim.payee" => & CLAIM_PAYEE , "Claim.event" => & CLAIM_EVENT , "Claim.careTeam" => & CLAIM_CARETEAM , "Claim.supportingInfo" => & CLAIM_SUPPORTINGINFO , "Claim.diagnosis" => & CLAIM_DIAGNOSIS , "Claim.procedure" => & CLAIM_PROCEDURE , "Claim.insurance" => & CLAIM_INSURANCE , "Claim.accident" => & CLAIM_ACCIDENT , "Claim.item" => & CLAIM_ITEM , "Claim.item.bodySite" => & CLAIM_ITEM_BODYSITE , "Claim.item.detail" => & CLAIM_ITEM_DETAIL , "Claim.item.detail.subDetail" => & CLAIM_ITEM_DETAIL_SUBDETAIL , "ClaimResponse" => & CLAIMRESPONSE , "ClaimResponse.event" => & CLAIMRESPONSE_EVENT , "ClaimResponse.item" => & CLAIMRESPONSE_ITEM , "ClaimResponse.item.reviewOutcome" => & CLAIMRESPONSE_ITEM_REVIEWOUTCOME , "ClaimResponse.item.adjudication" => & CLAIMRESPONSE_ITEM_ADJUDICATION , "ClaimResponse.item.detail" => & CLAIMRESPONSE_ITEM_DETAIL , "ClaimResponse.item.detail.subDetail" => & CLAIMRESPONSE_ITEM_DETAIL_SUBDETAIL , "ClaimResponse.addItem" => & CLAIMRESPONSE_ADDITEM , "ClaimResponse.addItem.bodySite" => & CLAIMRESPONSE_ADDITEM_BODYSITE , "ClaimResponse.addItem.detail" => & CLAIMRESPONSE_ADDITEM_DETAIL , "ClaimResponse.addItem.detail.subDetail" => & CLAIMRESPONSE_ADDITEM_DETAIL_SUBDETAIL , "ClaimResponse.total" => & CLAIMRESPONSE_TOTAL , "ClaimResponse.payment" => & CLAIMRESPONSE_PAYMENT , "ClaimResponse.processNote" => & CLAIMRESPONSE_PROCESSNOTE , "ClaimResponse.insurance" => & CLAIMRESPONSE_INSURANCE , "ClaimResponse.error" => & CLAIMRESPONSE_ERROR , "ClinicalImpression" => & CLINICALIMPRESSION , "ClinicalImpression.finding" => & CLINICALIMPRESSION_FINDING , "ClinicalUseDefinition" => & CLINICALUSEDEFINITION , "ClinicalUseDefinition.contraindication" => & CLINICALUSEDEFINITION_CONTRAINDICATION , "ClinicalUseDefinition.contraindication.otherTherapy" => & CLINICALUSEDEFINITION_CONTRAINDICATION_OTHERTHERAPY , "ClinicalUseDefinition.indication" => & CLINICALUSEDEFINITION_INDICATION , "ClinicalUseDefinition.interaction" => & CLINICALUSEDEFINITION_INTERACTION , "ClinicalUseDefinition.interaction.interactant" => & CLINICALUSEDEFINITION_INTERACTION_INTERACTANT , "ClinicalUseDefinition.undesirableEffect" => & CLINICALUSEDEFINITION_UNDESIRABLEEFFECT , "ClinicalUseDefinition.warning" => & CLINICALUSEDEFINITION_WARNING , "CodeSystem" => & CODESYSTEM , "CodeSystem.filter" => & CODESYSTEM_FILTER , "CodeSystem.property" => & CODESYSTEM_PROPERTY , "CodeSystem.concept" => & CODESYSTEM_CONCEPT , "CodeSystem.concept.designation" => & CODESYSTEM_CONCEPT_DESIGNATION , "CodeSystem.concept.property" => & CODESYSTEM_CONCEPT_PROPERTY , "Communication" => & COMMUNICATION , "Communication.payload" => & COMMUNICATION_PAYLOAD , "CommunicationRequest" => & COMMUNICATIONREQUEST , "CommunicationRequest.payload" => & COMMUNICATIONREQUEST_PAYLOAD , "CompartmentDefinition" => & COMPARTMENTDEFINITION , "CompartmentDefinition.resource" => & COMPARTMENTDEFINITION_RESOURCE , "Composition" => & COMPOSITION , "Composition.attester" => & COMPOSITION_ATTESTER , "Composition.event" => & COMPOSITION_EVENT , "Composition.section" => & COMPOSITION_SECTION , "ConceptMap" => & CONCEPTMAP , "ConceptMap.property" => & CONCEPTMAP_PROPERTY , "ConceptMap.additionalAttribute" => & CONCEPTMAP_ADDITIONALATTRIBUTE , "ConceptMap.group" => & CONCEPTMAP_GROUP , "ConceptMap.group.element" => & CONCEPTMAP_GROUP_ELEMENT , "ConceptMap.group.element.target" => & CONCEPTMAP_GROUP_ELEMENT_TARGET , "ConceptMap.group.element.target.property" => & CONCEPTMAP_GROUP_ELEMENT_TARGET_PROPERTY , "ConceptMap.group.element.target.dependsOn" => & CONCEPTMAP_GROUP_ELEMENT_TARGET_DEPENDSON , "ConceptMap.group.unmapped" => & CONCEPTMAP_GROUP_UNMAPPED , "Condition" => & CONDITION , "Condition.participant" => & CONDITION_PARTICIPANT , "Condition.stage" => & CONDITION_STAGE , "ConditionDefinition" => & CONDITIONDEFINITION , "ConditionDefinition.observation" => & CONDITIONDEFINITION_OBSERVATION , "ConditionDefinition.medication" => & CONDITIONDEFINITION_MEDICATION , "ConditionDefinition.precondition" => & CONDITIONDEFINITION_PRECONDITION , "ConditionDefinition.questionnaire" => & CONDITIONDEFINITION_QUESTIONNAIRE , "ConditionDefinition.plan" => & CONDITIONDEFINITION_PLAN , "Consent" => & CONSENT , "Consent.policyBasis" => & CONSENT_POLICYBASIS , "Consent.verification" => & CONSENT_VERIFICATION , "Consent.provision" => & CONSENT_PROVISION , "Consent.provision.actor" => & CONSENT_PROVISION_ACTOR , "Consent.provision.data" => & CONSENT_PROVISION_DATA , "Contract" => & CONTRACT , "Contract.contentDefinition" => & CONTRACT_CONTENTDEFINITION , "Contract.term" => & CONTRACT_TERM , "Contract.term.securityLabel" => & CONTRACT_TERM_SECURITYLABEL , "Contract.term.offer" => & CONTRACT_TERM_OFFER , "Contract.term.offer.party" => & CONTRACT_TERM_OFFER_PARTY , "Contract.term.offer.answer" => & CONTRACT_TERM_OFFER_ANSWER , "Contract.term.asset" => & CONTRACT_TERM_ASSET , "Contract.term.asset.context" => & CONTRACT_TERM_ASSET_CONTEXT , "Contract.term.asset.valuedItem" => & CONTRACT_TERM_ASSET_VALUEDITEM , "Contract.term.action" => & CONTRACT_TERM_ACTION , "Contract.term.action.subject" => & CONTRACT_TERM_ACTION_SUBJECT , "Contract.signer" => & CONTRACT_SIGNER , "Contract.friendly" => & CONTRACT_FRIENDLY , "Contract.legal" => & CONTRACT_LEGAL , "Contract.rule" => & CONTRACT_RULE , "Coverage" => & COVERAGE , "Coverage.paymentBy" => & COVERAGE_PAYMENTBY , "Coverage.class" => & COVERAGE_CLASS , "Coverage.costToBeneficiary" => & COVERAGE_COSTTOBENEFICIARY , "Coverage.costToBeneficiary.exception" => & COVERAGE_COSTTOBENEFICIARY_EXCEPTION , "CoverageEligibilityRequest" => & COVERAGEELIGIBILITYREQUEST , "CoverageEligibilityRequest.event" => & COVERAGEELIGIBILITYREQUEST_EVENT , "CoverageEligibilityRequest.supportingInfo" => & COVERAGEELIGIBILITYREQUEST_SUPPORTINGINFO , "CoverageEligibilityRequest.insurance" => & COVERAGEELIGIBILITYREQUEST_INSURANCE , "CoverageEligibilityRequest.item" => & COVERAGEELIGIBILITYREQUEST_ITEM , "CoverageEligibilityRequest.item.diagnosis" => & COVERAGEELIGIBILITYREQUEST_ITEM_DIAGNOSIS , "CoverageEligibilityResponse" => & COVERAGEELIGIBILITYRESPONSE , "CoverageEligibilityResponse.event" => & COVERAGEELIGIBILITYRESPONSE_EVENT , "CoverageEligibilityResponse.insurance" => & COVERAGEELIGIBILITYRESPONSE_INSURANCE , "CoverageEligibilityResponse.insurance.item" => & COVERAGEELIGIBILITYRESPONSE_INSURANCE_ITEM , "CoverageEligibilityResponse.insurance.item.benefit" => & COVERAGEELIGIBILITYRESPONSE_INSURANCE_ITEM_BENEFIT , "CoverageEligibilityResponse.error" => & COVERAGEELIGIBILITYRESPONSE_ERROR , "DetectedIssue" => & DETECTEDISSUE , "DetectedIssue.evidence" => & DETECTEDISSUE_EVIDENCE , "DetectedIssue.mitigation" => & DETECTEDISSUE_MITIGATION , "Device" => & DEVICE , "Device.udiCarrier" => & DEVICE_UDICARRIER , "Device.name" => & DEVICE_NAME , "Device.version" => & DEVICE_VERSION , "Device.conformsTo" => & DEVICE_CONFORMSTO , "Device.property" => & DEVICE_PROPERTY , "DeviceAssociation" => & DEVICEASSOCIATION , "DeviceAssociation.operation" => & DEVICEASSOCIATION_OPERATION , "DeviceDefinition" => & DEVICEDEFINITION , "DeviceDefinition.udiDeviceIdentifier" => & DEVICEDEFINITION_UDIDEVICEIDENTIFIER , "DeviceDefinition.udiDeviceIdentifier.marketDistribution" => & DEVICEDEFINITION_UDIDEVICEIDENTIFIER_MARKETDISTRIBUTION , "DeviceDefinition.regulatoryIdentifier" => & DEVICEDEFINITION_REGULATORYIDENTIFIER , "DeviceDefinition.deviceName" => & DEVICEDEFINITION_DEVICENAME , "DeviceDefinition.classification" => & DEVICEDEFINITION_CLASSIFICATION , "DeviceDefinition.conformsTo" => & DEVICEDEFINITION_CONFORMSTO , "DeviceDefinition.hasPart" => & DEVICEDEFINITION_HASPART , "DeviceDefinition.packaging" => & DEVICEDEFINITION_PACKAGING , "DeviceDefinition.packaging.distributor" => & DEVICEDEFINITION_PACKAGING_DISTRIBUTOR , "DeviceDefinition.version" => & DEVICEDEFINITION_VERSION , "DeviceDefinition.property" => & DEVICEDEFINITION_PROPERTY , "DeviceDefinition.link" => & DEVICEDEFINITION_LINK , "DeviceDefinition.material" => & DEVICEDEFINITION_MATERIAL , "DeviceDefinition.guideline" => & DEVICEDEFINITION_GUIDELINE , "DeviceDefinition.correctiveAction" => & DEVICEDEFINITION_CORRECTIVEACTION , "DeviceDefinition.chargeItem" => & DEVICEDEFINITION_CHARGEITEM , "DeviceDispense" => & DEVICEDISPENSE , "DeviceDispense.performer" => & DEVICEDISPENSE_PERFORMER , "DeviceMetric" => & DEVICEMETRIC , "DeviceMetric.calibration" => & DEVICEMETRIC_CALIBRATION , "DeviceRequest" => & DEVICEREQUEST , "DeviceRequest.parameter" => & DEVICEREQUEST_PARAMETER , "DeviceUsage" => & DEVICEUSAGE , "DeviceUsage.adherence" => & DEVICEUSAGE_ADHERENCE , "DiagnosticReport" => & DIAGNOSTICREPORT , "DiagnosticReport.supportingInfo" => & DIAGNOSTICREPORT_SUPPORTINGINFO , "DiagnosticReport.media" => & DIAGNOSTICREPORT_MEDIA , "DocumentReference" => & DOCUMENTREFERENCE , "DocumentReference.attester" => & DOCUMENTREFERENCE_ATTESTER , "DocumentReference.relatesTo" => & DOCUMENTREFERENCE_RELATESTO , "DocumentReference.content" => & DOCUMENTREFERENCE_CONTENT , "DocumentReference.content.profile" => & DOCUMENTREFERENCE_CONTENT_PROFILE , "Encounter" => & ENCOUNTER , "Encounter.participant" => & ENCOUNTER_PARTICIPANT , "Encounter.reason" => & ENCOUNTER_REASON , "Encounter.diagnosis" => & ENCOUNTER_DIAGNOSIS , "Encounter.admission" => & ENCOUNTER_ADMISSION , "Encounter.location" => & ENCOUNTER_LOCATION , "EncounterHistory" => & ENCOUNTERHISTORY , "EncounterHistory.location" => & ENCOUNTERHISTORY_LOCATION , "Endpoint" => & ENDPOINT , "Endpoint.payload" => & ENDPOINT_PAYLOAD , "EnrollmentRequest" => & ENROLLMENTREQUEST , "EnrollmentResponse" => & ENROLLMENTRESPONSE , "EpisodeOfCare" => & EPISODEOFCARE , "EpisodeOfCare.statusHistory" => & EPISODEOFCARE_STATUSHISTORY , "EpisodeOfCare.reason" => & EPISODEOFCARE_REASON , "EpisodeOfCare.diagnosis" => & EPISODEOFCARE_DIAGNOSIS , "EventDefinition" => & EVENTDEFINITION , "Evidence" => & EVIDENCE , "Evidence.variableDefinition" => & EVIDENCE_VARIABLEDEFINITION , "Evidence.statistic" => & EVIDENCE_STATISTIC , "Evidence.statistic.sampleSize" => & EVIDENCE_STATISTIC_SAMPLESIZE , "Evidence.statistic.attributeEstimate" => & EVIDENCE_STATISTIC_ATTRIBUTEESTIMATE , "Evidence.statistic.modelCharacteristic" => & EVIDENCE_STATISTIC_MODELCHARACTERISTIC , "Evidence.statistic.modelCharacteristic.variable" => & EVIDENCE_STATISTIC_MODELCHARACTERISTIC_VARIABLE , "Evidence.certainty" => & EVIDENCE_CERTAINTY , "EvidenceReport" => & EVIDENCEREPORT , "EvidenceReport.subject" => & EVIDENCEREPORT_SUBJECT , "EvidenceReport.subject.characteristic" => & EVIDENCEREPORT_SUBJECT_CHARACTERISTIC , "EvidenceReport.relatesTo" => & EVIDENCEREPORT_RELATESTO , "EvidenceReport.relatesTo.target" => & EVIDENCEREPORT_RELATESTO_TARGET , "EvidenceReport.section" => & EVIDENCEREPORT_SECTION , "EvidenceVariable" => & EVIDENCEVARIABLE , "EvidenceVariable.characteristic" => & EVIDENCEVARIABLE_CHARACTERISTIC , "EvidenceVariable.characteristic.definitionByTypeAndValue" => & EVIDENCEVARIABLE_CHARACTERISTIC_DEFINITIONBYTYPEANDVALUE , "EvidenceVariable.characteristic.definitionByCombination" => & EVIDENCEVARIABLE_CHARACTERISTIC_DEFINITIONBYCOMBINATION , "EvidenceVariable.characteristic.timeFromEvent" => & EVIDENCEVARIABLE_CHARACTERISTIC_TIMEFROMEVENT , "EvidenceVariable.category" => & EVIDENCEVARIABLE_CATEGORY , "ExampleScenario" => & EXAMPLESCENARIO , "ExampleScenario.actor" => & EXAMPLESCENARIO_ACTOR , "ExampleScenario.instance" => & EXAMPLESCENARIO_INSTANCE , "ExampleScenario.instance.version" => & EXAMPLESCENARIO_INSTANCE_VERSION , "ExampleScenario.instance.containedInstance" => & EXAMPLESCENARIO_INSTANCE_CONTAINEDINSTANCE , "ExampleScenario.process" => & EXAMPLESCENARIO_PROCESS , "ExampleScenario.process.step" => & EXAMPLESCENARIO_PROCESS_STEP , "ExampleScenario.process.step.operation" => & EXAMPLESCENARIO_PROCESS_STEP_OPERATION , "ExampleScenario.process.step.alternative" => & EXAMPLESCENARIO_PROCESS_STEP_ALTERNATIVE , "ExplanationOfBenefit" => & EXPLANATIONOFBENEFIT , "ExplanationOfBenefit.related" => & EXPLANATIONOFBENEFIT_RELATED , "ExplanationOfBenefit.event" => & EXPLANATIONOFBENEFIT_EVENT , "ExplanationOfBenefit.payee" => & EXPLANATIONOFBENEFIT_PAYEE , "ExplanationOfBenefit.careTeam" => & EXPLANATIONOFBENEFIT_CARETEAM , "ExplanationOfBenefit.supportingInfo" => & EXPLANATIONOFBENEFIT_SUPPORTINGINFO , "ExplanationOfBenefit.diagnosis" => & EXPLANATIONOFBENEFIT_DIAGNOSIS , "ExplanationOfBenefit.procedure" => & EXPLANATIONOFBENEFIT_PROCEDURE , "ExplanationOfBenefit.insurance" => & EXPLANATIONOFBENEFIT_INSURANCE , "ExplanationOfBenefit.accident" => & EXPLANATIONOFBENEFIT_ACCIDENT , "ExplanationOfBenefit.item" => & EXPLANATIONOFBENEFIT_ITEM , "ExplanationOfBenefit.item.bodySite" => & EXPLANATIONOFBENEFIT_ITEM_BODYSITE , "ExplanationOfBenefit.item.reviewOutcome" => & EXPLANATIONOFBENEFIT_ITEM_REVIEWOUTCOME , "ExplanationOfBenefit.item.adjudication" => & EXPLANATIONOFBENEFIT_ITEM_ADJUDICATION , "ExplanationOfBenefit.item.detail" => & EXPLANATIONOFBENEFIT_ITEM_DETAIL , "ExplanationOfBenefit.item.detail.subDetail" => & EXPLANATIONOFBENEFIT_ITEM_DETAIL_SUBDETAIL , "ExplanationOfBenefit.addItem" => & EXPLANATIONOFBENEFIT_ADDITEM , "ExplanationOfBenefit.addItem.bodySite" => & EXPLANATIONOFBENEFIT_ADDITEM_BODYSITE , "ExplanationOfBenefit.addItem.detail" => & EXPLANATIONOFBENEFIT_ADDITEM_DETAIL , "ExplanationOfBenefit.addItem.detail.subDetail" => & EXPLANATIONOFBENEFIT_ADDITEM_DETAIL_SUBDETAIL , "ExplanationOfBenefit.total" => & EXPLANATIONOFBENEFIT_TOTAL , "ExplanationOfBenefit.payment" => & EXPLANATIONOFBENEFIT_PAYMENT , "ExplanationOfBenefit.processNote" => & EXPLANATIONOFBENEFIT_PROCESSNOTE , "ExplanationOfBenefit.benefitBalance" => & EXPLANATIONOFBENEFIT_BENEFITBALANCE , "ExplanationOfBenefit.benefitBalance.financial" => & EXPLANATIONOFBENEFIT_BENEFITBALANCE_FINANCIAL , "FamilyMemberHistory" => & FAMILYMEMBERHISTORY , "FamilyMemberHistory.participant" => & FAMILYMEMBERHISTORY_PARTICIPANT , "FamilyMemberHistory.condition" => & FAMILYMEMBERHISTORY_CONDITION , "FamilyMemberHistory.procedure" => & FAMILYMEMBERHISTORY_PROCEDURE , "Flag" => & FLAG , "FormularyItem" => & FORMULARYITEM , "GenomicStudy" => & GENOMICSTUDY , "GenomicStudy.analysis" => & GENOMICSTUDY_ANALYSIS , "GenomicStudy.analysis.input" => & GENOMICSTUDY_ANALYSIS_INPUT , "GenomicStudy.analysis.output" => & GENOMICSTUDY_ANALYSIS_OUTPUT , "GenomicStudy.analysis.performer" => & GENOMICSTUDY_ANALYSIS_PERFORMER , "GenomicStudy.analysis.device" => & GENOMICSTUDY_ANALYSIS_DEVICE , "Goal" => & GOAL , "Goal.target" => & GOAL_TARGET , "GraphDefinition" => & GRAPHDEFINITION , "GraphDefinition.node" => & GRAPHDEFINITION_NODE , "GraphDefinition.link" => & GRAPHDEFINITION_LINK , "GraphDefinition.link.compartment" => & GRAPHDEFINITION_LINK_COMPARTMENT , "Group" => & GROUP , "Group.characteristic" => & GROUP_CHARACTERISTIC , "Group.member" => & GROUP_MEMBER , "GuidanceResponse" => & GUIDANCERESPONSE , "HealthcareService" => & HEALTHCARESERVICE , "HealthcareService.eligibility" => & HEALTHCARESERVICE_ELIGIBILITY , "ImagingSelection" => & IMAGINGSELECTION , "ImagingSelection.performer" => & IMAGINGSELECTION_PERFORMER , "ImagingSelection.instance" => & IMAGINGSELECTION_INSTANCE , "ImagingSelection.instance.imageRegion2D" => & IMAGINGSELECTION_INSTANCE_IMAGEREGION2D , "ImagingSelection.instance.imageRegion3D" => & IMAGINGSELECTION_INSTANCE_IMAGEREGION3D , "ImagingStudy" => & IMAGINGSTUDY , "ImagingStudy.series" => & IMAGINGSTUDY_SERIES , "ImagingStudy.series.performer" => & IMAGINGSTUDY_SERIES_PERFORMER , "ImagingStudy.series.instance" => & IMAGINGSTUDY_SERIES_INSTANCE , "Immunization" => & IMMUNIZATION , "Immunization.performer" => & IMMUNIZATION_PERFORMER , "Immunization.programEligibility" => & IMMUNIZATION_PROGRAMELIGIBILITY , "Immunization.reaction" => & IMMUNIZATION_REACTION , "Immunization.protocolApplied" => & IMMUNIZATION_PROTOCOLAPPLIED , "ImmunizationEvaluation" => & IMMUNIZATIONEVALUATION , "ImmunizationRecommendation" => & IMMUNIZATIONRECOMMENDATION , "ImmunizationRecommendation.recommendation" => & IMMUNIZATIONRECOMMENDATION_RECOMMENDATION , "ImmunizationRecommendation.recommendation.dateCriterion" => & IMMUNIZATIONRECOMMENDATION_RECOMMENDATION_DATECRITERION , "ImplementationGuide" => & IMPLEMENTATIONGUIDE , "ImplementationGuide.dependsOn" => & IMPLEMENTATIONGUIDE_DEPENDSON , "ImplementationGuide.global" => & IMPLEMENTATIONGUIDE_GLOBAL , "ImplementationGuide.definition" => & IMPLEMENTATIONGUIDE_DEFINITION , "ImplementationGuide.definition.grouping" => & IMPLEMENTATIONGUIDE_DEFINITION_GROUPING , "ImplementationGuide.definition.resource" => & IMPLEMENTATIONGUIDE_DEFINITION_RESOURCE , "ImplementationGuide.definition.page" => & IMPLEMENTATIONGUIDE_DEFINITION_PAGE , "ImplementationGuide.definition.parameter" => & IMPLEMENTATIONGUIDE_DEFINITION_PARAMETER , "ImplementationGuide.definition.template" => & IMPLEMENTATIONGUIDE_DEFINITION_TEMPLATE , "ImplementationGuide.manifest" => & IMPLEMENTATIONGUIDE_MANIFEST , "ImplementationGuide.manifest.resource" => & IMPLEMENTATIONGUIDE_MANIFEST_RESOURCE , "ImplementationGuide.manifest.page" => & IMPLEMENTATIONGUIDE_MANIFEST_PAGE , "Ingredient" => & INGREDIENT , "Ingredient.manufacturer" => & INGREDIENT_MANUFACTURER , "Ingredient.substance" => & INGREDIENT_SUBSTANCE , "Ingredient.substance.strength" => & INGREDIENT_SUBSTANCE_STRENGTH , "Ingredient.substance.strength.referenceStrength" => & INGREDIENT_SUBSTANCE_STRENGTH_REFERENCESTRENGTH , "InsurancePlan" => & INSURANCEPLAN , "InsurancePlan.coverage" => & INSURANCEPLAN_COVERAGE , "InsurancePlan.coverage.benefit" => & INSURANCEPLAN_COVERAGE_BENEFIT , "InsurancePlan.coverage.benefit.limit" => & INSURANCEPLAN_COVERAGE_BENEFIT_LIMIT , "InsurancePlan.plan" => & INSURANCEPLAN_PLAN , "InsurancePlan.plan.generalCost" => & INSURANCEPLAN_PLAN_GENERALCOST , "InsurancePlan.plan.specificCost" => & INSURANCEPLAN_PLAN_SPECIFICCOST , "InsurancePlan.plan.specificCost.benefit" => & INSURANCEPLAN_PLAN_SPECIFICCOST_BENEFIT , "InsurancePlan.plan.specificCost.benefit.cost" => & INSURANCEPLAN_PLAN_SPECIFICCOST_BENEFIT_COST , "InventoryItem" => & INVENTORYITEM , "InventoryItem.name" => & INVENTORYITEM_NAME , "InventoryItem.responsibleOrganization" => & INVENTORYITEM_RESPONSIBLEORGANIZATION , "InventoryItem.description" => & INVENTORYITEM_DESCRIPTION , "InventoryItem.association" => & INVENTORYITEM_ASSOCIATION , "InventoryItem.characteristic" => & INVENTORYITEM_CHARACTERISTIC , "InventoryItem.instance" => & INVENTORYITEM_INSTANCE , "InventoryReport" => & INVENTORYREPORT , "InventoryReport.inventoryListing" => & INVENTORYREPORT_INVENTORYLISTING , "InventoryReport.inventoryListing.item" => & INVENTORYREPORT_INVENTORYLISTING_ITEM , "Invoice" => & INVOICE , "Invoice.participant" => & INVOICE_PARTICIPANT , "Invoice.lineItem" => & INVOICE_LINEITEM , "Library" => & LIBRARY , "Linkage" => & LINKAGE , "Linkage.item" => & LINKAGE_ITEM , "List" => & LIST , "List.entry" => & LIST_ENTRY , "Location" => & LOCATION , "Location.position" => & LOCATION_POSITION , "ManufacturedItemDefinition" => & MANUFACTUREDITEMDEFINITION , "ManufacturedItemDefinition.property" => & MANUFACTUREDITEMDEFINITION_PROPERTY , "ManufacturedItemDefinition.component" => & MANUFACTUREDITEMDEFINITION_COMPONENT , "ManufacturedItemDefinition.component.constituent" => & MANUFACTUREDITEMDEFINITION_COMPONENT_CONSTITUENT , "Measure" => & MEASURE , "Measure.term" => & MEASURE_TERM , "Measure.group" => & MEASURE_GROUP , "Measure.group.population" => & MEASURE_GROUP_POPULATION , "Measure.group.stratifier" => & MEASURE_GROUP_STRATIFIER , "Measure.group.stratifier.component" => & MEASURE_GROUP_STRATIFIER_COMPONENT , "Measure.supplementalData" => & MEASURE_SUPPLEMENTALDATA , "MeasureReport" => & MEASUREREPORT , "MeasureReport.group" => & MEASUREREPORT_GROUP , "MeasureReport.group.population" => & MEASUREREPORT_GROUP_POPULATION , "MeasureReport.group.stratifier" => & MEASUREREPORT_GROUP_STRATIFIER , "MeasureReport.group.stratifier.stratum" => & MEASUREREPORT_GROUP_STRATIFIER_STRATUM , "MeasureReport.group.stratifier.stratum.component" => & MEASUREREPORT_GROUP_STRATIFIER_STRATUM_COMPONENT , "MeasureReport.group.stratifier.stratum.population" => & MEASUREREPORT_GROUP_STRATIFIER_STRATUM_POPULATION , "Medication" => & MEDICATION , "Medication.ingredient" => & MEDICATION_INGREDIENT , "Medication.batch" => & MEDICATION_BATCH , "MedicationAdministration" => & MEDICATIONADMINISTRATION , "MedicationAdministration.performer" => & MEDICATIONADMINISTRATION_PERFORMER , "MedicationAdministration.dosage" => & MEDICATIONADMINISTRATION_DOSAGE , "MedicationDispense" => & MEDICATIONDISPENSE , "MedicationDispense.performer" => & MEDICATIONDISPENSE_PERFORMER , "MedicationDispense.substitution" => & MEDICATIONDISPENSE_SUBSTITUTION , "MedicationKnowledge" => & MEDICATIONKNOWLEDGE , "MedicationKnowledge.relatedMedicationKnowledge" => & MEDICATIONKNOWLEDGE_RELATEDMEDICATIONKNOWLEDGE , "MedicationKnowledge.monograph" => & MEDICATIONKNOWLEDGE_MONOGRAPH , "MedicationKnowledge.cost" => & MEDICATIONKNOWLEDGE_COST , "MedicationKnowledge.monitoringProgram" => & MEDICATIONKNOWLEDGE_MONITORINGPROGRAM , "MedicationKnowledge.indicationGuideline" => & MEDICATIONKNOWLEDGE_INDICATIONGUIDELINE , "MedicationKnowledge.indicationGuideline.dosingGuideline" => & MEDICATIONKNOWLEDGE_INDICATIONGUIDELINE_DOSINGGUIDELINE , "MedicationKnowledge.indicationGuideline.dosingGuideline.dosage" => & MEDICATIONKNOWLEDGE_INDICATIONGUIDELINE_DOSINGGUIDELINE_DOSAGE , "MedicationKnowledge.indicationGuideline.dosingGuideline.patientCharacteristic" => & MEDICATIONKNOWLEDGE_INDICATIONGUIDELINE_DOSINGGUIDELINE_PATIENTCHARACTERISTIC , "MedicationKnowledge.medicineClassification" => & MEDICATIONKNOWLEDGE_MEDICINECLASSIFICATION , "MedicationKnowledge.packaging" => & MEDICATIONKNOWLEDGE_PACKAGING , "MedicationKnowledge.storageGuideline" => & MEDICATIONKNOWLEDGE_STORAGEGUIDELINE , "MedicationKnowledge.storageGuideline.environmentalSetting" => & MEDICATIONKNOWLEDGE_STORAGEGUIDELINE_ENVIRONMENTALSETTING , "MedicationKnowledge.regulatory" => & MEDICATIONKNOWLEDGE_REGULATORY , "MedicationKnowledge.regulatory.substitution" => & MEDICATIONKNOWLEDGE_REGULATORY_SUBSTITUTION , "MedicationKnowledge.regulatory.maxDispense" => & MEDICATIONKNOWLEDGE_REGULATORY_MAXDISPENSE , "MedicationKnowledge.definitional" => & MEDICATIONKNOWLEDGE_DEFINITIONAL , "MedicationKnowledge.definitional.ingredient" => & MEDICATIONKNOWLEDGE_DEFINITIONAL_INGREDIENT , "MedicationKnowledge.definitional.drugCharacteristic" => & MEDICATIONKNOWLEDGE_DEFINITIONAL_DRUGCHARACTERISTIC , "MedicationRequest" => & MEDICATIONREQUEST , "MedicationRequest.dispenseRequest" => & MEDICATIONREQUEST_DISPENSEREQUEST , "MedicationRequest.dispenseRequest.initialFill" => & MEDICATIONREQUEST_DISPENSEREQUEST_INITIALFILL , "MedicationRequest.substitution" => & MEDICATIONREQUEST_SUBSTITUTION , "MedicationStatement" => & MEDICATIONSTATEMENT , "MedicationStatement.adherence" => & MEDICATIONSTATEMENT_ADHERENCE , "MedicinalProductDefinition" => & MEDICINALPRODUCTDEFINITION , "MedicinalProductDefinition.contact" => & MEDICINALPRODUCTDEFINITION_CONTACT , "MedicinalProductDefinition.name" => & MEDICINALPRODUCTDEFINITION_NAME , "MedicinalProductDefinition.name.part" => & MEDICINALPRODUCTDEFINITION_NAME_PART , "MedicinalProductDefinition.name.usage" => & MEDICINALPRODUCTDEFINITION_NAME_USAGE , "MedicinalProductDefinition.crossReference" => & MEDICINALPRODUCTDEFINITION_CROSSREFERENCE , "MedicinalProductDefinition.operation" => & MEDICINALPRODUCTDEFINITION_OPERATION , "MedicinalProductDefinition.characteristic" => & MEDICINALPRODUCTDEFINITION_CHARACTERISTIC , "MessageDefinition" => & MESSAGEDEFINITION , "MessageDefinition.focus" => & MESSAGEDEFINITION_FOCUS , "MessageDefinition.allowedResponse" => & MESSAGEDEFINITION_ALLOWEDRESPONSE , "MessageHeader" => & MESSAGEHEADER , "MessageHeader.destination" => & MESSAGEHEADER_DESTINATION , "MessageHeader.source" => & MESSAGEHEADER_SOURCE , "MessageHeader.response" => & MESSAGEHEADER_RESPONSE , "MolecularSequence" => & MOLECULARSEQUENCE , "MolecularSequence.relative" => & MOLECULARSEQUENCE_RELATIVE , "MolecularSequence.relative.startingSequence" => & MOLECULARSEQUENCE_RELATIVE_STARTINGSEQUENCE , "MolecularSequence.relative.edit" => & MOLECULARSEQUENCE_RELATIVE_EDIT , "NamingSystem" => & NAMINGSYSTEM , "NamingSystem.uniqueId" => & NAMINGSYSTEM_UNIQUEID , "NutritionIntake" => & NUTRITIONINTAKE , "NutritionIntake.consumedItem" => & NUTRITIONINTAKE_CONSUMEDITEM , "NutritionIntake.ingredientLabel" => & NUTRITIONINTAKE_INGREDIENTLABEL , "NutritionIntake.performer" => & NUTRITIONINTAKE_PERFORMER , "NutritionOrder" => & NUTRITIONORDER , "NutritionOrder.oralDiet" => & NUTRITIONORDER_ORALDIET , "NutritionOrder.oralDiet.schedule" => & NUTRITIONORDER_ORALDIET_SCHEDULE , "NutritionOrder.oralDiet.nutrient" => & NUTRITIONORDER_ORALDIET_NUTRIENT , "NutritionOrder.oralDiet.texture" => & NUTRITIONORDER_ORALDIET_TEXTURE , "NutritionOrder.supplement" => & NUTRITIONORDER_SUPPLEMENT , "NutritionOrder.supplement.schedule" => & NUTRITIONORDER_SUPPLEMENT_SCHEDULE , "NutritionOrder.enteralFormula" => & NUTRITIONORDER_ENTERALFORMULA , "NutritionOrder.enteralFormula.additive" => & NUTRITIONORDER_ENTERALFORMULA_ADDITIVE , "NutritionOrder.enteralFormula.administration" => & NUTRITIONORDER_ENTERALFORMULA_ADMINISTRATION , "NutritionOrder.enteralFormula.administration.schedule" => & NUTRITIONORDER_ENTERALFORMULA_ADMINISTRATION_SCHEDULE , "NutritionProduct" => & NUTRITIONPRODUCT , "NutritionProduct.nutrient" => & NUTRITIONPRODUCT_NUTRIENT , "NutritionProduct.ingredient" => & NUTRITIONPRODUCT_INGREDIENT , "NutritionProduct.characteristic" => & NUTRITIONPRODUCT_CHARACTERISTIC , "NutritionProduct.instance" => & NUTRITIONPRODUCT_INSTANCE , "Observation" => & OBSERVATION , "Observation.triggeredBy" => & OBSERVATION_TRIGGEREDBY , "Observation.referenceRange" => & OBSERVATION_REFERENCERANGE , "Observation.component" => & OBSERVATION_COMPONENT , "ObservationDefinition" => & OBSERVATIONDEFINITION , "ObservationDefinition.qualifiedValue" => & OBSERVATIONDEFINITION_QUALIFIEDVALUE , "ObservationDefinition.component" => & OBSERVATIONDEFINITION_COMPONENT , "OperationDefinition" => & OPERATIONDEFINITION , "OperationDefinition.parameter" => & OPERATIONDEFINITION_PARAMETER , "OperationDefinition.parameter.binding" => & OPERATIONDEFINITION_PARAMETER_BINDING , "OperationDefinition.parameter.referencedFrom" => & OPERATIONDEFINITION_PARAMETER_REFERENCEDFROM , "OperationDefinition.overload" => & OPERATIONDEFINITION_OVERLOAD , "OperationOutcome" => & OPERATIONOUTCOME , "OperationOutcome.issue" => & OPERATIONOUTCOME_ISSUE , "Organization" => & ORGANIZATION , "Organization.qualification" => & ORGANIZATION_QUALIFICATION , "OrganizationAffiliation" => & ORGANIZATIONAFFILIATION , "PackagedProductDefinition" => & PACKAGEDPRODUCTDEFINITION , "PackagedProductDefinition.legalStatusOfSupply" => & PACKAGEDPRODUCTDEFINITION_LEGALSTATUSOFSUPPLY , "PackagedProductDefinition.packaging" => & PACKAGEDPRODUCTDEFINITION_PACKAGING , "PackagedProductDefinition.packaging.property" => & PACKAGEDPRODUCTDEFINITION_PACKAGING_PROPERTY , "PackagedProductDefinition.packaging.containedItem" => & PACKAGEDPRODUCTDEFINITION_PACKAGING_CONTAINEDITEM , "Parameters" => & PARAMETERS , "Parameters.parameter" => & PARAMETERS_PARAMETER , "Patient" => & PATIENT , "Patient.contact" => & PATIENT_CONTACT , "Patient.communication" => & PATIENT_COMMUNICATION , "Patient.link" => & PATIENT_LINK , "PaymentNotice" => & PAYMENTNOTICE , "PaymentReconciliation" => & PAYMENTRECONCILIATION , "PaymentReconciliation.allocation" => & PAYMENTRECONCILIATION_ALLOCATION , "PaymentReconciliation.processNote" => & PAYMENTRECONCILIATION_PROCESSNOTE , "Permission" => & PERMISSION , "Permission.justification" => & PERMISSION_JUSTIFICATION , "Permission.rule" => & PERMISSION_RULE , "Permission.rule.data" => & PERMISSION_RULE_DATA , "Permission.rule.data.resource" => & PERMISSION_RULE_DATA_RESOURCE , "Permission.rule.activity" => & PERMISSION_RULE_ACTIVITY , "Person" => & PERSON , "Person.communication" => & PERSON_COMMUNICATION , "Person.link" => & PERSON_LINK , "PlanDefinition" => & PLANDEFINITION , "PlanDefinition.goal" => & PLANDEFINITION_GOAL , "PlanDefinition.goal.target" => & PLANDEFINITION_GOAL_TARGET , "PlanDefinition.actor" => & PLANDEFINITION_ACTOR , "PlanDefinition.actor.option" => & PLANDEFINITION_ACTOR_OPTION , "PlanDefinition.action" => & PLANDEFINITION_ACTION , "PlanDefinition.action.condition" => & PLANDEFINITION_ACTION_CONDITION , "PlanDefinition.action.input" => & PLANDEFINITION_ACTION_INPUT , "PlanDefinition.action.output" => & PLANDEFINITION_ACTION_OUTPUT , "PlanDefinition.action.relatedAction" => & PLANDEFINITION_ACTION_RELATEDACTION , "PlanDefinition.action.participant" => & PLANDEFINITION_ACTION_PARTICIPANT , "PlanDefinition.action.dynamicValue" => & PLANDEFINITION_ACTION_DYNAMICVALUE , "Practitioner" => & PRACTITIONER , "Practitioner.qualification" => & PRACTITIONER_QUALIFICATION , "Practitioner.communication" => & PRACTITIONER_COMMUNICATION , "PractitionerRole" => & PRACTITIONERROLE , "Procedure" => & PROCEDURE , "Procedure.performer" => & PROCEDURE_PERFORMER , "Procedure.focalDevice" => & PROCEDURE_FOCALDEVICE , "Provenance" => & PROVENANCE , "Provenance.agent" => & PROVENANCE_AGENT , "Provenance.entity" => & PROVENANCE_ENTITY , "Questionnaire" => & QUESTIONNAIRE , "Questionnaire.item" => & QUESTIONNAIRE_ITEM , "Questionnaire.item.enableWhen" => & QUESTIONNAIRE_ITEM_ENABLEWHEN , "Questionnaire.item.answerOption" => & QUESTIONNAIRE_ITEM_ANSWEROPTION , "Questionnaire.item.initial" => & QUESTIONNAIRE_ITEM_INITIAL , "QuestionnaireResponse" => & QUESTIONNAIRERESPONSE , "QuestionnaireResponse.item" => & QUESTIONNAIRERESPONSE_ITEM , "QuestionnaireResponse.item.answer" => & QUESTIONNAIRERESPONSE_ITEM_ANSWER , "RegulatedAuthorization" => & REGULATEDAUTHORIZATION , "RegulatedAuthorization.case" => & REGULATEDAUTHORIZATION_CASE , "RelatedPerson" => & RELATEDPERSON , "RelatedPerson.communication" => & RELATEDPERSON_COMMUNICATION , "RequestOrchestration" => & REQUESTORCHESTRATION , "RequestOrchestration.action" => & REQUESTORCHESTRATION_ACTION , "RequestOrchestration.action.condition" => & REQUESTORCHESTRATION_ACTION_CONDITION , "RequestOrchestration.action.input" => & REQUESTORCHESTRATION_ACTION_INPUT , "RequestOrchestration.action.output" => & REQUESTORCHESTRATION_ACTION_OUTPUT , "RequestOrchestration.action.relatedAction" => & REQUESTORCHESTRATION_ACTION_RELATEDACTION , "RequestOrchestration.action.participant" => & REQUESTORCHESTRATION_ACTION_PARTICIPANT , "RequestOrchestration.action.dynamicValue" => & REQUESTORCHESTRATION_ACTION_DYNAMICVALUE , "Requirements" => & REQUIREMENTS , "Requirements.statement" => & REQUIREMENTS_STATEMENT , "ResearchStudy" => & RESEARCHSTUDY , "ResearchStudy.label" => & RESEARCHSTUDY_LABEL , "ResearchStudy.associatedParty" => & RESEARCHSTUDY_ASSOCIATEDPARTY , "ResearchStudy.progressStatus" => & RESEARCHSTUDY_PROGRESSSTATUS , "ResearchStudy.recruitment" => & RESEARCHSTUDY_RECRUITMENT , "ResearchStudy.comparisonGroup" => & RESEARCHSTUDY_COMPARISONGROUP , "ResearchStudy.objective" => & RESEARCHSTUDY_OBJECTIVE , "ResearchStudy.outcomeMeasure" => & RESEARCHSTUDY_OUTCOMEMEASURE , "ResearchSubject" => & RESEARCHSUBJECT , "ResearchSubject.progress" => & RESEARCHSUBJECT_PROGRESS , "RiskAssessment" => & RISKASSESSMENT , "RiskAssessment.prediction" => & RISKASSESSMENT_PREDICTION , "Schedule" => & SCHEDULE , "SearchParameter" => & SEARCHPARAMETER , "SearchParameter.component" => & SEARCHPARAMETER_COMPONENT , "ServiceRequest" => & SERVICEREQUEST , "ServiceRequest.orderDetail" => & SERVICEREQUEST_ORDERDETAIL , "ServiceRequest.orderDetail.parameter" => & SERVICEREQUEST_ORDERDETAIL_PARAMETER , "ServiceRequest.patientInstruction" => & SERVICEREQUEST_PATIENTINSTRUCTION , "Slot" => & SLOT , "Specimen" => & SPECIMEN , "Specimen.feature" => & SPECIMEN_FEATURE , "Specimen.collection" => & SPECIMEN_COLLECTION , "Specimen.processing" => & SPECIMEN_PROCESSING , "Specimen.container" => & SPECIMEN_CONTAINER , "SpecimenDefinition" => & SPECIMENDEFINITION , "SpecimenDefinition.typeTested" => & SPECIMENDEFINITION_TYPETESTED , "SpecimenDefinition.typeTested.container" => & SPECIMENDEFINITION_TYPETESTED_CONTAINER , "SpecimenDefinition.typeTested.container.additive" => & SPECIMENDEFINITION_TYPETESTED_CONTAINER_ADDITIVE , "SpecimenDefinition.typeTested.handling" => & SPECIMENDEFINITION_TYPETESTED_HANDLING , "StructureDefinition" => & STRUCTUREDEFINITION , "StructureDefinition.mapping" => & STRUCTUREDEFINITION_MAPPING , "StructureDefinition.context" => & STRUCTUREDEFINITION_CONTEXT , "StructureDefinition.snapshot" => & STRUCTUREDEFINITION_SNAPSHOT , "StructureDefinition.differential" => & STRUCTUREDEFINITION_DIFFERENTIAL , "StructureMap" => & STRUCTUREMAP , "StructureMap.structure" => & STRUCTUREMAP_STRUCTURE , "StructureMap.const" => & STRUCTUREMAP_CONST , "StructureMap.group" => & STRUCTUREMAP_GROUP , "StructureMap.group.input" => & STRUCTUREMAP_GROUP_INPUT , "StructureMap.group.rule" => & STRUCTUREMAP_GROUP_RULE , "StructureMap.group.rule.source" => & STRUCTUREMAP_GROUP_RULE_SOURCE , "StructureMap.group.rule.target" => & STRUCTUREMAP_GROUP_RULE_TARGET , "StructureMap.group.rule.target.parameter" => & STRUCTUREMAP_GROUP_RULE_TARGET_PARAMETER , "StructureMap.group.rule.dependent" => & STRUCTUREMAP_GROUP_RULE_DEPENDENT , "Subscription" => & SUBSCRIPTION , "Subscription.filterBy" => & SUBSCRIPTION_FILTERBY , "Subscription.parameter" => & SUBSCRIPTION_PARAMETER , "SubscriptionStatus" => & SUBSCRIPTIONSTATUS , "SubscriptionStatus.notificationEvent" => & SUBSCRIPTIONSTATUS_NOTIFICATIONEVENT , "SubscriptionTopic" => & SUBSCRIPTIONTOPIC , "SubscriptionTopic.resourceTrigger" => & SUBSCRIPTIONTOPIC_RESOURCETRIGGER , "SubscriptionTopic.resourceTrigger.queryCriteria" => & SUBSCRIPTIONTOPIC_RESOURCETRIGGER_QUERYCRITERIA , "SubscriptionTopic.eventTrigger" => & SUBSCRIPTIONTOPIC_EVENTTRIGGER , "SubscriptionTopic.canFilterBy" => & SUBSCRIPTIONTOPIC_CANFILTERBY , "SubscriptionTopic.notificationShape" => & SUBSCRIPTIONTOPIC_NOTIFICATIONSHAPE , "Substance" => & SUBSTANCE , "Substance.ingredient" => & SUBSTANCE_INGREDIENT , "SubstanceDefinition" => & SUBSTANCEDEFINITION , "SubstanceDefinition.moiety" => & SUBSTANCEDEFINITION_MOIETY , "SubstanceDefinition.characterization" => & SUBSTANCEDEFINITION_CHARACTERIZATION , "SubstanceDefinition.property" => & SUBSTANCEDEFINITION_PROPERTY , "SubstanceDefinition.molecularWeight" => & SUBSTANCEDEFINITION_MOLECULARWEIGHT , "SubstanceDefinition.structure" => & SUBSTANCEDEFINITION_STRUCTURE , "SubstanceDefinition.structure.representation" => & SUBSTANCEDEFINITION_STRUCTURE_REPRESENTATION , "SubstanceDefinition.code" => & SUBSTANCEDEFINITION_CODE , "SubstanceDefinition.name" => & SUBSTANCEDEFINITION_NAME , "SubstanceDefinition.name.official" => & SUBSTANCEDEFINITION_NAME_OFFICIAL , "SubstanceDefinition.relationship" => & SUBSTANCEDEFINITION_RELATIONSHIP , "SubstanceDefinition.sourceMaterial" => & SUBSTANCEDEFINITION_SOURCEMATERIAL , "SubstanceNucleicAcid" => & SUBSTANCENUCLEICACID , "SubstanceNucleicAcid.subunit" => & SUBSTANCENUCLEICACID_SUBUNIT , "SubstanceNucleicAcid.subunit.linkage" => & SUBSTANCENUCLEICACID_SUBUNIT_LINKAGE , "SubstanceNucleicAcid.subunit.sugar" => & SUBSTANCENUCLEICACID_SUBUNIT_SUGAR , "SubstancePolymer" => & SUBSTANCEPOLYMER , "SubstancePolymer.monomerSet" => & SUBSTANCEPOLYMER_MONOMERSET , "SubstancePolymer.monomerSet.startingMaterial" => & SUBSTANCEPOLYMER_MONOMERSET_STARTINGMATERIAL , "SubstancePolymer.repeat" => & SUBSTANCEPOLYMER_REPEAT , "SubstancePolymer.repeat.repeatUnit" => & SUBSTANCEPOLYMER_REPEAT_REPEATUNIT , "SubstancePolymer.repeat.repeatUnit.degreeOfPolymerisation" => & SUBSTANCEPOLYMER_REPEAT_REPEATUNIT_DEGREEOFPOLYMERISATION , "SubstancePolymer.repeat.repeatUnit.structuralRepresentation" => & SUBSTANCEPOLYMER_REPEAT_REPEATUNIT_STRUCTURALREPRESENTATION , "SubstanceProtein" => & SUBSTANCEPROTEIN , "SubstanceProtein.subunit" => & SUBSTANCEPROTEIN_SUBUNIT , "SubstanceReferenceInformation" => & SUBSTANCEREFERENCEINFORMATION , "SubstanceReferenceInformation.gene" => & SUBSTANCEREFERENCEINFORMATION_GENE , "SubstanceReferenceInformation.geneElement" => & SUBSTANCEREFERENCEINFORMATION_GENEELEMENT , "SubstanceReferenceInformation.target" => & SUBSTANCEREFERENCEINFORMATION_TARGET , "SubstanceSourceMaterial" => & SUBSTANCESOURCEMATERIAL , "SubstanceSourceMaterial.fractionDescription" => & SUBSTANCESOURCEMATERIAL_FRACTIONDESCRIPTION , "SubstanceSourceMaterial.organism" => & SUBSTANCESOURCEMATERIAL_ORGANISM , "SubstanceSourceMaterial.organism.author" => & SUBSTANCESOURCEMATERIAL_ORGANISM_AUTHOR , "SubstanceSourceMaterial.organism.hybrid" => & SUBSTANCESOURCEMATERIAL_ORGANISM_HYBRID , "SubstanceSourceMaterial.organism.organismGeneral" => & SUBSTANCESOURCEMATERIAL_ORGANISM_ORGANISMGENERAL , "SubstanceSourceMaterial.partDescription" => & SUBSTANCESOURCEMATERIAL_PARTDESCRIPTION , "SupplyDelivery" => & SUPPLYDELIVERY , "SupplyDelivery.suppliedItem" => & SUPPLYDELIVERY_SUPPLIEDITEM , "SupplyRequest" => & SUPPLYREQUEST , "SupplyRequest.parameter" => & SUPPLYREQUEST_PARAMETER , "Task" => & TASK , "Task.performer" => & TASK_PERFORMER , "Task.restriction" => & TASK_RESTRICTION , "Task.input" => & TASK_INPUT , "Task.output" => & TASK_OUTPUT , "TerminologyCapabilities" => & TERMINOLOGYCAPABILITIES , "TerminologyCapabilities.software" => & TERMINOLOGYCAPABILITIES_SOFTWARE , "TerminologyCapabilities.implementation" => & TERMINOLOGYCAPABILITIES_IMPLEMENTATION , "TerminologyCapabilities.codeSystem" => & TERMINOLOGYCAPABILITIES_CODESYSTEM , "TerminologyCapabilities.codeSystem.version" => & TERMINOLOGYCAPABILITIES_CODESYSTEM_VERSION , "TerminologyCapabilities.codeSystem.version.filter" => & TERMINOLOGYCAPABILITIES_CODESYSTEM_VERSION_FILTER , "TerminologyCapabilities.expansion" => & TERMINOLOGYCAPABILITIES_EXPANSION , "TerminologyCapabilities.expansion.parameter" => & TERMINOLOGYCAPABILITIES_EXPANSION_PARAMETER , "TerminologyCapabilities.validateCode" => & TERMINOLOGYCAPABILITIES_VALIDATECODE , "TerminologyCapabilities.translation" => & TERMINOLOGYCAPABILITIES_TRANSLATION , "TerminologyCapabilities.closure" => & TERMINOLOGYCAPABILITIES_CLOSURE , "TestPlan" => & TESTPLAN , "TestPlan.dependency" => & TESTPLAN_DEPENDENCY , "TestPlan.testCase" => & TESTPLAN_TESTCASE , "TestPlan.testCase.dependency" => & TESTPLAN_TESTCASE_DEPENDENCY , "TestPlan.testCase.testRun" => & TESTPLAN_TESTCASE_TESTRUN , "TestPlan.testCase.testRun.script" => & TESTPLAN_TESTCASE_TESTRUN_SCRIPT , "TestPlan.testCase.testData" => & TESTPLAN_TESTCASE_TESTDATA , "TestPlan.testCase.assertion" => & TESTPLAN_TESTCASE_ASSERTION , "TestReport" => & TESTREPORT , "TestReport.participant" => & TESTREPORT_PARTICIPANT , "TestReport.setup" => & TESTREPORT_SETUP , "TestReport.setup.action" => & TESTREPORT_SETUP_ACTION , "TestReport.setup.action.operation" => & TESTREPORT_SETUP_ACTION_OPERATION , "TestReport.setup.action.assert" => & TESTREPORT_SETUP_ACTION_ASSERT , "TestReport.setup.action.assert.requirement" => & TESTREPORT_SETUP_ACTION_ASSERT_REQUIREMENT , "TestReport.test" => & TESTREPORT_TEST , "TestReport.test.action" => & TESTREPORT_TEST_ACTION , "TestReport.teardown" => & TESTREPORT_TEARDOWN , "TestReport.teardown.action" => & TESTREPORT_TEARDOWN_ACTION , "TestScript" => & TESTSCRIPT , "TestScript.origin" => & TESTSCRIPT_ORIGIN , "TestScript.destination" => & TESTSCRIPT_DESTINATION , "TestScript.metadata" => & TESTSCRIPT_METADATA , "TestScript.metadata.link" => & TESTSCRIPT_METADATA_LINK , "TestScript.metadata.capability" => & TESTSCRIPT_METADATA_CAPABILITY , "TestScript.scope" => & TESTSCRIPT_SCOPE , "TestScript.fixture" => & TESTSCRIPT_FIXTURE , "TestScript.variable" => & TESTSCRIPT_VARIABLE , "TestScript.setup" => & TESTSCRIPT_SETUP , "TestScript.setup.action" => & TESTSCRIPT_SETUP_ACTION , "TestScript.setup.action.operation" => & TESTSCRIPT_SETUP_ACTION_OPERATION , "TestScript.setup.action.operation.requestHeader" => & TESTSCRIPT_SETUP_ACTION_OPERATION_REQUESTHEADER , "TestScript.setup.action.assert" => & TESTSCRIPT_SETUP_ACTION_ASSERT , "TestScript.setup.action.assert.requirement" => & TESTSCRIPT_SETUP_ACTION_ASSERT_REQUIREMENT , "TestScript.test" => & TESTSCRIPT_TEST , "TestScript.test.action" => & TESTSCRIPT_TEST_ACTION , "TestScript.teardown" => & TESTSCRIPT_TEARDOWN , "TestScript.teardown.action" => & TESTSCRIPT_TEARDOWN_ACTION , "Transport" => & TRANSPORT , "Transport.restriction" => & TRANSPORT_RESTRICTION , "Transport.input" => & TRANSPORT_INPUT , "Transport.output" => & TRANSPORT_OUTPUT , "ValueSet" => & VALUESET , "ValueSet.compose" => & VALUESET_COMPOSE , "ValueSet.compose.include" => & VALUESET_COMPOSE_INCLUDE , "ValueSet.compose.include.concept" => & VALUESET_COMPOSE_INCLUDE_CONCEPT , "ValueSet.compose.include.concept.designation" => & VALUESET_COMPOSE_INCLUDE_CONCEPT_DESIGNATION , "ValueSet.compose.include.filter" => & VALUESET_COMPOSE_INCLUDE_FILTER , "ValueSet.expansion" => & VALUESET_EXPANSION , "ValueSet.expansion.parameter" => & VALUESET_EXPANSION_PARAMETER , "ValueSet.expansion.property" => & VALUESET_EXPANSION_PROPERTY , "ValueSet.expansion.contains" => & VALUESET_EXPANSION_CONTAINS , "ValueSet.expansion.contains.property" => & VALUESET_EXPANSION_CONTAINS_PROPERTY , "ValueSet.expansion.contains.property.subProperty" => & VALUESET_EXPANSION_CONTAINS_PROPERTY_SUBPROPERTY , "ValueSet.scope" => & VALUESET_SCOPE , "VerificationResult" => & VERIFICATIONRESULT , "VerificationResult.primarySource" => & VERIFICATIONRESULT_PRIMARYSOURCE , "VerificationResult.attestation" => & VERIFICATIONRESULT_ATTESTATION , "VerificationResult.validator" => & VERIFICATIONRESULT_VALIDATOR , "VisionPrescription" => & VISIONPRESCRIPTION , "VisionPrescription.lensSpecification" => & VISIONPRESCRIPTION_LENSSPECIFICATION , "VisionPrescription.lensSpecification.prism" => & VISIONPRESCRIPTION_LENSSPECIFICATION_PRISM , };
pub static BASE64BINARY: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "value" , };
pub static BOOLEAN: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "value" , };
pub static CANONICAL: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "value" , };
pub static CODE: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "value" , };
pub static DATE: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "value" , };
pub static DATETIME: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "value" , };
pub static DECIMAL: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "value" , };
pub static ID: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "value" , };
pub static INSTANT: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "value" , };
pub static INTEGER: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "value" , };
pub static INTEGER64: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "value" , };
pub static MARKDOWN: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "value" , };
pub static OID: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "value" , };
pub static POSITIVEINT: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "value" , };
pub static STRING: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "value" , };
pub static TIME: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "value" , };
pub static UNSIGNEDINT: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "value" , };
pub static URI: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "value" , };
pub static URL: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "value" , };
pub static UUID: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "value" , };
pub static XHTML: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "value" , };
pub static ADDRESS: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "use" , "type" , "text" , "line" , "city" , "district" , "state" , "postalCode" , "country" , "period" , };
pub static AGE: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "value" , "comparator" , "unit" , "system" , "code" , };
pub static ANNOTATION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "authorReference" , "authorString" , "time" , "text" , };
pub static ATTACHMENT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "contentType" , "language" , "data" , "url" , "size" , "hash" , "title" , "creation" , "height" , "width" , "frames" , "duration" , "pages" , };
pub static AVAILABILITY: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "availableTime" , "notAvailableTime" , };
pub static AVAILABILITY_AVAILABLETIME: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "daysOfWeek" , "allDay" , "availableStartTime" , "availableEndTime" , };
pub static AVAILABILITY_NOTAVAILABLETIME: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "description" , "during" , };
pub static CODEABLECONCEPT: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "coding" , "text" , };
pub static CODEABLEREFERENCE: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "concept" , "reference" , };
pub static CODING: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "system" , "version" , "code" , "display" , "userSelected" , };
pub static CONTACTDETAIL: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "name" , "telecom" , };
pub static CONTACTPOINT: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "system" , "value" , "use" , "rank" , "period" , };
pub static CONTRIBUTOR: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "type" , "name" , "contact" , };
pub static COUNT: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "value" , "comparator" , "unit" , "system" , "code" , };
pub static DATAREQUIREMENT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "type" , "profile" , "subjectCodeableConcept" , "subjectReference" , "mustSupport" , "codeFilter" , "dateFilter" , "valueFilter" , "limit" , "sort" , };
pub static DATAREQUIREMENT_CODEFILTER: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "path" , "searchParam" , "valueSet" , "code" , };
pub static DATAREQUIREMENT_DATEFILTER: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "path" , "searchParam" , "valueDateTime" , "valuePeriod" , "valueDuration" , };
pub static DATAREQUIREMENT_VALUEFILTER: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "path" , "searchParam" , "comparator" , "valueDateTime" , "valuePeriod" , "valueDuration" , };
pub static DATAREQUIREMENT_SORT: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "path" , "direction" , };
pub static DISTANCE: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "value" , "comparator" , "unit" , "system" , "code" , };
pub static DOSAGE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "sequence" , "text" , "additionalInstruction" , "patientInstruction" , "timing" , "asNeeded" , "asNeededFor" , "site" , "route" , "method" , "doseAndRate" , "maxDosePerPeriod" , "maxDosePerAdministration" , "maxDosePerLifetime" , };
pub static DOSAGE_DOSEANDRATE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "type" , "doseRange" , "doseQuantity" , "rateRatio" , "rateRange" , "rateQuantity" , };
pub static DURATION: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "value" , "comparator" , "unit" , "system" , "code" , };
pub static ELEMENTDEFINITION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "path" , "representation" , "sliceName" , "sliceIsConstraining" , "label" , "code" , "slicing" , "short" , "definition" , "comment" , "requirements" , "alias" , "min" , "max" , "base" , "contentReference" , "type" , "defaultValueBase64Binary" , "defaultValueBoolean" , "defaultValueCanonical" , "defaultValueCode" , "defaultValueDate" , "defaultValueDateTime" , "defaultValueDecimal" , "defaultValueId" , "defaultValueInstant" , "defaultValueInteger" , "defaultValueInteger64" , "defaultValueMarkdown" , "defaultValueOid" , "defaultValuePositiveInt" , "defaultValueString" , "defaultValueTime" , "defaultValueUnsignedInt" , "defaultValueUri" , "defaultValueUrl" , "defaultValueUuid" , "defaultValueAddress" , "defaultValueAge" , "defaultValueAnnotation" , "defaultValueAttachment" , "defaultValueCodeableConcept" , "defaultValueCodeableReference" , "defaultValueCoding" , "defaultValueContactPoint" , "defaultValueCount" , "defaultValueDistance" , "defaultValueDuration" , "defaultValueHumanName" , "defaultValueIdentifier" , "defaultValueMoney" , "defaultValuePeriod" , "defaultValueQuantity" , "defaultValueRange" , "defaultValueRatio" , "defaultValueRatioRange" , "defaultValueReference" , "defaultValueSampledData" , "defaultValueSignature" , "defaultValueTiming" , "defaultValueContactDetail" , "defaultValueDataRequirement" , "defaultValueExpression" , "defaultValueParameterDefinition" , "defaultValueRelatedArtifact" , "defaultValueTriggerDefinition" , "defaultValueUsageContext" , "defaultValueAvailability" , "defaultValueExtendedContactDetail" , "defaultValueDosage" , "defaultValueMeta" , "meaningWhenMissing" , "orderMeaning" , "fixedBase64Binary" , "fixedBoolean" , "fixedCanonical" , "fixedCode" , "fixedDate" , "fixedDateTime" , "fixedDecimal" , "fixedId" , "fixedInstant" , "fixedInteger" , "fixedInteger64" , "fixedMarkdown" , "fixedOid" , "fixedPositiveInt" , "fixedString" , "fixedTime" , "fixedUnsignedInt" , "fixedUri" , "fixedUrl" , "fixedUuid" , "fixedAddress" , "fixedAge" , "fixedAnnotation" , "fixedAttachment" , "fixedCodeableConcept" , "fixedCodeableReference" , "fixedCoding" , "fixedContactPoint" , "fixedCount" , "fixedDistance" , "fixedDuration" , "fixedHumanName" , "fixedIdentifier" , "fixedMoney" , "fixedPeriod" , "fixedQuantity" , "fixedRange" , "fixedRatio" , "fixedRatioRange" , "fixedReference" , "fixedSampledData" , "fixedSignature" , "fixedTiming" , "fixedContactDetail" , "fixedDataRequirement" , "fixedExpression" , "fixedParameterDefinition" , "fixedRelatedArtifact" , "fixedTriggerDefinition" , "fixedUsageContext" , "fixedAvailability" , "fixedExtendedContactDetail" , "fixedDosage" , "fixedMeta" , "patternBase64Binary" , "patternBoolean" , "patternCanonical" , "patternCode" , "patternDate" , "patternDateTime" , "patternDecimal" , "patternId" , "patternInstant" , "patternInteger" , "patternInteger64" , "patternMarkdown" , "patternOid" , "patternPositiveInt" , "patternString" , "patternTime" , "patternUnsignedInt" , "patternUri" , "patternUrl" , "patternUuid" , "patternAddress" , "patternAge" , "patternAnnotation" , "patternAttachment" , "patternCodeableConcept" , "patternCodeableReference" , "patternCoding" , "patternContactPoint" , "patternCount" , "patternDistance" , "patternDuration" , "patternHumanName" , "patternIdentifier" , "patternMoney" , "patternPeriod" , "patternQuantity" , "patternRange" , "patternRatio" , "patternRatioRange" , "patternReference" , "patternSampledData" , "patternSignature" , "patternTiming" , "patternContactDetail" , "patternDataRequirement" , "patternExpression" , "patternParameterDefinition" , "patternRelatedArtifact" , "patternTriggerDefinition" , "patternUsageContext" , "patternAvailability" , "patternExtendedContactDetail" , "patternDosage" , "patternMeta" , "example" , "minValueDate" , "minValueDateTime" , "minValueInstant" , "minValueTime" , "minValueDecimal" , "minValueInteger" , "minValueInteger64" , "minValuePositiveInt" , "minValueUnsignedInt" , "minValueQuantity" , "maxValueDate" , "maxValueDateTime" , "maxValueInstant" , "maxValueTime" , "maxValueDecimal" , "maxValueInteger" , "maxValueInteger64" , "maxValuePositiveInt" , "maxValueUnsignedInt" , "maxValueQuantity" , "maxLength" , "condition" , "constraint" , "mustHaveValue" , "valueAlternatives" , "mustSupport" , "isModifier" , "isModifierReason" , "isSummary" , "binding" , "mapping" , };
pub static ELEMENTDEFINITION_SLICING: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "discriminator" , "description" , "ordered" , "rules" , };
pub static ELEMENTDEFINITION_SLICING_DISCRIMINATOR: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "type" , "path" , };
pub static ELEMENTDEFINITION_BASE: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "path" , "min" , "max" , };
pub static ELEMENTDEFINITION_TYPE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "code" , "profile" , "targetProfile" , "aggregation" , "versioning" , };
pub static ELEMENTDEFINITION_EXAMPLE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "label" , "valueBase64Binary" , "valueBoolean" , "valueCanonical" , "valueCode" , "valueDate" , "valueDateTime" , "valueDecimal" , "valueId" , "valueInstant" , "valueInteger" , "valueInteger64" , "valueMarkdown" , "valueOid" , "valuePositiveInt" , "valueString" , "valueTime" , "valueUnsignedInt" , "valueUri" , "valueUrl" , "valueUuid" , "valueAddress" , "valueAge" , "valueAnnotation" , "valueAttachment" , "valueCodeableConcept" , "valueCodeableReference" , "valueCoding" , "valueContactPoint" , "valueCount" , "valueDistance" , "valueDuration" , "valueHumanName" , "valueIdentifier" , "valueMoney" , "valuePeriod" , "valueQuantity" , "valueRange" , "valueRatio" , "valueRatioRange" , "valueReference" , "valueSampledData" , "valueSignature" , "valueTiming" , "valueContactDetail" , "valueDataRequirement" , "valueExpression" , "valueParameterDefinition" , "valueRelatedArtifact" , "valueTriggerDefinition" , "valueUsageContext" , "valueAvailability" , "valueExtendedContactDetail" , "valueDosage" , "valueMeta" , };
pub static ELEMENTDEFINITION_CONSTRAINT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "key" , "requirements" , "severity" , "suppress" , "human" , "expression" , "source" , };
pub static ELEMENTDEFINITION_BINDING: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "strength" , "description" , "valueSet" , "additional" , };
pub static ELEMENTDEFINITION_BINDING_ADDITIONAL: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "purpose" , "valueSet" , "documentation" , "shortDoco" , "usage" , "any" , };
pub static ELEMENTDEFINITION_MAPPING: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "identity" , "language" , "map" , "comment" , };
pub static EXPRESSION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "description" , "name" , "language" , "expression" , "reference" , };
pub static EXTENDEDCONTACTDETAIL: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "purpose" , "name" , "telecom" , "address" , "organization" , "period" , };
pub static EXTENSION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "url" , "valueBase64Binary" , "valueBoolean" , "valueCanonical" , "valueCode" , "valueDate" , "valueDateTime" , "valueDecimal" , "valueId" , "valueInstant" , "valueInteger" , "valueInteger64" , "valueMarkdown" , "valueOid" , "valuePositiveInt" , "valueString" , "valueTime" , "valueUnsignedInt" , "valueUri" , "valueUrl" , "valueUuid" , "valueAddress" , "valueAge" , "valueAnnotation" , "valueAttachment" , "valueCodeableConcept" , "valueCodeableReference" , "valueCoding" , "valueContactPoint" , "valueCount" , "valueDistance" , "valueDuration" , "valueHumanName" , "valueIdentifier" , "valueMoney" , "valuePeriod" , "valueQuantity" , "valueRange" , "valueRatio" , "valueRatioRange" , "valueReference" , "valueSampledData" , "valueSignature" , "valueTiming" , "valueContactDetail" , "valueDataRequirement" , "valueExpression" , "valueParameterDefinition" , "valueRelatedArtifact" , "valueTriggerDefinition" , "valueUsageContext" , "valueAvailability" , "valueExtendedContactDetail" , "valueDosage" , "valueMeta" , };
pub static HUMANNAME: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "use" , "text" , "family" , "given" , "prefix" , "suffix" , "period" , };
pub static IDENTIFIER: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "use" , "type" , "system" , "value" , "period" , "assigner" , };
pub static MARKETINGSTATUS: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "country" , "jurisdiction" , "status" , "dateRange" , "restoreDate" , };
pub static META: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "versionId" , "lastUpdated" , "source" , "profile" , "security" , "tag" , };
pub static MONETARYCOMPONENT: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "type" , "code" , "factor" , "amount" , };
pub static MONEY: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "value" , "currency" , };
pub static NARRATIVE: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "status" , "div" , };
pub static PARAMETERDEFINITION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "name" , "use" , "min" , "max" , "documentation" , "type" , "profile" , };
pub static PERIOD: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "start" , "end" , };
pub static PRODUCTSHELFLIFE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "periodDuration" , "periodString" , "specialPrecautionsForStorage" , };
pub static QUANTITY: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "value" , "comparator" , "unit" , "system" , "code" , };
pub static RANGE: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "low" , "high" , };
pub static RATIO: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "numerator" , "denominator" , };
pub static RATIORANGE: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "lowNumerator" , "highNumerator" , "denominator" , };
pub static REFERENCE: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "reference" , "type" , "identifier" , "display" , };
pub static RELATEDARTIFACT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "type" , "classifier" , "label" , "display" , "citation" , "document" , "resource" , "resourceReference" , "publicationStatus" , "publicationDate" , };
pub static SAMPLEDDATA: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "origin" , "interval" , "intervalUnit" , "factor" , "lowerLimit" , "upperLimit" , "dimensions" , "codeMap" , "offsets" , "data" , };
pub static SIGNATURE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "type" , "when" , "who" , "onBehalfOf" , "targetFormat" , "sigFormat" , "data" , };
pub static TIMING: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "event" , "repeat" , "code" , };
pub static TIMING_REPEAT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "boundsDuration" , "boundsRange" , "boundsPeriod" , "count" , "countMax" , "duration" , "durationMax" , "durationUnit" , "frequency" , "frequencyMax" , "period" , "periodMax" , "periodUnit" , "dayOfWeek" , "timeOfDay" , "when" , "offset" , };
pub static TRIGGERDEFINITION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "type" , "name" , "code" , "subscriptionTopic" , "timingTiming" , "timingReference" , "timingDate" , "timingDateTime" , "data" , "condition" , };
pub static USAGECONTEXT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "code" , "valueCodeableConcept" , "valueQuantity" , "valueRange" , "valueReference" , };
pub static VIRTUALSERVICEDETAIL: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "channelType" , "addressUrl" , "addressString" , "addressContactPoint" , "addressExtendedContactDetail" , "additionalInfo" , "maxParticipants" , "sessionKey" , };
pub static ACCOUNT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "status" , "billingStatus" , "type" , "name" , "subject" , "servicePeriod" , "coverage" , "owner" , "description" , "guarantor" , "diagnosis" , "procedure" , "relatedAccount" , "currency" , "balance" , "calculatedAt" , };
pub static ACCOUNT_COVERAGE: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "coverage" , "priority" , };
pub static ACCOUNT_GUARANTOR: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "party" , "onHold" , "period" , };
pub static ACCOUNT_DIAGNOSIS: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "sequence" , "condition" , "dateOfDiagnosis" , "type" , "onAdmission" , "packageCode" , };
pub static ACCOUNT_PROCEDURE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "sequence" , "code" , "dateOfService" , "type" , "packageCode" , "device" , };
pub static ACCOUNT_RELATEDACCOUNT: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "relationship" , "account" , };
pub static ACCOUNT_BALANCE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "aggregate" , "term" , "estimate" , "amount" , };
pub static ACTIVITYDEFINITION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "url" , "identifier" , "version" , "versionAlgorithmString" , "versionAlgorithmCoding" , "name" , "title" , "subtitle" , "status" , "experimental" , "subjectCodeableConcept" , "subjectReference" , "subjectCanonical" , "date" , "publisher" , "contact" , "description" , "useContext" , "jurisdiction" , "purpose" , "usage" , "copyright" , "copyrightLabel" , "approvalDate" , "lastReviewDate" , "effectivePeriod" , "topic" , "author" , "editor" , "reviewer" , "endorser" , "relatedArtifact" , "library" , "kind" , "profile" , "code" , "intent" , "priority" , "doNotPerform" , "timingTiming" , "timingAge" , "timingRange" , "timingDuration" , "asNeededBoolean" , "asNeededCodeableConcept" , "location" , "participant" , "productReference" , "productCodeableConcept" , "quantity" , "dosage" , "bodySite" , "specimenRequirement" , "observationRequirement" , "observationResultRequirement" , "transform" , "dynamicValue" , };
pub static ACTIVITYDEFINITION_PARTICIPANT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "typeCanonical" , "typeReference" , "role" , "function" , };
pub static ACTIVITYDEFINITION_DYNAMICVALUE: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "path" , "expression" , };
pub static ACTORDEFINITION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "url" , "identifier" , "version" , "versionAlgorithmString" , "versionAlgorithmCoding" , "name" , "title" , "status" , "experimental" , "date" , "publisher" , "contact" , "description" , "useContext" , "jurisdiction" , "purpose" , "copyright" , "copyrightLabel" , "type" , "documentation" , "reference" , "capabilities" , "derivedFrom" , };
pub static ADMINISTRABLEPRODUCTDEFINITION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "status" , "formOf" , "administrableDoseForm" , "unitOfPresentation" , "producedFrom" , "ingredient" , "device" , "description" , "property" , "routeOfAdministration" , };
pub static ADMINISTRABLEPRODUCTDEFINITION_PROPERTY: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "valueCodeableConcept" , "valueQuantity" , "valueDate" , "valueBoolean" , "valueMarkdown" , "valueAttachment" , "valueReference" , "status" , };
pub static ADMINISTRABLEPRODUCTDEFINITION_ROUTEOFADMINISTRATION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "code" , "firstDose" , "maxSingleDose" , "maxDosePerDay" , "maxDosePerTreatmentPeriod" , "maxTreatmentPeriod" , "targetSpecies" , };
pub static ADMINISTRABLEPRODUCTDEFINITION_ROUTEOFADMINISTRATION_TARGETSPECIES: phf::OrderedSet<
    &'static str,
> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "code" , "withdrawalPeriod" , };
pub static ADMINISTRABLEPRODUCTDEFINITION_ROUTEOFADMINISTRATION_TARGETSPECIES_WITHDRAWALPERIOD:
    phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "tissue" , "value" , "supportingInformation" , };
pub static ADVERSEEVENT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "status" , "actuality" , "category" , "code" , "subject" , "encounter" , "occurrenceDateTime" , "occurrencePeriod" , "occurrenceTiming" , "detected" , "recordedDate" , "resultingEffect" , "location" , "seriousness" , "outcome" , "recorder" , "participant" , "study" , "expectedInResearchStudy" , "suspectEntity" , "contributingFactor" , "preventiveAction" , "mitigatingAction" , "supportingInfo" , "note" , };
pub static ADVERSEEVENT_PARTICIPANT: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "function" , "actor" , };
pub static ADVERSEEVENT_SUSPECTENTITY: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "instanceCodeableConcept" , "instanceReference" , "causality" , };
pub static ADVERSEEVENT_SUSPECTENTITY_CAUSALITY: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "assessmentMethod" , "entityRelatedness" , "author" , };
pub static ADVERSEEVENT_CONTRIBUTINGFACTOR: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "itemReference" , "itemCodeableConcept" , };
pub static ADVERSEEVENT_PREVENTIVEACTION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "itemReference" , "itemCodeableConcept" , };
pub static ADVERSEEVENT_MITIGATINGACTION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "itemReference" , "itemCodeableConcept" , };
pub static ADVERSEEVENT_SUPPORTINGINFO: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "itemReference" , "itemCodeableConcept" , };
pub static ALLERGYINTOLERANCE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "clinicalStatus" , "verificationStatus" , "type" , "category" , "criticality" , "code" , "patient" , "encounter" , "onsetDateTime" , "onsetAge" , "onsetPeriod" , "onsetRange" , "onsetString" , "recordedDate" , "participant" , "lastOccurrence" , "note" , "reaction" , };
pub static ALLERGYINTOLERANCE_PARTICIPANT: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "function" , "actor" , };
pub static ALLERGYINTOLERANCE_REACTION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "substance" , "manifestation" , "description" , "onset" , "severity" , "exposureRoute" , "note" , };
pub static APPOINTMENT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "status" , "cancellationReason" , "class" , "serviceCategory" , "serviceType" , "specialty" , "appointmentType" , "reason" , "priority" , "description" , "replaces" , "virtualService" , "supportingInformation" , "previousAppointment" , "originatingAppointment" , "start" , "end" , "minutesDuration" , "requestedPeriod" , "slot" , "account" , "created" , "cancellationDate" , "note" , "patientInstruction" , "basedOn" , "subject" , "participant" , "recurrenceId" , "occurrenceChanged" , "recurrenceTemplate" , };
pub static APPOINTMENT_PARTICIPANT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "period" , "actor" , "required" , "status" , };
pub static APPOINTMENT_RECURRENCETEMPLATE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "timezone" , "recurrenceType" , "lastOccurrenceDate" , "occurrenceCount" , "occurrenceDate" , "weeklyTemplate" , "monthlyTemplate" , "yearlyTemplate" , "excludingDate" , "excludingRecurrenceId" , };
pub static APPOINTMENT_RECURRENCETEMPLATE_WEEKLYTEMPLATE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "monday" , "tuesday" , "wednesday" , "thursday" , "friday" , "saturday" , "sunday" , "weekInterval" , };
pub static APPOINTMENT_RECURRENCETEMPLATE_MONTHLYTEMPLATE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "dayOfMonth" , "nthWeekOfMonth" , "dayOfWeek" , "monthInterval" , };
pub static APPOINTMENT_RECURRENCETEMPLATE_YEARLYTEMPLATE: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "yearInterval" , };
pub static APPOINTMENTRESPONSE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "appointment" , "proposedNewTime" , "start" , "end" , "participantType" , "actor" , "participantStatus" , "comment" , "recurring" , "occurrenceDate" , "recurrenceId" , };
pub static ARTIFACTASSESSMENT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "title" , "citeAsReference" , "citeAsMarkdown" , "date" , "copyright" , "approvalDate" , "lastReviewDate" , "artifactReference" , "artifactCanonical" , "artifactUri" , "content" , "workflowStatus" , "disposition" , };
pub static ARTIFACTASSESSMENT_CONTENT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "informationType" , "summary" , "type" , "classifier" , "quantity" , "author" , "path" , "relatedArtifact" , "freeToShare" , "component" , };
pub static AUDITEVENT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "category" , "code" , "action" , "severity" , "occurredPeriod" , "occurredDateTime" , "recorded" , "outcome" , "authorization" , "basedOn" , "patient" , "encounter" , "agent" , "source" , "entity" , };
pub static AUDITEVENT_OUTCOME: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "code" , "detail" , };
pub static AUDITEVENT_AGENT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "role" , "who" , "requestor" , "location" , "policy" , "networkReference" , "networkUri" , "networkString" , "authorization" , };
pub static AUDITEVENT_SOURCE: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "site" , "observer" , "type" , };
pub static AUDITEVENT_ENTITY: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "what" , "role" , "securityLabel" , "query" , "detail" , "agent" , };
pub static AUDITEVENT_ENTITY_DETAIL: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "valueQuantity" , "valueCodeableConcept" , "valueString" , "valueBoolean" , "valueInteger" , "valueRange" , "valueRatio" , "valueTime" , "valueDateTime" , "valuePeriod" , "valueBase64Binary" , };
pub static BASIC: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "code" , "subject" , "created" , "author" , };
pub static BINARY: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "contentType" , "securityContext" , "data" , };
pub static BIOLOGICALLYDERIVEDPRODUCT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "productCategory" , "productCode" , "parent" , "request" , "identifier" , "biologicalSourceEvent" , "processingFacility" , "division" , "productStatus" , "expirationDate" , "collection" , "storageTempRequirements" , "property" , };
pub static BIOLOGICALLYDERIVEDPRODUCT_COLLECTION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "collector" , "source" , "collectedDateTime" , "collectedPeriod" , };
pub static BIOLOGICALLYDERIVEDPRODUCT_PROPERTY: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "valueBoolean" , "valueInteger" , "valueCodeableConcept" , "valuePeriod" , "valueQuantity" , "valueRange" , "valueRatio" , "valueString" , "valueAttachment" , };
pub static BIOLOGICALLYDERIVEDPRODUCTDISPENSE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "basedOn" , "partOf" , "status" , "originRelationshipType" , "product" , "patient" , "matchStatus" , "performer" , "location" , "quantity" , "preparedDate" , "whenHandedOver" , "destination" , "note" , "usageInstruction" , };
pub static BIOLOGICALLYDERIVEDPRODUCTDISPENSE_PERFORMER: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "function" , "actor" , };
pub static BODYSTRUCTURE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "active" , "morphology" , "includedStructure" , "excludedStructure" , "description" , "image" , "patient" , };
pub static BODYSTRUCTURE_INCLUDEDSTRUCTURE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "structure" , "laterality" , "bodyLandmarkOrientation" , "spatialReference" , "qualifier" , };
pub static BODYSTRUCTURE_INCLUDEDSTRUCTURE_BODYLANDMARKORIENTATION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "landmarkDescription" , "clockFacePosition" , "distanceFromLandmark" , "surfaceOrientation" , };
pub static BODYSTRUCTURE_INCLUDEDSTRUCTURE_BODYLANDMARKORIENTATION_DISTANCEFROMLANDMARK:
    phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "device" , "value" , };
pub static BUNDLE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "identifier" , "type" , "timestamp" , "total" , "link" , "entry" , "signature" , "issues" , };
pub static BUNDLE_LINK: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "relation" , "url" , };
pub static BUNDLE_ENTRY: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "link" , "fullUrl" , "resource" , "search" , "request" , "response" , };
pub static BUNDLE_ENTRY_SEARCH: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "mode" , "score" , };
pub static BUNDLE_ENTRY_REQUEST: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "method" , "url" , "ifNoneMatch" , "ifModifiedSince" , "ifMatch" , "ifNoneExist" , };
pub static BUNDLE_ENTRY_RESPONSE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "status" , "location" , "etag" , "lastModified" , "outcome" , };
pub static CAPABILITYSTATEMENT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "url" , "identifier" , "version" , "versionAlgorithmString" , "versionAlgorithmCoding" , "name" , "title" , "status" , "experimental" , "date" , "publisher" , "contact" , "description" , "useContext" , "jurisdiction" , "purpose" , "copyright" , "copyrightLabel" , "kind" , "instantiates" , "imports" , "software" , "implementation" , "fhirVersion" , "format" , "patchFormat" , "acceptLanguage" , "implementationGuide" , "rest" , "messaging" , "document" , };
pub static CAPABILITYSTATEMENT_SOFTWARE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "name" , "version" , "releaseDate" , };
pub static CAPABILITYSTATEMENT_IMPLEMENTATION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "description" , "url" , "custodian" , };
pub static CAPABILITYSTATEMENT_REST: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "mode" , "documentation" , "security" , "resource" , "interaction" , "searchParam" , "operation" , "compartment" , };
pub static CAPABILITYSTATEMENT_REST_SECURITY: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "cors" , "service" , "description" , };
pub static CAPABILITYSTATEMENT_REST_RESOURCE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "profile" , "supportedProfile" , "documentation" , "interaction" , "versioning" , "readHistory" , "updateCreate" , "conditionalCreate" , "conditionalRead" , "conditionalUpdate" , "conditionalPatch" , "conditionalDelete" , "referencePolicy" , "searchInclude" , "searchRevInclude" , "searchParam" , "operation" , };
pub static CAPABILITYSTATEMENT_REST_RESOURCE_INTERACTION: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "code" , "documentation" , };
pub static CAPABILITYSTATEMENT_REST_RESOURCE_SEARCHPARAM: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "name" , "definition" , "type" , "documentation" , };
pub static CAPABILITYSTATEMENT_REST_RESOURCE_OPERATION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "name" , "definition" , "documentation" , };
pub static CAPABILITYSTATEMENT_REST_INTERACTION: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "code" , "documentation" , };
pub static CAPABILITYSTATEMENT_MESSAGING: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "endpoint" , "reliableCache" , "documentation" , "supportedMessage" , };
pub static CAPABILITYSTATEMENT_MESSAGING_ENDPOINT: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "protocol" , "address" , };
pub static CAPABILITYSTATEMENT_MESSAGING_SUPPORTEDMESSAGE: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "mode" , "definition" , };
pub static CAPABILITYSTATEMENT_DOCUMENT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "mode" , "documentation" , "profile" , };
pub static CAREPLAN: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "instantiatesCanonical" , "instantiatesUri" , "basedOn" , "replaces" , "partOf" , "status" , "intent" , "category" , "title" , "description" , "subject" , "encounter" , "period" , "created" , "custodian" , "contributor" , "careTeam" , "addresses" , "supportingInfo" , "goal" , "activity" , "note" , };
pub static CAREPLAN_ACTIVITY: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "performedActivity" , "progress" , "plannedActivityReference" , };
pub static CARETEAM: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "status" , "category" , "name" , "subject" , "period" , "participant" , "reason" , "managingOrganization" , "telecom" , "note" , };
pub static CARETEAM_PARTICIPANT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "role" , "member" , "onBehalfOf" , "coveragePeriod" , "coverageTiming" , };
pub static CHARGEITEM: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "definitionUri" , "definitionCanonical" , "status" , "partOf" , "code" , "subject" , "encounter" , "occurrenceDateTime" , "occurrencePeriod" , "occurrenceTiming" , "performer" , "performingOrganization" , "requestingOrganization" , "costCenter" , "quantity" , "bodysite" , "unitPriceComponent" , "totalPriceComponent" , "overrideReason" , "enterer" , "enteredDate" , "reason" , "service" , "product" , "account" , "note" , "supportingInformation" , };
pub static CHARGEITEM_PERFORMER: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "function" , "actor" , };
pub static CHARGEITEMDEFINITION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "url" , "identifier" , "version" , "versionAlgorithmString" , "versionAlgorithmCoding" , "name" , "title" , "derivedFromUri" , "partOf" , "replaces" , "status" , "experimental" , "date" , "publisher" , "contact" , "description" , "useContext" , "jurisdiction" , "purpose" , "copyright" , "copyrightLabel" , "approvalDate" , "lastReviewDate" , "code" , "instance" , "applicability" , "propertyGroup" , };
pub static CHARGEITEMDEFINITION_APPLICABILITY: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "condition" , "effectivePeriod" , "relatedArtifact" , };
pub static CHARGEITEMDEFINITION_PROPERTYGROUP: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "applicability" , "priceComponent" , };
pub static CITATION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "url" , "identifier" , "version" , "versionAlgorithmString" , "versionAlgorithmCoding" , "name" , "title" , "status" , "experimental" , "date" , "publisher" , "contact" , "description" , "useContext" , "jurisdiction" , "purpose" , "copyright" , "copyrightLabel" , "approvalDate" , "lastReviewDate" , "effectivePeriod" , "author" , "editor" , "reviewer" , "endorser" , "summary" , "classification" , "note" , "currentState" , "statusDate" , "relatedArtifact" , "citedArtifact" , };
pub static CITATION_SUMMARY: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "style" , "text" , };
pub static CITATION_CLASSIFICATION: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "classifier" , };
pub static CITATION_STATUSDATE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "activity" , "actual" , "period" , };
pub static CITATION_CITEDARTIFACT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "identifier" , "relatedIdentifier" , "dateAccessed" , "version" , "currentState" , "statusDate" , "title" , "abstract" , "part" , "relatesTo" , "publicationForm" , "webLocation" , "classification" , "contributorship" , "note" , };
pub static CITATION_CITEDARTIFACT_VERSION: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "value" , "baseCitation" , };
pub static CITATION_CITEDARTIFACT_STATUSDATE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "activity" , "actual" , "period" , };
pub static CITATION_CITEDARTIFACT_TITLE: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "language" , "text" , };
pub static CITATION_CITEDARTIFACT_ABSTRACT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "language" , "text" , "copyright" , };
pub static CITATION_CITEDARTIFACT_PART: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "value" , "baseCitation" , };
pub static CITATION_CITEDARTIFACT_RELATESTO: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "classifier" , "label" , "display" , "citation" , "document" , "resource" , "resourceReference" , };
pub static CITATION_CITEDARTIFACT_PUBLICATIONFORM: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "publishedIn" , "citedMedium" , "volume" , "issue" , "articleDate" , "publicationDateText" , "publicationDateSeason" , "lastRevisionDate" , "language" , "accessionNumber" , "pageString" , "firstPage" , "lastPage" , "pageCount" , "copyright" , };
pub static CITATION_CITEDARTIFACT_PUBLICATIONFORM_PUBLISHEDIN: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "identifier" , "title" , "publisher" , "publisherLocation" , };
pub static CITATION_CITEDARTIFACT_WEBLOCATION: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "classifier" , "url" , };
pub static CITATION_CITEDARTIFACT_CLASSIFICATION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "classifier" , "artifactAssessment" , };
pub static CITATION_CITEDARTIFACT_CONTRIBUTORSHIP: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "complete" , "entry" , "summary" , };
pub static CITATION_CITEDARTIFACT_CONTRIBUTORSHIP_ENTRY: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "contributor" , "forenameInitials" , "affiliation" , "contributionType" , "role" , "contributionInstance" , "correspondingContact" , "rankingOrder" , };
pub static CITATION_CITEDARTIFACT_CONTRIBUTORSHIP_ENTRY_CONTRIBUTIONINSTANCE: phf::OrderedSet<
    &'static str,
> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "time" , };
pub static CITATION_CITEDARTIFACT_CONTRIBUTORSHIP_SUMMARY: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "style" , "source" , "value" , };
pub static CLAIM: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "traceNumber" , "status" , "type" , "subType" , "use" , "patient" , "billablePeriod" , "created" , "enterer" , "insurer" , "provider" , "priority" , "fundsReserve" , "related" , "prescription" , "originalPrescription" , "payee" , "referral" , "encounter" , "facility" , "diagnosisRelatedGroup" , "event" , "careTeam" , "supportingInfo" , "diagnosis" , "procedure" , "insurance" , "accident" , "patientPaid" , "item" , "total" , };
pub static CLAIM_RELATED: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "claim" , "relationship" , "reference" , };
pub static CLAIM_PAYEE: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "party" , };
pub static CLAIM_EVENT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "whenDateTime" , "whenPeriod" , };
pub static CLAIM_CARETEAM: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "sequence" , "provider" , "responsible" , "role" , "specialty" , };
pub static CLAIM_SUPPORTINGINFO: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "sequence" , "category" , "code" , "timingDate" , "timingPeriod" , "valueBoolean" , "valueString" , "valueQuantity" , "valueAttachment" , "valueReference" , "valueIdentifier" , "reason" , };
pub static CLAIM_DIAGNOSIS: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "sequence" , "diagnosisCodeableConcept" , "diagnosisReference" , "type" , "onAdmission" , };
pub static CLAIM_PROCEDURE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "sequence" , "type" , "date" , "procedureCodeableConcept" , "procedureReference" , "udi" , };
pub static CLAIM_INSURANCE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "sequence" , "focal" , "identifier" , "coverage" , "businessArrangement" , "preAuthRef" , "claimResponse" , };
pub static CLAIM_ACCIDENT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "date" , "type" , "locationAddress" , "locationReference" , };
pub static CLAIM_ITEM: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "sequence" , "traceNumber" , "careTeamSequence" , "diagnosisSequence" , "procedureSequence" , "informationSequence" , "revenue" , "category" , "productOrService" , "productOrServiceEnd" , "request" , "modifier" , "programCode" , "servicedDate" , "servicedPeriod" , "locationCodeableConcept" , "locationAddress" , "locationReference" , "patientPaid" , "quantity" , "unitPrice" , "factor" , "tax" , "net" , "udi" , "bodySite" , "encounter" , "detail" , };
pub static CLAIM_ITEM_BODYSITE: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "site" , "subSite" , };
pub static CLAIM_ITEM_DETAIL: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "sequence" , "traceNumber" , "revenue" , "category" , "productOrService" , "productOrServiceEnd" , "modifier" , "programCode" , "patientPaid" , "quantity" , "unitPrice" , "factor" , "tax" , "net" , "udi" , "subDetail" , };
pub static CLAIM_ITEM_DETAIL_SUBDETAIL: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "sequence" , "traceNumber" , "revenue" , "category" , "productOrService" , "productOrServiceEnd" , "modifier" , "programCode" , "patientPaid" , "quantity" , "unitPrice" , "factor" , "tax" , "net" , "udi" , };
pub static CLAIMRESPONSE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "traceNumber" , "status" , "type" , "subType" , "use" , "patient" , "created" , "insurer" , "requestor" , "request" , "outcome" , "decision" , "disposition" , "preAuthRef" , "preAuthPeriod" , "event" , "payeeType" , "encounter" , "diagnosisRelatedGroup" , "item" , "addItem" , "adjudication" , "total" , "payment" , "fundsReserve" , "formCode" , "form" , "processNote" , "communicationRequest" , "insurance" , "error" , };
pub static CLAIMRESPONSE_EVENT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "whenDateTime" , "whenPeriod" , };
pub static CLAIMRESPONSE_ITEM: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "itemSequence" , "traceNumber" , "noteNumber" , "reviewOutcome" , "adjudication" , "detail" , };
pub static CLAIMRESPONSE_ITEM_REVIEWOUTCOME: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "decision" , "reason" , "preAuthRef" , "preAuthPeriod" , };
pub static CLAIMRESPONSE_ITEM_ADJUDICATION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "category" , "reason" , "amount" , "quantity" , };
pub static CLAIMRESPONSE_ITEM_DETAIL: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "detailSequence" , "traceNumber" , "noteNumber" , "reviewOutcome" , "adjudication" , "subDetail" , };
pub static CLAIMRESPONSE_ITEM_DETAIL_SUBDETAIL: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "subDetailSequence" , "traceNumber" , "noteNumber" , "reviewOutcome" , "adjudication" , };
pub static CLAIMRESPONSE_ADDITEM: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "itemSequence" , "detailSequence" , "subdetailSequence" , "traceNumber" , "provider" , "revenue" , "productOrService" , "productOrServiceEnd" , "request" , "modifier" , "programCode" , "servicedDate" , "servicedPeriod" , "locationCodeableConcept" , "locationAddress" , "locationReference" , "quantity" , "unitPrice" , "factor" , "tax" , "net" , "bodySite" , "noteNumber" , "reviewOutcome" , "adjudication" , "detail" , };
pub static CLAIMRESPONSE_ADDITEM_BODYSITE: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "site" , "subSite" , };
pub static CLAIMRESPONSE_ADDITEM_DETAIL: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "traceNumber" , "revenue" , "productOrService" , "productOrServiceEnd" , "modifier" , "quantity" , "unitPrice" , "factor" , "tax" , "net" , "noteNumber" , "reviewOutcome" , "adjudication" , "subDetail" , };
pub static CLAIMRESPONSE_ADDITEM_DETAIL_SUBDETAIL: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "traceNumber" , "revenue" , "productOrService" , "productOrServiceEnd" , "modifier" , "quantity" , "unitPrice" , "factor" , "tax" , "net" , "noteNumber" , "reviewOutcome" , "adjudication" , };
pub static CLAIMRESPONSE_TOTAL: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "category" , "amount" , };
pub static CLAIMRESPONSE_PAYMENT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "adjustment" , "adjustmentReason" , "date" , "amount" , "identifier" , };
pub static CLAIMRESPONSE_PROCESSNOTE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "number" , "type" , "text" , "language" , };
pub static CLAIMRESPONSE_INSURANCE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "sequence" , "focal" , "coverage" , "businessArrangement" , "claimResponse" , };
pub static CLAIMRESPONSE_ERROR: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "itemSequence" , "detailSequence" , "subDetailSequence" , "code" , "expression" , };
pub static CLINICALIMPRESSION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "status" , "statusReason" , "description" , "subject" , "encounter" , "effectiveDateTime" , "effectivePeriod" , "date" , "performer" , "previous" , "problem" , "changePattern" , "protocol" , "summary" , "finding" , "prognosisCodeableConcept" , "prognosisReference" , "supportingInfo" , "note" , };
pub static CLINICALIMPRESSION_FINDING: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "item" , "basis" , };
pub static CLINICALUSEDEFINITION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "type" , "category" , "subject" , "status" , "contraindication" , "indication" , "interaction" , "population" , "library" , "undesirableEffect" , "warning" , };
pub static CLINICALUSEDEFINITION_CONTRAINDICATION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "diseaseSymptomProcedure" , "diseaseStatus" , "comorbidity" , "indication" , "applicability" , "otherTherapy" , };
pub static CLINICALUSEDEFINITION_CONTRAINDICATION_OTHERTHERAPY: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "relationshipType" , "treatment" , };
pub static CLINICALUSEDEFINITION_INDICATION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "diseaseSymptomProcedure" , "diseaseStatus" , "comorbidity" , "intendedEffect" , "durationRange" , "durationString" , "undesirableEffect" , "applicability" , "otherTherapy" , };
pub static CLINICALUSEDEFINITION_INTERACTION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "interactant" , "type" , "effect" , "incidence" , "management" , };
pub static CLINICALUSEDEFINITION_INTERACTION_INTERACTANT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "itemReference" , "itemCodeableConcept" , };
pub static CLINICALUSEDEFINITION_UNDESIRABLEEFFECT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "symptomConditionEffect" , "classification" , "frequencyOfOccurrence" , };
pub static CLINICALUSEDEFINITION_WARNING: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "description" , "code" , };
pub static CODESYSTEM: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "url" , "identifier" , "version" , "versionAlgorithmString" , "versionAlgorithmCoding" , "name" , "title" , "status" , "experimental" , "date" , "publisher" , "contact" , "description" , "useContext" , "jurisdiction" , "purpose" , "copyright" , "copyrightLabel" , "approvalDate" , "lastReviewDate" , "effectivePeriod" , "topic" , "author" , "editor" , "reviewer" , "endorser" , "relatedArtifact" , "caseSensitive" , "valueSet" , "hierarchyMeaning" , "compositional" , "versionNeeded" , "content" , "supplements" , "count" , "filter" , "property" , "concept" , };
pub static CODESYSTEM_FILTER: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "code" , "description" , "operator" , "value" , };
pub static CODESYSTEM_PROPERTY: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "code" , "uri" , "description" , "type" , };
pub static CODESYSTEM_CONCEPT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "code" , "display" , "definition" , "designation" , "property" , "concept" , };
pub static CODESYSTEM_CONCEPT_DESIGNATION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "language" , "use" , "additionalUse" , "value" , };
pub static CODESYSTEM_CONCEPT_PROPERTY: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "code" , "valueCode" , "valueCoding" , "valueString" , "valueInteger" , "valueBoolean" , "valueDateTime" , "valueDecimal" , };
pub static COMMUNICATION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "instantiatesCanonical" , "instantiatesUri" , "basedOn" , "partOf" , "inResponseTo" , "status" , "statusReason" , "category" , "priority" , "medium" , "subject" , "topic" , "about" , "encounter" , "sent" , "received" , "recipient" , "sender" , "reason" , "payload" , "note" , };
pub static COMMUNICATION_PAYLOAD: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "contentAttachment" , "contentReference" , "contentCodeableConcept" , };
pub static COMMUNICATIONREQUEST: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "basedOn" , "replaces" , "groupIdentifier" , "status" , "statusReason" , "intent" , "category" , "priority" , "doNotPerform" , "medium" , "subject" , "about" , "encounter" , "payload" , "occurrenceDateTime" , "occurrencePeriod" , "authoredOn" , "requester" , "recipient" , "informationProvider" , "reason" , "note" , };
pub static COMMUNICATIONREQUEST_PAYLOAD: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "contentAttachment" , "contentReference" , "contentCodeableConcept" , };
pub static COMPARTMENTDEFINITION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "url" , "version" , "versionAlgorithmString" , "versionAlgorithmCoding" , "name" , "title" , "status" , "experimental" , "date" , "publisher" , "contact" , "description" , "useContext" , "purpose" , "code" , "search" , "resource" , };
pub static COMPARTMENTDEFINITION_RESOURCE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "code" , "param" , "documentation" , "startParam" , "endParam" , };
pub static COMPOSITION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "url" , "identifier" , "version" , "status" , "type" , "category" , "subject" , "encounter" , "date" , "useContext" , "author" , "name" , "title" , "note" , "attester" , "custodian" , "relatesTo" , "event" , "section" , };
pub static COMPOSITION_ATTESTER: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "mode" , "time" , "party" , };
pub static COMPOSITION_EVENT: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "period" , "detail" , };
pub static COMPOSITION_SECTION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "title" , "code" , "author" , "focus" , "text" , "orderedBy" , "entry" , "emptyReason" , "section" , };
pub static CONCEPTMAP: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "url" , "identifier" , "version" , "versionAlgorithmString" , "versionAlgorithmCoding" , "name" , "title" , "status" , "experimental" , "date" , "publisher" , "contact" , "description" , "useContext" , "jurisdiction" , "purpose" , "copyright" , "copyrightLabel" , "approvalDate" , "lastReviewDate" , "effectivePeriod" , "topic" , "author" , "editor" , "reviewer" , "endorser" , "relatedArtifact" , "property" , "additionalAttribute" , "sourceScopeUri" , "sourceScopeCanonical" , "targetScopeUri" , "targetScopeCanonical" , "group" , };
pub static CONCEPTMAP_PROPERTY: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "code" , "uri" , "description" , "type" , "system" , };
pub static CONCEPTMAP_ADDITIONALATTRIBUTE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "code" , "uri" , "description" , "type" , };
pub static CONCEPTMAP_GROUP: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "source" , "target" , "element" , "unmapped" , };
pub static CONCEPTMAP_GROUP_ELEMENT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "code" , "display" , "valueSet" , "noMap" , "target" , };
pub static CONCEPTMAP_GROUP_ELEMENT_TARGET: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "code" , "display" , "valueSet" , "relationship" , "comment" , "property" , "dependsOn" , "product" , };
pub static CONCEPTMAP_GROUP_ELEMENT_TARGET_PROPERTY: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "code" , "valueCoding" , "valueString" , "valueInteger" , "valueBoolean" , "valueDateTime" , "valueDecimal" , "valueCode" , };
pub static CONCEPTMAP_GROUP_ELEMENT_TARGET_DEPENDSON: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "attribute" , "valueCode" , "valueCoding" , "valueString" , "valueBoolean" , "valueQuantity" , "valueSet" , };
pub static CONCEPTMAP_GROUP_UNMAPPED: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "mode" , "code" , "display" , "valueSet" , "relationship" , "otherMap" , };
pub static CONDITION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "clinicalStatus" , "verificationStatus" , "category" , "severity" , "code" , "bodySite" , "subject" , "encounter" , "onsetDateTime" , "onsetAge" , "onsetPeriod" , "onsetRange" , "onsetString" , "abatementDateTime" , "abatementAge" , "abatementPeriod" , "abatementRange" , "abatementString" , "recordedDate" , "participant" , "stage" , "evidence" , "note" , };
pub static CONDITION_PARTICIPANT: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "function" , "actor" , };
pub static CONDITION_STAGE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "summary" , "assessment" , "type" , };
pub static CONDITIONDEFINITION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "url" , "identifier" , "version" , "versionAlgorithmString" , "versionAlgorithmCoding" , "name" , "title" , "subtitle" , "status" , "experimental" , "date" , "publisher" , "contact" , "description" , "useContext" , "jurisdiction" , "code" , "severity" , "bodySite" , "stage" , "hasSeverity" , "hasBodySite" , "hasStage" , "definition" , "observation" , "medication" , "precondition" , "team" , "questionnaire" , "plan" , };
pub static CONDITIONDEFINITION_OBSERVATION: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "category" , "code" , };
pub static CONDITIONDEFINITION_MEDICATION: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "category" , "code" , };
pub static CONDITIONDEFINITION_PRECONDITION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "code" , "valueCodeableConcept" , "valueQuantity" , };
pub static CONDITIONDEFINITION_QUESTIONNAIRE: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "purpose" , "reference" , };
pub static CONDITIONDEFINITION_PLAN: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "role" , "reference" , };
pub static CONSENT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "status" , "category" , "subject" , "date" , "period" , "grantor" , "grantee" , "manager" , "controller" , "sourceAttachment" , "sourceReference" , "regulatoryBasis" , "policyBasis" , "policyText" , "verification" , "decision" , "provision" , };
pub static CONSENT_POLICYBASIS: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "reference" , "url" , };
pub static CONSENT_VERIFICATION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "verified" , "verificationType" , "verifiedBy" , "verifiedWith" , "verificationDate" , };
pub static CONSENT_PROVISION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "period" , "actor" , "action" , "securityLabel" , "purpose" , "documentType" , "resourceType" , "code" , "dataPeriod" , "data" , "expression" , "provision" , };
pub static CONSENT_PROVISION_ACTOR: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "role" , "reference" , };
pub static CONSENT_PROVISION_DATA: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "meaning" , "reference" , };
pub static CONTRACT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "url" , "version" , "status" , "legalState" , "instantiatesCanonical" , "instantiatesUri" , "contentDerivative" , "issued" , "applies" , "expirationType" , "subject" , "authority" , "domain" , "site" , "name" , "title" , "subtitle" , "alias" , "author" , "scope" , "topicCodeableConcept" , "topicReference" , "type" , "subType" , "contentDefinition" , "term" , "supportingInfo" , "relevantHistory" , "signer" , "friendly" , "legal" , "rule" , "legallyBindingAttachment" , "legallyBindingReference" , };
pub static CONTRACT_CONTENTDEFINITION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "subType" , "publisher" , "publicationDate" , "publicationStatus" , "copyright" , };
pub static CONTRACT_TERM: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "identifier" , "issued" , "applies" , "topicCodeableConcept" , "topicReference" , "type" , "subType" , "text" , "securityLabel" , "offer" , "asset" , "action" , "group" , };
pub static CONTRACT_TERM_SECURITYLABEL: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "number" , "classification" , "category" , "control" , };
pub static CONTRACT_TERM_OFFER: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "identifier" , "party" , "topic" , "type" , "decision" , "decisionMode" , "answer" , "text" , "linkId" , "securityLabelNumber" , };
pub static CONTRACT_TERM_OFFER_PARTY: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "reference" , "role" , };
pub static CONTRACT_TERM_OFFER_ANSWER: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "valueBoolean" , "valueDecimal" , "valueInteger" , "valueDate" , "valueDateTime" , "valueTime" , "valueString" , "valueUri" , "valueAttachment" , "valueCoding" , "valueQuantity" , "valueReference" , };
pub static CONTRACT_TERM_ASSET: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "scope" , "type" , "typeReference" , "subtype" , "relationship" , "context" , "condition" , "periodType" , "period" , "usePeriod" , "text" , "linkId" , "answer" , "securityLabelNumber" , "valuedItem" , };
pub static CONTRACT_TERM_ASSET_CONTEXT: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "reference" , "code" , "text" , };
pub static CONTRACT_TERM_ASSET_VALUEDITEM: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "entityCodeableConcept" , "entityReference" , "identifier" , "effectiveTime" , "quantity" , "unitPrice" , "factor" , "points" , "net" , "payment" , "paymentDate" , "responsible" , "recipient" , "linkId" , "securityLabelNumber" , };
pub static CONTRACT_TERM_ACTION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "doNotPerform" , "type" , "subject" , "intent" , "linkId" , "status" , "context" , "contextLinkId" , "occurrenceDateTime" , "occurrencePeriod" , "occurrenceTiming" , "requester" , "requesterLinkId" , "performerType" , "performerRole" , "performer" , "performerLinkId" , "reason" , "reasonLinkId" , "note" , "securityLabelNumber" , };
pub static CONTRACT_TERM_ACTION_SUBJECT: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "reference" , "role" , };
pub static CONTRACT_SIGNER: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "party" , "signature" , };
pub static CONTRACT_FRIENDLY: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "contentAttachment" , "contentReference" , };
pub static CONTRACT_LEGAL: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "contentAttachment" , "contentReference" , };
pub static CONTRACT_RULE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "contentAttachment" , "contentReference" , };
pub static COVERAGE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "status" , "kind" , "paymentBy" , "type" , "policyHolder" , "subscriber" , "subscriberId" , "beneficiary" , "dependent" , "relationship" , "period" , "insurer" , "class" , "order" , "network" , "costToBeneficiary" , "subrogation" , "contract" , "insurancePlan" , };
pub static COVERAGE_PAYMENTBY: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "party" , "responsibility" , };
pub static COVERAGE_CLASS: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "value" , "name" , };
pub static COVERAGE_COSTTOBENEFICIARY: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "category" , "network" , "unit" , "term" , "valueQuantity" , "valueMoney" , "exception" , };
pub static COVERAGE_COSTTOBENEFICIARY_EXCEPTION: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "period" , };
pub static COVERAGEELIGIBILITYREQUEST: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "status" , "priority" , "purpose" , "patient" , "event" , "servicedDate" , "servicedPeriod" , "created" , "enterer" , "provider" , "insurer" , "facility" , "supportingInfo" , "insurance" , "item" , };
pub static COVERAGEELIGIBILITYREQUEST_EVENT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "whenDateTime" , "whenPeriod" , };
pub static COVERAGEELIGIBILITYREQUEST_SUPPORTINGINFO: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "sequence" , "information" , "appliesToAll" , };
pub static COVERAGEELIGIBILITYREQUEST_INSURANCE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "focal" , "coverage" , "businessArrangement" , };
pub static COVERAGEELIGIBILITYREQUEST_ITEM: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "supportingInfoSequence" , "category" , "productOrService" , "modifier" , "provider" , "quantity" , "unitPrice" , "facility" , "diagnosis" , "detail" , };
pub static COVERAGEELIGIBILITYREQUEST_ITEM_DIAGNOSIS: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "diagnosisCodeableConcept" , "diagnosisReference" , };
pub static COVERAGEELIGIBILITYRESPONSE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "status" , "purpose" , "patient" , "event" , "servicedDate" , "servicedPeriod" , "created" , "requestor" , "request" , "outcome" , "disposition" , "insurer" , "insurance" , "preAuthRef" , "form" , "error" , };
pub static COVERAGEELIGIBILITYRESPONSE_EVENT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "whenDateTime" , "whenPeriod" , };
pub static COVERAGEELIGIBILITYRESPONSE_INSURANCE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "coverage" , "inforce" , "benefitPeriod" , "item" , };
pub static COVERAGEELIGIBILITYRESPONSE_INSURANCE_ITEM: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "category" , "productOrService" , "modifier" , "provider" , "excluded" , "name" , "description" , "network" , "unit" , "term" , "benefit" , "authorizationRequired" , "authorizationSupporting" , "authorizationUrl" , };
pub static COVERAGEELIGIBILITYRESPONSE_INSURANCE_ITEM_BENEFIT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "allowedUnsignedInt" , "allowedString" , "allowedMoney" , "usedUnsignedInt" , "usedString" , "usedMoney" , };
pub static COVERAGEELIGIBILITYRESPONSE_ERROR: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "code" , "expression" , };
pub static DETECTEDISSUE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "status" , "category" , "code" , "severity" , "subject" , "encounter" , "identifiedDateTime" , "identifiedPeriod" , "author" , "implicated" , "evidence" , "detail" , "reference" , "mitigation" , };
pub static DETECTEDISSUE_EVIDENCE: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "code" , "detail" , };
pub static DETECTEDISSUE_MITIGATION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "action" , "date" , "author" , "note" , };
pub static DEVICE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "displayName" , "definition" , "udiCarrier" , "status" , "availabilityStatus" , "biologicalSourceEvent" , "manufacturer" , "manufactureDate" , "expirationDate" , "lotNumber" , "serialNumber" , "name" , "modelNumber" , "partNumber" , "category" , "type" , "version" , "conformsTo" , "property" , "mode" , "cycle" , "duration" , "owner" , "contact" , "location" , "url" , "endpoint" , "gateway" , "note" , "safety" , "parent" , };
pub static DEVICE_UDICARRIER: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "deviceIdentifier" , "issuer" , "jurisdiction" , "carrierAIDC" , "carrierHRF" , "entryType" , };
pub static DEVICE_NAME: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "value" , "type" , "display" , };
pub static DEVICE_VERSION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "component" , "installDate" , "value" , };
pub static DEVICE_CONFORMSTO: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "category" , "specification" , "version" , };
pub static DEVICE_PROPERTY: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "valueQuantity" , "valueCodeableConcept" , "valueString" , "valueBoolean" , "valueInteger" , "valueRange" , "valueAttachment" , };
pub static DEVICEASSOCIATION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "device" , "category" , "status" , "statusReason" , "subject" , "bodyStructure" , "period" , "operation" , };
pub static DEVICEASSOCIATION_OPERATION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "status" , "operator" , "period" , };
pub static DEVICEDEFINITION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "description" , "identifier" , "udiDeviceIdentifier" , "regulatoryIdentifier" , "partNumber" , "manufacturer" , "deviceName" , "modelNumber" , "classification" , "conformsTo" , "hasPart" , "packaging" , "version" , "safety" , "shelfLifeStorage" , "languageCode" , "property" , "owner" , "contact" , "link" , "note" , "material" , "productionIdentifierInUDI" , "guideline" , "correctiveAction" , "chargeItem" , };
pub static DEVICEDEFINITION_UDIDEVICEIDENTIFIER: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "deviceIdentifier" , "issuer" , "jurisdiction" , "marketDistribution" , };
pub static DEVICEDEFINITION_UDIDEVICEIDENTIFIER_MARKETDISTRIBUTION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "marketPeriod" , "subJurisdiction" , };
pub static DEVICEDEFINITION_REGULATORYIDENTIFIER: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "deviceIdentifier" , "issuer" , "jurisdiction" , };
pub static DEVICEDEFINITION_DEVICENAME: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "name" , "type" , };
pub static DEVICEDEFINITION_CLASSIFICATION: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "justification" , };
pub static DEVICEDEFINITION_CONFORMSTO: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "category" , "specification" , "version" , "source" , };
pub static DEVICEDEFINITION_HASPART: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "reference" , "count" , };
pub static DEVICEDEFINITION_PACKAGING: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "identifier" , "type" , "count" , "distributor" , "udiDeviceIdentifier" , "packaging" , };
pub static DEVICEDEFINITION_PACKAGING_DISTRIBUTOR: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "name" , "organizationReference" , };
pub static DEVICEDEFINITION_VERSION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "component" , "value" , };
pub static DEVICEDEFINITION_PROPERTY: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "valueQuantity" , "valueCodeableConcept" , "valueString" , "valueBoolean" , "valueInteger" , "valueRange" , "valueAttachment" , };
pub static DEVICEDEFINITION_LINK: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "relation" , "relatedDevice" , };
pub static DEVICEDEFINITION_MATERIAL: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "substance" , "alternate" , "allergenicIndicator" , };
pub static DEVICEDEFINITION_GUIDELINE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "useContext" , "usageInstruction" , "relatedArtifact" , "indication" , "contraindication" , "warning" , "intendedUse" , };
pub static DEVICEDEFINITION_CORRECTIVEACTION: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "recall" , "scope" , "period" , };
pub static DEVICEDEFINITION_CHARGEITEM: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "chargeItemCode" , "count" , "effectivePeriod" , "useContext" , };
pub static DEVICEDISPENSE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "basedOn" , "partOf" , "status" , "statusReason" , "category" , "device" , "subject" , "receiver" , "encounter" , "supportingInformation" , "performer" , "location" , "type" , "quantity" , "preparedDate" , "whenHandedOver" , "destination" , "note" , "usageInstruction" , "eventHistory" , };
pub static DEVICEDISPENSE_PERFORMER: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "function" , "actor" , };
pub static DEVICEMETRIC: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "type" , "unit" , "device" , "operationalStatus" , "color" , "category" , "measurementFrequency" , "calibration" , };
pub static DEVICEMETRIC_CALIBRATION: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "state" , "time" , };
pub static DEVICEREQUEST: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "instantiatesCanonical" , "instantiatesUri" , "basedOn" , "replaces" , "groupIdentifier" , "status" , "intent" , "priority" , "doNotPerform" , "code" , "quantity" , "parameter" , "subject" , "encounter" , "occurrenceDateTime" , "occurrencePeriod" , "occurrenceTiming" , "authoredOn" , "requester" , "performer" , "reason" , "asNeeded" , "asNeededFor" , "insurance" , "supportingInfo" , "note" , "relevantHistory" , };
pub static DEVICEREQUEST_PARAMETER: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "code" , "valueCodeableConcept" , "valueQuantity" , "valueRange" , "valueBoolean" , };
pub static DEVICEUSAGE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "basedOn" , "status" , "category" , "patient" , "derivedFrom" , "context" , "timingTiming" , "timingPeriod" , "timingDateTime" , "dateAsserted" , "usageStatus" , "usageReason" , "adherence" , "informationSource" , "device" , "reason" , "bodySite" , "note" , };
pub static DEVICEUSAGE_ADHERENCE: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "code" , "reason" , };
pub static DIAGNOSTICREPORT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "basedOn" , "status" , "category" , "code" , "subject" , "encounter" , "effectiveDateTime" , "effectivePeriod" , "issued" , "performer" , "resultsInterpreter" , "specimen" , "result" , "note" , "study" , "supportingInfo" , "media" , "composition" , "conclusion" , "conclusionCode" , "presentedForm" , };
pub static DIAGNOSTICREPORT_SUPPORTINGINFO: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "reference" , };
pub static DIAGNOSTICREPORT_MEDIA: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "comment" , "link" , };
pub static DOCUMENTREFERENCE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "version" , "basedOn" , "status" , "docStatus" , "modality" , "type" , "category" , "subject" , "context" , "event" , "bodySite" , "facilityType" , "practiceSetting" , "period" , "date" , "author" , "attester" , "custodian" , "relatesTo" , "description" , "securityLabel" , "content" , };
pub static DOCUMENTREFERENCE_ATTESTER: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "mode" , "time" , "party" , };
pub static DOCUMENTREFERENCE_RELATESTO: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "code" , "target" , };
pub static DOCUMENTREFERENCE_CONTENT: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "attachment" , "profile" , };
pub static DOCUMENTREFERENCE_CONTENT_PROFILE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "valueCoding" , "valueUri" , "valueCanonical" , };
pub static ENCOUNTER: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "status" , "class" , "priority" , "type" , "serviceType" , "subject" , "subjectStatus" , "episodeOfCare" , "basedOn" , "careTeam" , "partOf" , "serviceProvider" , "participant" , "appointment" , "virtualService" , "actualPeriod" , "plannedStartDate" , "plannedEndDate" , "length" , "reason" , "diagnosis" , "account" , "dietPreference" , "specialArrangement" , "specialCourtesy" , "admission" , "location" , };
pub static ENCOUNTER_PARTICIPANT: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "period" , "actor" , };
pub static ENCOUNTER_REASON: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "use" , "value" , };
pub static ENCOUNTER_DIAGNOSIS: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "condition" , "use" , };
pub static ENCOUNTER_ADMISSION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "preAdmissionIdentifier" , "origin" , "admitSource" , "reAdmission" , "destination" , "dischargeDisposition" , };
pub static ENCOUNTER_LOCATION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "location" , "status" , "form" , "period" , };
pub static ENCOUNTERHISTORY: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "encounter" , "identifier" , "status" , "class" , "type" , "serviceType" , "subject" , "subjectStatus" , "actualPeriod" , "plannedStartDate" , "plannedEndDate" , "length" , "location" , };
pub static ENCOUNTERHISTORY_LOCATION: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "location" , "form" , };
pub static ENDPOINT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "status" , "connectionType" , "name" , "description" , "environmentType" , "managingOrganization" , "contact" , "period" , "payload" , "address" , "header" , };
pub static ENDPOINT_PAYLOAD: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "mimeType" , };
pub static ENROLLMENTREQUEST: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "status" , "created" , "insurer" , "provider" , "candidate" , "coverage" , };
pub static ENROLLMENTRESPONSE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "status" , "request" , "outcome" , "disposition" , "created" , "organization" , "requestProvider" , };
pub static EPISODEOFCARE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "status" , "statusHistory" , "type" , "reason" , "diagnosis" , "patient" , "managingOrganization" , "period" , "referralRequest" , "careManager" , "careTeam" , "account" , };
pub static EPISODEOFCARE_STATUSHISTORY: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "status" , "period" , };
pub static EPISODEOFCARE_REASON: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "use" , "value" , };
pub static EPISODEOFCARE_DIAGNOSIS: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "condition" , "use" , };
pub static EVENTDEFINITION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "url" , "identifier" , "version" , "versionAlgorithmString" , "versionAlgorithmCoding" , "name" , "title" , "subtitle" , "status" , "experimental" , "subjectCodeableConcept" , "subjectReference" , "date" , "publisher" , "contact" , "description" , "useContext" , "jurisdiction" , "purpose" , "usage" , "copyright" , "copyrightLabel" , "approvalDate" , "lastReviewDate" , "effectivePeriod" , "topic" , "author" , "editor" , "reviewer" , "endorser" , "relatedArtifact" , "trigger" , };
pub static EVIDENCE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "url" , "identifier" , "version" , "versionAlgorithmString" , "versionAlgorithmCoding" , "name" , "title" , "citeAsReference" , "citeAsMarkdown" , "status" , "experimental" , "date" , "approvalDate" , "lastReviewDate" , "publisher" , "contact" , "author" , "editor" , "reviewer" , "endorser" , "useContext" , "purpose" , "copyright" , "copyrightLabel" , "relatedArtifact" , "description" , "assertion" , "note" , "variableDefinition" , "synthesisType" , "studyDesign" , "statistic" , "certainty" , };
pub static EVIDENCE_VARIABLEDEFINITION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "description" , "note" , "variableRole" , "observed" , "intended" , "directnessMatch" , };
pub static EVIDENCE_STATISTIC: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "description" , "note" , "statisticType" , "category" , "quantity" , "numberOfEvents" , "numberAffected" , "sampleSize" , "attributeEstimate" , "modelCharacteristic" , };
pub static EVIDENCE_STATISTIC_SAMPLESIZE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "description" , "note" , "numberOfStudies" , "numberOfParticipants" , "knownDataCount" , };
pub static EVIDENCE_STATISTIC_ATTRIBUTEESTIMATE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "description" , "note" , "type" , "quantity" , "level" , "range" , "attributeEstimate" , };
pub static EVIDENCE_STATISTIC_MODELCHARACTERISTIC: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "code" , "value" , "variable" , "attributeEstimate" , };
pub static EVIDENCE_STATISTIC_MODELCHARACTERISTIC_VARIABLE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "variableDefinition" , "handling" , "valueCategory" , "valueQuantity" , "valueRange" , };
pub static EVIDENCE_CERTAINTY: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "description" , "note" , "type" , "rating" , "rater" , "subcomponent" , };
pub static EVIDENCEREPORT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "url" , "status" , "useContext" , "identifier" , "relatedIdentifier" , "citeAsReference" , "citeAsMarkdown" , "type" , "note" , "relatedArtifact" , "subject" , "publisher" , "contact" , "author" , "editor" , "reviewer" , "endorser" , "relatesTo" , "section" , };
pub static EVIDENCEREPORT_SUBJECT: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "characteristic" , "note" , };
pub static EVIDENCEREPORT_SUBJECT_CHARACTERISTIC: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "code" , "valueReference" , "valueCodeableConcept" , "valueBoolean" , "valueQuantity" , "valueRange" , "exclude" , "period" , };
pub static EVIDENCEREPORT_RELATESTO: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "code" , "target" , };
pub static EVIDENCEREPORT_RELATESTO_TARGET: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "url" , "identifier" , "display" , "resource" , };
pub static EVIDENCEREPORT_SECTION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "title" , "focus" , "focusReference" , "author" , "text" , "mode" , "orderedBy" , "entryClassifier" , "entryReference" , "entryQuantity" , "emptyReason" , "section" , };
pub static EVIDENCEVARIABLE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "url" , "identifier" , "version" , "versionAlgorithmString" , "versionAlgorithmCoding" , "name" , "title" , "shortTitle" , "status" , "experimental" , "date" , "publisher" , "contact" , "description" , "note" , "useContext" , "purpose" , "copyright" , "copyrightLabel" , "approvalDate" , "lastReviewDate" , "effectivePeriod" , "author" , "editor" , "reviewer" , "endorser" , "relatedArtifact" , "actual" , "characteristic" , "handling" , "category" , };
pub static EVIDENCEVARIABLE_CHARACTERISTIC: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "linkId" , "description" , "note" , "exclude" , "definitionReference" , "definitionCanonical" , "definitionCodeableConcept" , "definitionExpression" , "definitionId" , "definitionByTypeAndValue" , "definitionByCombination" , "instancesQuantity" , "instancesRange" , "durationQuantity" , "durationRange" , "timeFromEvent" , };
pub static EVIDENCEVARIABLE_CHARACTERISTIC_DEFINITIONBYTYPEANDVALUE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "method" , "device" , "valueCodeableConcept" , "valueBoolean" , "valueQuantity" , "valueRange" , "valueReference" , "valueId" , "offset" , };
pub static EVIDENCEVARIABLE_CHARACTERISTIC_DEFINITIONBYCOMBINATION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "code" , "threshold" , "characteristic" , };
pub static EVIDENCEVARIABLE_CHARACTERISTIC_TIMEFROMEVENT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "description" , "note" , "eventCodeableConcept" , "eventReference" , "eventDateTime" , "eventId" , "quantity" , "range" , };
pub static EVIDENCEVARIABLE_CATEGORY: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "name" , "valueCodeableConcept" , "valueQuantity" , "valueRange" , };
pub static EXAMPLESCENARIO: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "url" , "identifier" , "version" , "versionAlgorithmString" , "versionAlgorithmCoding" , "name" , "title" , "status" , "experimental" , "date" , "publisher" , "contact" , "description" , "useContext" , "jurisdiction" , "purpose" , "copyright" , "copyrightLabel" , "actor" , "instance" , "process" , };
pub static EXAMPLESCENARIO_ACTOR: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "key" , "type" , "title" , "description" , };
pub static EXAMPLESCENARIO_INSTANCE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "key" , "structureType" , "structureVersion" , "structureProfileCanonical" , "structureProfileUri" , "title" , "description" , "content" , "version" , "containedInstance" , };
pub static EXAMPLESCENARIO_INSTANCE_VERSION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "key" , "title" , "description" , "content" , };
pub static EXAMPLESCENARIO_INSTANCE_CONTAINEDINSTANCE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "instanceReference" , "versionReference" , };
pub static EXAMPLESCENARIO_PROCESS: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "title" , "description" , "preConditions" , "postConditions" , "step" , };
pub static EXAMPLESCENARIO_PROCESS_STEP: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "number" , "process" , "workflow" , "operation" , "alternative" , "pause" , };
pub static EXAMPLESCENARIO_PROCESS_STEP_OPERATION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "title" , "initiator" , "receiver" , "description" , "initiatorActive" , "receiverActive" , "request" , "response" , };
pub static EXAMPLESCENARIO_PROCESS_STEP_ALTERNATIVE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "title" , "description" , "step" , };
pub static EXPLANATIONOFBENEFIT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "traceNumber" , "status" , "type" , "subType" , "use" , "patient" , "billablePeriod" , "created" , "enterer" , "insurer" , "provider" , "priority" , "fundsReserveRequested" , "fundsReserve" , "related" , "prescription" , "originalPrescription" , "event" , "payee" , "referral" , "encounter" , "facility" , "claim" , "claimResponse" , "outcome" , "decision" , "disposition" , "preAuthRef" , "preAuthRefPeriod" , "diagnosisRelatedGroup" , "careTeam" , "supportingInfo" , "diagnosis" , "procedure" , "precedence" , "insurance" , "accident" , "patientPaid" , "item" , "addItem" , "adjudication" , "total" , "payment" , "formCode" , "form" , "processNote" , "benefitPeriod" , "benefitBalance" , };
pub static EXPLANATIONOFBENEFIT_RELATED: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "claim" , "relationship" , "reference" , };
pub static EXPLANATIONOFBENEFIT_EVENT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "whenDateTime" , "whenPeriod" , };
pub static EXPLANATIONOFBENEFIT_PAYEE: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "party" , };
pub static EXPLANATIONOFBENEFIT_CARETEAM: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "sequence" , "provider" , "responsible" , "role" , "specialty" , };
pub static EXPLANATIONOFBENEFIT_SUPPORTINGINFO: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "sequence" , "category" , "code" , "timingDate" , "timingPeriod" , "valueBoolean" , "valueString" , "valueQuantity" , "valueAttachment" , "valueReference" , "valueIdentifier" , "reason" , };
pub static EXPLANATIONOFBENEFIT_DIAGNOSIS: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "sequence" , "diagnosisCodeableConcept" , "diagnosisReference" , "type" , "onAdmission" , };
pub static EXPLANATIONOFBENEFIT_PROCEDURE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "sequence" , "type" , "date" , "procedureCodeableConcept" , "procedureReference" , "udi" , };
pub static EXPLANATIONOFBENEFIT_INSURANCE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "focal" , "coverage" , "preAuthRef" , };
pub static EXPLANATIONOFBENEFIT_ACCIDENT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "date" , "type" , "locationAddress" , "locationReference" , };
pub static EXPLANATIONOFBENEFIT_ITEM: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "sequence" , "careTeamSequence" , "diagnosisSequence" , "procedureSequence" , "informationSequence" , "traceNumber" , "revenue" , "category" , "productOrService" , "productOrServiceEnd" , "request" , "modifier" , "programCode" , "servicedDate" , "servicedPeriod" , "locationCodeableConcept" , "locationAddress" , "locationReference" , "patientPaid" , "quantity" , "unitPrice" , "factor" , "tax" , "net" , "udi" , "bodySite" , "encounter" , "noteNumber" , "reviewOutcome" , "adjudication" , "detail" , };
pub static EXPLANATIONOFBENEFIT_ITEM_BODYSITE: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "site" , "subSite" , };
pub static EXPLANATIONOFBENEFIT_ITEM_REVIEWOUTCOME: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "decision" , "reason" , "preAuthRef" , "preAuthPeriod" , };
pub static EXPLANATIONOFBENEFIT_ITEM_ADJUDICATION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "category" , "reason" , "amount" , "quantity" , };
pub static EXPLANATIONOFBENEFIT_ITEM_DETAIL: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "sequence" , "traceNumber" , "revenue" , "category" , "productOrService" , "productOrServiceEnd" , "modifier" , "programCode" , "patientPaid" , "quantity" , "unitPrice" , "factor" , "tax" , "net" , "udi" , "noteNumber" , "reviewOutcome" , "adjudication" , "subDetail" , };
pub static EXPLANATIONOFBENEFIT_ITEM_DETAIL_SUBDETAIL: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "sequence" , "traceNumber" , "revenue" , "category" , "productOrService" , "productOrServiceEnd" , "modifier" , "programCode" , "patientPaid" , "quantity" , "unitPrice" , "factor" , "tax" , "net" , "udi" , "noteNumber" , "reviewOutcome" , "adjudication" , };
pub static EXPLANATIONOFBENEFIT_ADDITEM: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "itemSequence" , "detailSequence" , "subDetailSequence" , "traceNumber" , "provider" , "revenue" , "productOrService" , "productOrServiceEnd" , "request" , "modifier" , "programCode" , "servicedDate" , "servicedPeriod" , "locationCodeableConcept" , "locationAddress" , "locationReference" , "patientPaid" , "quantity" , "unitPrice" , "factor" , "tax" , "net" , "bodySite" , "noteNumber" , "reviewOutcome" , "adjudication" , "detail" , };
pub static EXPLANATIONOFBENEFIT_ADDITEM_BODYSITE: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "site" , "subSite" , };
pub static EXPLANATIONOFBENEFIT_ADDITEM_DETAIL: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "traceNumber" , "revenue" , "productOrService" , "productOrServiceEnd" , "modifier" , "patientPaid" , "quantity" , "unitPrice" , "factor" , "tax" , "net" , "noteNumber" , "reviewOutcome" , "adjudication" , "subDetail" , };
pub static EXPLANATIONOFBENEFIT_ADDITEM_DETAIL_SUBDETAIL: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "traceNumber" , "revenue" , "productOrService" , "productOrServiceEnd" , "modifier" , "patientPaid" , "quantity" , "unitPrice" , "factor" , "tax" , "net" , "noteNumber" , "reviewOutcome" , "adjudication" , };
pub static EXPLANATIONOFBENEFIT_TOTAL: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "category" , "amount" , };
pub static EXPLANATIONOFBENEFIT_PAYMENT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "adjustment" , "adjustmentReason" , "date" , "amount" , "identifier" , };
pub static EXPLANATIONOFBENEFIT_PROCESSNOTE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "number" , "type" , "text" , "language" , };
pub static EXPLANATIONOFBENEFIT_BENEFITBALANCE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "category" , "excluded" , "name" , "description" , "network" , "unit" , "term" , "financial" , };
pub static EXPLANATIONOFBENEFIT_BENEFITBALANCE_FINANCIAL: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "allowedUnsignedInt" , "allowedString" , "allowedMoney" , "usedUnsignedInt" , "usedMoney" , };
pub static FAMILYMEMBERHISTORY: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "instantiatesCanonical" , "instantiatesUri" , "status" , "dataAbsentReason" , "patient" , "date" , "participant" , "name" , "relationship" , "sex" , "bornPeriod" , "bornDate" , "bornString" , "ageAge" , "ageRange" , "ageString" , "estimatedAge" , "deceasedBoolean" , "deceasedAge" , "deceasedRange" , "deceasedDate" , "deceasedString" , "reason" , "note" , "condition" , "procedure" , };
pub static FAMILYMEMBERHISTORY_PARTICIPANT: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "function" , "actor" , };
pub static FAMILYMEMBERHISTORY_CONDITION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "code" , "outcome" , "contributedToDeath" , "onsetAge" , "onsetRange" , "onsetPeriod" , "onsetString" , "note" , };
pub static FAMILYMEMBERHISTORY_PROCEDURE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "code" , "outcome" , "contributedToDeath" , "performedAge" , "performedRange" , "performedPeriod" , "performedString" , "performedDateTime" , "note" , };
pub static FLAG: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "status" , "category" , "code" , "subject" , "period" , "encounter" , "author" , };
pub static FORMULARYITEM: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "code" , "status" , };
pub static GENOMICSTUDY: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "status" , "type" , "subject" , "encounter" , "startDate" , "basedOn" , "referrer" , "interpreter" , "reason" , "instantiatesCanonical" , "instantiatesUri" , "note" , "description" , "analysis" , };
pub static GENOMICSTUDY_ANALYSIS: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "identifier" , "methodType" , "changeType" , "genomeBuild" , "instantiatesCanonical" , "instantiatesUri" , "title" , "focus" , "specimen" , "date" , "note" , "protocolPerformed" , "regionsStudied" , "regionsCalled" , "input" , "output" , "performer" , "device" , };
pub static GENOMICSTUDY_ANALYSIS_INPUT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "file" , "type" , "generatedByIdentifier" , "generatedByReference" , };
pub static GENOMICSTUDY_ANALYSIS_OUTPUT: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "file" , "type" , };
pub static GENOMICSTUDY_ANALYSIS_PERFORMER: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "actor" , "role" , };
pub static GENOMICSTUDY_ANALYSIS_DEVICE: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "device" , "function" , };
pub static GOAL: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "lifecycleStatus" , "achievementStatus" , "category" , "continuous" , "priority" , "description" , "subject" , "startDate" , "startCodeableConcept" , "target" , "statusDate" , "statusReason" , "source" , "addresses" , "note" , "outcome" , };
pub static GOAL_TARGET: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "measure" , "detailQuantity" , "detailRange" , "detailCodeableConcept" , "detailString" , "detailBoolean" , "detailInteger" , "detailRatio" , "dueDate" , "dueDuration" , };
pub static GRAPHDEFINITION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "url" , "identifier" , "version" , "versionAlgorithmString" , "versionAlgorithmCoding" , "name" , "title" , "status" , "experimental" , "date" , "publisher" , "contact" , "description" , "useContext" , "jurisdiction" , "purpose" , "copyright" , "copyrightLabel" , "start" , "node" , "link" , };
pub static GRAPHDEFINITION_NODE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "nodeId" , "description" , "type" , "profile" , };
pub static GRAPHDEFINITION_LINK: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "description" , "min" , "max" , "sourceId" , "path" , "sliceName" , "targetId" , "params" , "compartment" , };
pub static GRAPHDEFINITION_LINK_COMPARTMENT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "use" , "rule" , "code" , "expression" , "description" , };
pub static GROUP: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "active" , "type" , "membership" , "code" , "name" , "description" , "quantity" , "managingEntity" , "characteristic" , "member" , };
pub static GROUP_CHARACTERISTIC: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "code" , "valueCodeableConcept" , "valueBoolean" , "valueQuantity" , "valueRange" , "valueReference" , "exclude" , "period" , };
pub static GROUP_MEMBER: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "entity" , "period" , "inactive" , };
pub static GUIDANCERESPONSE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "requestIdentifier" , "identifier" , "moduleUri" , "moduleCanonical" , "moduleCodeableConcept" , "status" , "subject" , "encounter" , "occurrenceDateTime" , "performer" , "reason" , "note" , "evaluationMessage" , "outputParameters" , "result" , "dataRequirement" , };
pub static HEALTHCARESERVICE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "active" , "providedBy" , "offeredIn" , "category" , "type" , "specialty" , "location" , "name" , "comment" , "extraDetails" , "photo" , "contact" , "coverageArea" , "serviceProvisionCode" , "eligibility" , "program" , "characteristic" , "communication" , "referralMethod" , "appointmentRequired" , "availability" , "endpoint" , };
pub static HEALTHCARESERVICE_ELIGIBILITY: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "code" , "comment" , };
pub static IMAGINGSELECTION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "status" , "subject" , "issued" , "performer" , "basedOn" , "category" , "code" , "studyUid" , "derivedFrom" , "endpoint" , "seriesUid" , "seriesNumber" , "frameOfReferenceUid" , "bodySite" , "focus" , "instance" , };
pub static IMAGINGSELECTION_PERFORMER: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "function" , "actor" , };
pub static IMAGINGSELECTION_INSTANCE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "uid" , "number" , "sopClass" , "subset" , "imageRegion2D" , "imageRegion3D" , };
pub static IMAGINGSELECTION_INSTANCE_IMAGEREGION2D: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "regionType" , "coordinate" , };
pub static IMAGINGSELECTION_INSTANCE_IMAGEREGION3D: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "regionType" , "coordinate" , };
pub static IMAGINGSTUDY: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "status" , "modality" , "subject" , "encounter" , "started" , "basedOn" , "partOf" , "referrer" , "endpoint" , "numberOfSeries" , "numberOfInstances" , "procedure" , "location" , "reason" , "note" , "description" , "series" , };
pub static IMAGINGSTUDY_SERIES: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "uid" , "number" , "modality" , "description" , "numberOfInstances" , "endpoint" , "bodySite" , "laterality" , "specimen" , "started" , "performer" , "instance" , };
pub static IMAGINGSTUDY_SERIES_PERFORMER: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "function" , "actor" , };
pub static IMAGINGSTUDY_SERIES_INSTANCE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "uid" , "sopClass" , "number" , "title" , };
pub static IMMUNIZATION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "basedOn" , "status" , "statusReason" , "vaccineCode" , "administeredProduct" , "manufacturer" , "lotNumber" , "expirationDate" , "patient" , "encounter" , "supportingInformation" , "occurrenceDateTime" , "occurrenceString" , "primarySource" , "informationSource" , "location" , "site" , "route" , "doseQuantity" , "performer" , "note" , "reason" , "isSubpotent" , "subpotentReason" , "programEligibility" , "fundingSource" , "reaction" , "protocolApplied" , };
pub static IMMUNIZATION_PERFORMER: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "function" , "actor" , };
pub static IMMUNIZATION_PROGRAMELIGIBILITY: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "program" , "programStatus" , };
pub static IMMUNIZATION_REACTION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "date" , "manifestation" , "reported" , };
pub static IMMUNIZATION_PROTOCOLAPPLIED: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "series" , "authority" , "targetDisease" , "doseNumber" , "seriesDoses" , };
pub static IMMUNIZATIONEVALUATION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "status" , "patient" , "date" , "authority" , "targetDisease" , "immunizationEvent" , "doseStatus" , "doseStatusReason" , "description" , "series" , "doseNumber" , "seriesDoses" , };
pub static IMMUNIZATIONRECOMMENDATION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "patient" , "date" , "authority" , "recommendation" , };
pub static IMMUNIZATIONRECOMMENDATION_RECOMMENDATION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "vaccineCode" , "targetDisease" , "contraindicatedVaccineCode" , "forecastStatus" , "forecastReason" , "dateCriterion" , "description" , "series" , "doseNumber" , "seriesDoses" , "supportingImmunization" , "supportingPatientInformation" , };
pub static IMMUNIZATIONRECOMMENDATION_RECOMMENDATION_DATECRITERION: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "code" , "value" , };
pub static IMPLEMENTATIONGUIDE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "url" , "identifier" , "version" , "versionAlgorithmString" , "versionAlgorithmCoding" , "name" , "title" , "status" , "experimental" , "date" , "publisher" , "contact" , "description" , "useContext" , "jurisdiction" , "purpose" , "copyright" , "copyrightLabel" , "packageId" , "license" , "fhirVersion" , "dependsOn" , "global" , "definition" , "manifest" , };
pub static IMPLEMENTATIONGUIDE_DEPENDSON: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "uri" , "packageId" , "version" , "reason" , };
pub static IMPLEMENTATIONGUIDE_GLOBAL: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "profile" , };
pub static IMPLEMENTATIONGUIDE_DEFINITION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "grouping" , "resource" , "page" , "parameter" , "template" , };
pub static IMPLEMENTATIONGUIDE_DEFINITION_GROUPING: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "name" , "description" , };
pub static IMPLEMENTATIONGUIDE_DEFINITION_RESOURCE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "reference" , "fhirVersion" , "name" , "description" , "isExample" , "profile" , "groupingId" , };
pub static IMPLEMENTATIONGUIDE_DEFINITION_PAGE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "sourceUrl" , "sourceString" , "sourceMarkdown" , "name" , "title" , "generation" , "page" , };
pub static IMPLEMENTATIONGUIDE_DEFINITION_PARAMETER: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "code" , "value" , };
pub static IMPLEMENTATIONGUIDE_DEFINITION_TEMPLATE: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "code" , "source" , "scope" , };
pub static IMPLEMENTATIONGUIDE_MANIFEST: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "rendering" , "resource" , "page" , "image" , "other" , };
pub static IMPLEMENTATIONGUIDE_MANIFEST_RESOURCE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "reference" , "isExample" , "profile" , "relativePath" , };
pub static IMPLEMENTATIONGUIDE_MANIFEST_PAGE: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "name" , "title" , "anchor" , };
pub static INGREDIENT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "status" , "for" , "role" , "function" , "group" , "allergenicIndicator" , "comment" , "manufacturer" , "substance" , };
pub static INGREDIENT_MANUFACTURER: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "role" , "manufacturer" , };
pub static INGREDIENT_SUBSTANCE: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "code" , "strength" , };
pub static INGREDIENT_SUBSTANCE_STRENGTH: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "presentationRatio" , "presentationRatioRange" , "presentationCodeableConcept" , "presentationQuantity" , "textPresentation" , "concentrationRatio" , "concentrationRatioRange" , "concentrationCodeableConcept" , "concentrationQuantity" , "textConcentration" , "basis" , "measurementPoint" , "country" , "referenceStrength" , };
pub static INGREDIENT_SUBSTANCE_STRENGTH_REFERENCESTRENGTH: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "substance" , "strengthRatio" , "strengthRatioRange" , "strengthQuantity" , "measurementPoint" , "country" , };
pub static INSURANCEPLAN: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "status" , "type" , "name" , "alias" , "period" , "ownedBy" , "administeredBy" , "coverageArea" , "contact" , "endpoint" , "network" , "coverage" , "plan" , };
pub static INSURANCEPLAN_COVERAGE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "network" , "benefit" , };
pub static INSURANCEPLAN_COVERAGE_BENEFIT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "requirement" , "limit" , };
pub static INSURANCEPLAN_COVERAGE_BENEFIT_LIMIT: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "value" , "code" , };
pub static INSURANCEPLAN_PLAN: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "identifier" , "type" , "coverageArea" , "network" , "generalCost" , "specificCost" , };
pub static INSURANCEPLAN_PLAN_GENERALCOST: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "groupSize" , "cost" , "comment" , };
pub static INSURANCEPLAN_PLAN_SPECIFICCOST: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "category" , "benefit" , };
pub static INSURANCEPLAN_PLAN_SPECIFICCOST_BENEFIT: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "cost" , };
pub static INSURANCEPLAN_PLAN_SPECIFICCOST_BENEFIT_COST: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "applicability" , "qualifiers" , "value" , };
pub static INVENTORYITEM: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "status" , "category" , "code" , "name" , "responsibleOrganization" , "description" , "inventoryStatus" , "baseUnit" , "netContent" , "association" , "characteristic" , "instance" , "productReference" , };
pub static INVENTORYITEM_NAME: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "nameType" , "language" , "name" , };
pub static INVENTORYITEM_RESPONSIBLEORGANIZATION: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "role" , "organization" , };
pub static INVENTORYITEM_DESCRIPTION: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "language" , "description" , };
pub static INVENTORYITEM_ASSOCIATION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "associationType" , "relatedItem" , "quantity" , };
pub static INVENTORYITEM_CHARACTERISTIC: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "characteristicType" , "valueString" , "valueInteger" , "valueDecimal" , "valueBoolean" , "valueUrl" , "valueDateTime" , "valueQuantity" , "valueRange" , "valueRatio" , "valueAnnotation" , "valueAddress" , "valueDuration" , "valueCodeableConcept" , };
pub static INVENTORYITEM_INSTANCE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "identifier" , "lotNumber" , "expiry" , "subject" , "location" , };
pub static INVENTORYREPORT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "status" , "countType" , "operationType" , "operationTypeReason" , "reportedDateTime" , "reporter" , "reportingPeriod" , "inventoryListing" , "note" , };
pub static INVENTORYREPORT_INVENTORYLISTING: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "location" , "itemStatus" , "countingDateTime" , "item" , };
pub static INVENTORYREPORT_INVENTORYLISTING_ITEM: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "category" , "quantity" , "item" , };
pub static INVOICE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "status" , "cancelledReason" , "type" , "subject" , "recipient" , "date" , "creation" , "periodDate" , "periodPeriod" , "participant" , "issuer" , "account" , "lineItem" , "totalPriceComponent" , "totalNet" , "totalGross" , "paymentTerms" , "note" , };
pub static INVOICE_PARTICIPANT: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "role" , "actor" , };
pub static INVOICE_LINEITEM: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "sequence" , "servicedDate" , "servicedPeriod" , "chargeItemReference" , "chargeItemCodeableConcept" , "priceComponent" , };
pub static LIBRARY: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "url" , "identifier" , "version" , "versionAlgorithmString" , "versionAlgorithmCoding" , "name" , "title" , "subtitle" , "status" , "experimental" , "type" , "subjectCodeableConcept" , "subjectReference" , "date" , "publisher" , "contact" , "description" , "useContext" , "jurisdiction" , "purpose" , "usage" , "copyright" , "copyrightLabel" , "approvalDate" , "lastReviewDate" , "effectivePeriod" , "topic" , "author" , "editor" , "reviewer" , "endorser" , "relatedArtifact" , "parameter" , "dataRequirement" , "content" , };
pub static LINKAGE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "active" , "author" , "item" , };
pub static LINKAGE_ITEM: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "resource" , };
pub static LIST: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "status" , "mode" , "title" , "code" , "subject" , "encounter" , "date" , "source" , "orderedBy" , "note" , "entry" , "emptyReason" , };
pub static LIST_ENTRY: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "flag" , "deleted" , "date" , "item" , };
pub static LOCATION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "status" , "operationalStatus" , "name" , "alias" , "description" , "mode" , "type" , "contact" , "address" , "form" , "position" , "managingOrganization" , "partOf" , "characteristic" , "hoursOfOperation" , "virtualService" , "endpoint" , };
pub static LOCATION_POSITION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "longitude" , "latitude" , "altitude" , };
pub static MANUFACTUREDITEMDEFINITION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "status" , "name" , "manufacturedDoseForm" , "unitOfPresentation" , "manufacturer" , "marketingStatus" , "ingredient" , "property" , "component" , };
pub static MANUFACTUREDITEMDEFINITION_PROPERTY: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "valueCodeableConcept" , "valueQuantity" , "valueDate" , "valueBoolean" , "valueMarkdown" , "valueAttachment" , "valueReference" , };
pub static MANUFACTUREDITEMDEFINITION_COMPONENT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "function" , "amount" , "constituent" , "property" , "component" , };
pub static MANUFACTUREDITEMDEFINITION_COMPONENT_CONSTITUENT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "amount" , "location" , "function" , "hasIngredient" , };
pub static MEASURE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "url" , "identifier" , "version" , "versionAlgorithmString" , "versionAlgorithmCoding" , "name" , "title" , "subtitle" , "status" , "experimental" , "subjectCodeableConcept" , "subjectReference" , "basis" , "date" , "publisher" , "contact" , "description" , "useContext" , "jurisdiction" , "purpose" , "usage" , "copyright" , "copyrightLabel" , "approvalDate" , "lastReviewDate" , "effectivePeriod" , "topic" , "author" , "editor" , "reviewer" , "endorser" , "relatedArtifact" , "library" , "disclaimer" , "scoring" , "scoringUnit" , "compositeScoring" , "type" , "riskAdjustment" , "rateAggregation" , "rationale" , "clinicalRecommendationStatement" , "improvementNotation" , "term" , "guidance" , "group" , "supplementalData" , };
pub static MEASURE_TERM: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "code" , "definition" , };
pub static MEASURE_GROUP: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "linkId" , "code" , "description" , "type" , "subjectCodeableConcept" , "subjectReference" , "basis" , "scoring" , "scoringUnit" , "rateAggregation" , "improvementNotation" , "library" , "population" , "stratifier" , };
pub static MEASURE_GROUP_POPULATION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "linkId" , "code" , "description" , "criteria" , "groupDefinition" , "inputPopulationId" , "aggregateMethod" , };
pub static MEASURE_GROUP_STRATIFIER: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "linkId" , "code" , "description" , "criteria" , "groupDefinition" , "component" , };
pub static MEASURE_GROUP_STRATIFIER_COMPONENT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "linkId" , "code" , "description" , "criteria" , "groupDefinition" , };
pub static MEASURE_SUPPLEMENTALDATA: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "linkId" , "code" , "usage" , "description" , "criteria" , };
pub static MEASUREREPORT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "status" , "type" , "dataUpdateType" , "measure" , "subject" , "date" , "reporter" , "reportingVendor" , "location" , "period" , "inputParameters" , "scoring" , "improvementNotation" , "group" , "supplementalData" , "evaluatedResource" , };
pub static MEASUREREPORT_GROUP: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "linkId" , "code" , "subject" , "population" , "measureScoreQuantity" , "measureScoreDateTime" , "measureScoreCodeableConcept" , "measureScorePeriod" , "measureScoreRange" , "measureScoreDuration" , "stratifier" , };
pub static MEASUREREPORT_GROUP_POPULATION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "linkId" , "code" , "count" , "subjectResults" , "subjectReport" , "subjects" , };
pub static MEASUREREPORT_GROUP_STRATIFIER: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "linkId" , "code" , "stratum" , };
pub static MEASUREREPORT_GROUP_STRATIFIER_STRATUM: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "valueCodeableConcept" , "valueBoolean" , "valueQuantity" , "valueRange" , "valueReference" , "component" , "population" , "measureScoreQuantity" , "measureScoreDateTime" , "measureScoreCodeableConcept" , "measureScorePeriod" , "measureScoreRange" , "measureScoreDuration" , };
pub static MEASUREREPORT_GROUP_STRATIFIER_STRATUM_COMPONENT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "linkId" , "code" , "valueCodeableConcept" , "valueBoolean" , "valueQuantity" , "valueRange" , "valueReference" , };
pub static MEASUREREPORT_GROUP_STRATIFIER_STRATUM_POPULATION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "linkId" , "code" , "count" , "subjectResults" , "subjectReport" , "subjects" , };
pub static MEDICATION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "code" , "status" , "marketingAuthorizationHolder" , "doseForm" , "totalVolume" , "ingredient" , "batch" , "definition" , };
pub static MEDICATION_INGREDIENT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "item" , "isActive" , "strengthRatio" , "strengthCodeableConcept" , "strengthQuantity" , };
pub static MEDICATION_BATCH: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "lotNumber" , "expirationDate" , };
pub static MEDICATIONADMINISTRATION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "basedOn" , "partOf" , "status" , "statusReason" , "category" , "medication" , "subject" , "encounter" , "supportingInformation" , "occurenceDateTime" , "occurencePeriod" , "occurenceTiming" , "recorded" , "isSubPotent" , "subPotentReason" , "performer" , "reason" , "request" , "device" , "note" , "dosage" , "eventHistory" , };
pub static MEDICATIONADMINISTRATION_PERFORMER: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "function" , "actor" , };
pub static MEDICATIONADMINISTRATION_DOSAGE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "text" , "site" , "route" , "method" , "dose" , "rateRatio" , "rateQuantity" , };
pub static MEDICATIONDISPENSE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "basedOn" , "partOf" , "status" , "notPerformedReason" , "statusChanged" , "category" , "medication" , "subject" , "encounter" , "supportingInformation" , "performer" , "location" , "authorizingPrescription" , "type" , "quantity" , "daysSupply" , "recorded" , "whenPrepared" , "whenHandedOver" , "destination" , "receiver" , "note" , "renderedDosageInstruction" , "dosageInstruction" , "substitution" , "eventHistory" , };
pub static MEDICATIONDISPENSE_PERFORMER: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "function" , "actor" , };
pub static MEDICATIONDISPENSE_SUBSTITUTION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "wasSubstituted" , "type" , "reason" , "responsibleParty" , };
pub static MEDICATIONKNOWLEDGE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "code" , "status" , "author" , "intendedJurisdiction" , "name" , "relatedMedicationKnowledge" , "associatedMedication" , "productType" , "monograph" , "preparationInstruction" , "cost" , "monitoringProgram" , "indicationGuideline" , "medicineClassification" , "packaging" , "clinicalUseIssue" , "storageGuideline" , "regulatory" , "definitional" , };
pub static MEDICATIONKNOWLEDGE_RELATEDMEDICATIONKNOWLEDGE: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "reference" , };
pub static MEDICATIONKNOWLEDGE_MONOGRAPH: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "source" , };
pub static MEDICATIONKNOWLEDGE_COST: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "effectiveDate" , "type" , "source" , "costMoney" , "costCodeableConcept" , };
pub static MEDICATIONKNOWLEDGE_MONITORINGPROGRAM: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "name" , };
pub static MEDICATIONKNOWLEDGE_INDICATIONGUIDELINE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "indication" , "dosingGuideline" , };
pub static MEDICATIONKNOWLEDGE_INDICATIONGUIDELINE_DOSINGGUIDELINE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "treatmentIntent" , "dosage" , "administrationTreatment" , "patientCharacteristic" , };
pub static MEDICATIONKNOWLEDGE_INDICATIONGUIDELINE_DOSINGGUIDELINE_DOSAGE: phf::OrderedSet<
    &'static str,
> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "dosage" , };
pub static MEDICATIONKNOWLEDGE_INDICATIONGUIDELINE_DOSINGGUIDELINE_PATIENTCHARACTERISTIC:
    phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "valueCodeableConcept" , "valueQuantity" , "valueRange" , };
pub static MEDICATIONKNOWLEDGE_MEDICINECLASSIFICATION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "sourceString" , "sourceUri" , "classification" , };
pub static MEDICATIONKNOWLEDGE_PACKAGING: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "cost" , "packagedProduct" , };
pub static MEDICATIONKNOWLEDGE_STORAGEGUIDELINE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "reference" , "note" , "stabilityDuration" , "environmentalSetting" , };
pub static MEDICATIONKNOWLEDGE_STORAGEGUIDELINE_ENVIRONMENTALSETTING: phf::OrderedSet<
    &'static str,
> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "valueQuantity" , "valueRange" , "valueCodeableConcept" , };
pub static MEDICATIONKNOWLEDGE_REGULATORY: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "regulatoryAuthority" , "substitution" , "schedule" , "maxDispense" , };
pub static MEDICATIONKNOWLEDGE_REGULATORY_SUBSTITUTION: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "allowed" , };
pub static MEDICATIONKNOWLEDGE_REGULATORY_MAXDISPENSE: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "quantity" , "period" , };
pub static MEDICATIONKNOWLEDGE_DEFINITIONAL: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "definition" , "doseForm" , "intendedRoute" , "ingredient" , "drugCharacteristic" , };
pub static MEDICATIONKNOWLEDGE_DEFINITIONAL_INGREDIENT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "item" , "type" , "strengthRatio" , "strengthCodeableConcept" , "strengthQuantity" , };
pub static MEDICATIONKNOWLEDGE_DEFINITIONAL_DRUGCHARACTERISTIC: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "valueCodeableConcept" , "valueString" , "valueQuantity" , "valueBase64Binary" , "valueAttachment" , };
pub static MEDICATIONREQUEST: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "basedOn" , "priorPrescription" , "groupIdentifier" , "status" , "statusReason" , "statusChanged" , "intent" , "category" , "priority" , "doNotPerform" , "medication" , "subject" , "informationSource" , "encounter" , "supportingInformation" , "authoredOn" , "requester" , "reported" , "performerType" , "performer" , "device" , "recorder" , "reason" , "courseOfTherapyType" , "insurance" , "note" , "renderedDosageInstruction" , "effectiveDosePeriod" , "dosageInstruction" , "dispenseRequest" , "substitution" , "eventHistory" , };
pub static MEDICATIONREQUEST_DISPENSEREQUEST: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "initialFill" , "dispenseInterval" , "validityPeriod" , "numberOfRepeatsAllowed" , "quantity" , "expectedSupplyDuration" , "dispenser" , "dispenserInstruction" , "doseAdministrationAid" , };
pub static MEDICATIONREQUEST_DISPENSEREQUEST_INITIALFILL: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "quantity" , "duration" , };
pub static MEDICATIONREQUEST_SUBSTITUTION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "allowedBoolean" , "allowedCodeableConcept" , "reason" , };
pub static MEDICATIONSTATEMENT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "partOf" , "status" , "category" , "medication" , "subject" , "encounter" , "effectiveDateTime" , "effectivePeriod" , "effectiveTiming" , "dateAsserted" , "informationSource" , "derivedFrom" , "reason" , "note" , "relatedClinicalInformation" , "renderedDosageInstruction" , "dosage" , "adherence" , };
pub static MEDICATIONSTATEMENT_ADHERENCE: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "code" , "reason" , };
pub static MEDICINALPRODUCTDEFINITION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "type" , "domain" , "version" , "status" , "statusDate" , "description" , "combinedPharmaceuticalDoseForm" , "route" , "indication" , "legalStatusOfSupply" , "additionalMonitoringIndicator" , "specialMeasures" , "pediatricUseIndicator" , "classification" , "marketingStatus" , "packagedMedicinalProduct" , "comprisedOf" , "ingredient" , "impurity" , "attachedDocument" , "masterFile" , "contact" , "clinicalTrial" , "code" , "name" , "crossReference" , "operation" , "characteristic" , };
pub static MEDICINALPRODUCTDEFINITION_CONTACT: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "contact" , };
pub static MEDICINALPRODUCTDEFINITION_NAME: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "productName" , "type" , "part" , "usage" , };
pub static MEDICINALPRODUCTDEFINITION_NAME_PART: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "part" , "type" , };
pub static MEDICINALPRODUCTDEFINITION_NAME_USAGE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "country" , "jurisdiction" , "language" , };
pub static MEDICINALPRODUCTDEFINITION_CROSSREFERENCE: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "product" , "type" , };
pub static MEDICINALPRODUCTDEFINITION_OPERATION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "effectiveDate" , "organization" , "confidentialityIndicator" , };
pub static MEDICINALPRODUCTDEFINITION_CHARACTERISTIC: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "valueCodeableConcept" , "valueMarkdown" , "valueQuantity" , "valueInteger" , "valueDate" , "valueBoolean" , "valueAttachment" , };
pub static MESSAGEDEFINITION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "url" , "identifier" , "version" , "versionAlgorithmString" , "versionAlgorithmCoding" , "name" , "title" , "replaces" , "status" , "experimental" , "date" , "publisher" , "contact" , "description" , "useContext" , "jurisdiction" , "purpose" , "copyright" , "copyrightLabel" , "base" , "parent" , "eventCoding" , "eventUri" , "category" , "focus" , "responseRequired" , "allowedResponse" , "graph" , };
pub static MESSAGEDEFINITION_FOCUS: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "code" , "profile" , "min" , "max" , };
pub static MESSAGEDEFINITION_ALLOWEDRESPONSE: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "message" , "situation" , };
pub static MESSAGEHEADER: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "eventCoding" , "eventCanonical" , "destination" , "sender" , "author" , "source" , "responsible" , "reason" , "response" , "focus" , "definition" , };
pub static MESSAGEHEADER_DESTINATION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "endpointUrl" , "endpointReference" , "name" , "target" , "receiver" , };
pub static MESSAGEHEADER_SOURCE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "endpointUrl" , "endpointReference" , "name" , "software" , "version" , "contact" , };
pub static MESSAGEHEADER_RESPONSE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "identifier" , "code" , "details" , };
pub static MOLECULARSEQUENCE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "type" , "subject" , "focus" , "specimen" , "device" , "performer" , "literal" , "formatted" , "relative" , };
pub static MOLECULARSEQUENCE_RELATIVE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "coordinateSystem" , "ordinalPosition" , "sequenceRange" , "startingSequence" , "edit" , };
pub static MOLECULARSEQUENCE_RELATIVE_STARTINGSEQUENCE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "genomeAssembly" , "chromosome" , "sequenceCodeableConcept" , "sequenceString" , "sequenceReference" , "windowStart" , "windowEnd" , "orientation" , "strand" , };
pub static MOLECULARSEQUENCE_RELATIVE_EDIT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "start" , "end" , "replacementSequence" , "replacedSequence" , };
pub static NAMINGSYSTEM: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "url" , "identifier" , "version" , "versionAlgorithmString" , "versionAlgorithmCoding" , "name" , "title" , "status" , "kind" , "experimental" , "date" , "publisher" , "contact" , "responsible" , "type" , "description" , "useContext" , "jurisdiction" , "purpose" , "copyright" , "copyrightLabel" , "approvalDate" , "lastReviewDate" , "effectivePeriod" , "topic" , "author" , "editor" , "reviewer" , "endorser" , "relatedArtifact" , "usage" , "uniqueId" , };
pub static NAMINGSYSTEM_UNIQUEID: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "value" , "preferred" , "comment" , "period" , "authoritative" , };
pub static NUTRITIONINTAKE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "instantiatesCanonical" , "instantiatesUri" , "basedOn" , "partOf" , "status" , "statusReason" , "code" , "subject" , "encounter" , "occurrenceDateTime" , "occurrencePeriod" , "recorded" , "reportedBoolean" , "reportedReference" , "consumedItem" , "ingredientLabel" , "performer" , "location" , "derivedFrom" , "reason" , "note" , };
pub static NUTRITIONINTAKE_CONSUMEDITEM: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "nutritionProduct" , "schedule" , "amount" , "rate" , "notConsumed" , "notConsumedReason" , };
pub static NUTRITIONINTAKE_INGREDIENTLABEL: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "nutrient" , "amount" , };
pub static NUTRITIONINTAKE_PERFORMER: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "function" , "actor" , };
pub static NUTRITIONORDER: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "instantiatesCanonical" , "instantiatesUri" , "instantiates" , "basedOn" , "groupIdentifier" , "status" , "intent" , "priority" , "subject" , "encounter" , "supportingInformation" , "dateTime" , "orderer" , "performer" , "allergyIntolerance" , "foodPreferenceModifier" , "excludeFoodModifier" , "outsideFoodAllowed" , "oralDiet" , "supplement" , "enteralFormula" , "note" , };
pub static NUTRITIONORDER_ORALDIET: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "schedule" , "nutrient" , "texture" , "fluidConsistencyType" , "instruction" , };
pub static NUTRITIONORDER_ORALDIET_SCHEDULE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "timing" , "asNeeded" , "asNeededFor" , };
pub static NUTRITIONORDER_ORALDIET_NUTRIENT: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "modifier" , "amount" , };
pub static NUTRITIONORDER_ORALDIET_TEXTURE: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "modifier" , "foodType" , };
pub static NUTRITIONORDER_SUPPLEMENT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "productName" , "schedule" , "quantity" , "instruction" , };
pub static NUTRITIONORDER_SUPPLEMENT_SCHEDULE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "timing" , "asNeeded" , "asNeededFor" , };
pub static NUTRITIONORDER_ENTERALFORMULA: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "baseFormulaType" , "baseFormulaProductName" , "deliveryDevice" , "additive" , "caloricDensity" , "routeOfAdministration" , "administration" , "maxVolumeToDeliver" , "administrationInstruction" , };
pub static NUTRITIONORDER_ENTERALFORMULA_ADDITIVE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "productName" , "quantity" , };
pub static NUTRITIONORDER_ENTERALFORMULA_ADMINISTRATION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "schedule" , "quantity" , "rateQuantity" , "rateRatio" , };
pub static NUTRITIONORDER_ENTERALFORMULA_ADMINISTRATION_SCHEDULE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "timing" , "asNeeded" , "asNeededFor" , };
pub static NUTRITIONPRODUCT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "code" , "status" , "category" , "manufacturer" , "nutrient" , "ingredient" , "knownAllergen" , "characteristic" , "instance" , "note" , };
pub static NUTRITIONPRODUCT_NUTRIENT: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "item" , "amount" , };
pub static NUTRITIONPRODUCT_INGREDIENT: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "item" , "amount" , };
pub static NUTRITIONPRODUCT_CHARACTERISTIC: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "valueCodeableConcept" , "valueString" , "valueQuantity" , "valueBase64Binary" , "valueAttachment" , "valueBoolean" , };
pub static NUTRITIONPRODUCT_INSTANCE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "quantity" , "identifier" , "name" , "lotNumber" , "expiry" , "useBy" , "biologicalSourceEvent" , };
pub static OBSERVATION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "instantiatesCanonical" , "instantiatesReference" , "basedOn" , "triggeredBy" , "partOf" , "status" , "category" , "code" , "subject" , "focus" , "encounter" , "effectiveDateTime" , "effectivePeriod" , "effectiveTiming" , "effectiveInstant" , "issued" , "performer" , "valueQuantity" , "valueCodeableConcept" , "valueString" , "valueBoolean" , "valueInteger" , "valueRange" , "valueRatio" , "valueSampledData" , "valueTime" , "valueDateTime" , "valuePeriod" , "valueAttachment" , "valueReference" , "dataAbsentReason" , "interpretation" , "note" , "bodySite" , "bodyStructure" , "method" , "specimen" , "device" , "referenceRange" , "hasMember" , "derivedFrom" , "component" , };
pub static OBSERVATION_TRIGGEREDBY: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "observation" , "type" , "reason" , };
pub static OBSERVATION_REFERENCERANGE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "low" , "high" , "normalValue" , "type" , "appliesTo" , "age" , "text" , };
pub static OBSERVATION_COMPONENT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "code" , "valueQuantity" , "valueCodeableConcept" , "valueString" , "valueBoolean" , "valueInteger" , "valueRange" , "valueRatio" , "valueSampledData" , "valueTime" , "valueDateTime" , "valuePeriod" , "valueAttachment" , "valueReference" , "dataAbsentReason" , "interpretation" , "referenceRange" , };
pub static OBSERVATIONDEFINITION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "url" , "identifier" , "version" , "versionAlgorithmString" , "versionAlgorithmCoding" , "name" , "title" , "status" , "experimental" , "date" , "publisher" , "contact" , "description" , "useContext" , "jurisdiction" , "purpose" , "copyright" , "copyrightLabel" , "approvalDate" , "lastReviewDate" , "effectivePeriod" , "derivedFromCanonical" , "derivedFromUri" , "subject" , "performerType" , "category" , "code" , "permittedDataType" , "multipleResultsAllowed" , "bodySite" , "method" , "specimen" , "device" , "preferredReportName" , "permittedUnit" , "qualifiedValue" , "hasMember" , "component" , };
pub static OBSERVATIONDEFINITION_QUALIFIEDVALUE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "context" , "appliesTo" , "gender" , "age" , "gestationalAge" , "condition" , "rangeCategory" , "range" , "validCodedValueSet" , "normalCodedValueSet" , "abnormalCodedValueSet" , "criticalCodedValueSet" , };
pub static OBSERVATIONDEFINITION_COMPONENT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "code" , "permittedDataType" , "permittedUnit" , "qualifiedValue" , };
pub static OPERATIONDEFINITION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "url" , "identifier" , "version" , "versionAlgorithmString" , "versionAlgorithmCoding" , "name" , "title" , "status" , "kind" , "experimental" , "date" , "publisher" , "contact" , "description" , "useContext" , "jurisdiction" , "purpose" , "copyright" , "copyrightLabel" , "affectsState" , "code" , "comment" , "base" , "resource" , "system" , "type" , "instance" , "inputProfile" , "outputProfile" , "parameter" , "overload" , };
pub static OPERATIONDEFINITION_PARAMETER: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "name" , "use" , "scope" , "min" , "max" , "documentation" , "type" , "allowedType" , "targetProfile" , "searchType" , "binding" , "referencedFrom" , "part" , };
pub static OPERATIONDEFINITION_PARAMETER_BINDING: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "strength" , "valueSet" , };
pub static OPERATIONDEFINITION_PARAMETER_REFERENCEDFROM: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "source" , "sourceId" , };
pub static OPERATIONDEFINITION_OVERLOAD: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "parameterName" , "comment" , };
pub static OPERATIONOUTCOME: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "issue" , };
pub static OPERATIONOUTCOME_ISSUE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "severity" , "code" , "details" , "diagnostics" , "location" , "expression" , };
pub static ORGANIZATION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "active" , "type" , "name" , "alias" , "description" , "contact" , "partOf" , "endpoint" , "qualification" , };
pub static ORGANIZATION_QUALIFICATION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "identifier" , "code" , "period" , "issuer" , };
pub static ORGANIZATIONAFFILIATION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "active" , "period" , "organization" , "participatingOrganization" , "network" , "code" , "specialty" , "location" , "healthcareService" , "contact" , "endpoint" , };
pub static PACKAGEDPRODUCTDEFINITION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "name" , "type" , "packageFor" , "status" , "statusDate" , "containedItemQuantity" , "description" , "legalStatusOfSupply" , "marketingStatus" , "copackagedIndicator" , "manufacturer" , "attachedDocument" , "packaging" , "characteristic" , };
pub static PACKAGEDPRODUCTDEFINITION_LEGALSTATUSOFSUPPLY: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "code" , "jurisdiction" , };
pub static PACKAGEDPRODUCTDEFINITION_PACKAGING: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "identifier" , "type" , "componentPart" , "quantity" , "material" , "alternateMaterial" , "shelfLifeStorage" , "manufacturer" , "property" , "containedItem" , "packaging" , };
pub static PACKAGEDPRODUCTDEFINITION_PACKAGING_PROPERTY: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "valueCodeableConcept" , "valueQuantity" , "valueDate" , "valueBoolean" , "valueAttachment" , };
pub static PACKAGEDPRODUCTDEFINITION_PACKAGING_CONTAINEDITEM: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "item" , "amount" , };
pub static PARAMETERS: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "parameter" , };
pub static PARAMETERS_PARAMETER: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "name" , "valueBase64Binary" , "valueBoolean" , "valueCanonical" , "valueCode" , "valueDate" , "valueDateTime" , "valueDecimal" , "valueId" , "valueInstant" , "valueInteger" , "valueInteger64" , "valueMarkdown" , "valueOid" , "valuePositiveInt" , "valueString" , "valueTime" , "valueUnsignedInt" , "valueUri" , "valueUrl" , "valueUuid" , "valueAddress" , "valueAge" , "valueAnnotation" , "valueAttachment" , "valueCodeableConcept" , "valueCodeableReference" , "valueCoding" , "valueContactPoint" , "valueCount" , "valueDistance" , "valueDuration" , "valueHumanName" , "valueIdentifier" , "valueMoney" , "valuePeriod" , "valueQuantity" , "valueRange" , "valueRatio" , "valueRatioRange" , "valueReference" , "valueSampledData" , "valueSignature" , "valueTiming" , "valueContactDetail" , "valueDataRequirement" , "valueExpression" , "valueParameterDefinition" , "valueRelatedArtifact" , "valueTriggerDefinition" , "valueUsageContext" , "valueAvailability" , "valueExtendedContactDetail" , "valueDosage" , "valueMeta" , "resource" , "part" , };
pub static PATIENT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "active" , "name" , "telecom" , "gender" , "birthDate" , "deceasedBoolean" , "deceasedDateTime" , "address" , "maritalStatus" , "multipleBirthBoolean" , "multipleBirthInteger" , "photo" , "contact" , "communication" , "generalPractitioner" , "managingOrganization" , "link" , };
pub static PATIENT_CONTACT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "relationship" , "name" , "telecom" , "address" , "gender" , "organization" , "period" , };
pub static PATIENT_COMMUNICATION: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "language" , "preferred" , };
pub static PATIENT_LINK: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "other" , "type" , };
pub static PAYMENTNOTICE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "status" , "request" , "response" , "created" , "reporter" , "payment" , "paymentDate" , "payee" , "recipient" , "amount" , "paymentStatus" , };
pub static PAYMENTRECONCILIATION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "type" , "status" , "kind" , "period" , "created" , "enterer" , "issuerType" , "paymentIssuer" , "request" , "requestor" , "outcome" , "disposition" , "date" , "location" , "method" , "cardBrand" , "accountNumber" , "expirationDate" , "processor" , "referenceNumber" , "authorization" , "tenderedAmount" , "returnedAmount" , "amount" , "paymentIdentifier" , "allocation" , "formCode" , "processNote" , };
pub static PAYMENTRECONCILIATION_ALLOCATION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "identifier" , "predecessor" , "target" , "targetItemString" , "targetItemIdentifier" , "targetItemPositiveInt" , "encounter" , "account" , "type" , "submitter" , "response" , "date" , "responsible" , "payee" , "amount" , };
pub static PAYMENTRECONCILIATION_PROCESSNOTE: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "text" , };
pub static PERMISSION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "status" , "asserter" , "date" , "validity" , "justification" , "combining" , "rule" , };
pub static PERMISSION_JUSTIFICATION: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "basis" , "evidence" , };
pub static PERMISSION_RULE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "data" , "activity" , "limit" , };
pub static PERMISSION_RULE_DATA: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "resource" , "security" , "period" , "expression" , };
pub static PERMISSION_RULE_DATA_RESOURCE: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "meaning" , "reference" , };
pub static PERMISSION_RULE_ACTIVITY: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "actor" , "action" , "purpose" , };
pub static PERSON: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "active" , "name" , "telecom" , "gender" , "birthDate" , "deceasedBoolean" , "deceasedDateTime" , "address" , "maritalStatus" , "photo" , "communication" , "managingOrganization" , "link" , };
pub static PERSON_COMMUNICATION: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "language" , "preferred" , };
pub static PERSON_LINK: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "target" , "assurance" , };
pub static PLANDEFINITION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "url" , "identifier" , "version" , "versionAlgorithmString" , "versionAlgorithmCoding" , "name" , "title" , "subtitle" , "type" , "status" , "experimental" , "subjectCodeableConcept" , "subjectReference" , "subjectCanonical" , "date" , "publisher" , "contact" , "description" , "useContext" , "jurisdiction" , "purpose" , "usage" , "copyright" , "copyrightLabel" , "approvalDate" , "lastReviewDate" , "effectivePeriod" , "topic" , "author" , "editor" , "reviewer" , "endorser" , "relatedArtifact" , "library" , "goal" , "actor" , "action" , "asNeededBoolean" , "asNeededCodeableConcept" , };
pub static PLANDEFINITION_GOAL: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "category" , "description" , "priority" , "start" , "addresses" , "documentation" , "target" , };
pub static PLANDEFINITION_GOAL_TARGET: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "measure" , "detailQuantity" , "detailRange" , "detailCodeableConcept" , "detailString" , "detailBoolean" , "detailInteger" , "detailRatio" , "due" , };
pub static PLANDEFINITION_ACTOR: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "title" , "description" , "option" , };
pub static PLANDEFINITION_ACTOR_OPTION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "typeCanonical" , "typeReference" , "role" , };
pub static PLANDEFINITION_ACTION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "linkId" , "prefix" , "title" , "description" , "textEquivalent" , "priority" , "code" , "reason" , "documentation" , "goalId" , "subjectCodeableConcept" , "subjectReference" , "subjectCanonical" , "trigger" , "condition" , "input" , "output" , "relatedAction" , "timingAge" , "timingDuration" , "timingRange" , "timingTiming" , "location" , "participant" , "type" , "groupingBehavior" , "selectionBehavior" , "requiredBehavior" , "precheckBehavior" , "cardinalityBehavior" , "definitionCanonical" , "definitionUri" , "transform" , "dynamicValue" , "action" , };
pub static PLANDEFINITION_ACTION_CONDITION: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "kind" , "expression" , };
pub static PLANDEFINITION_ACTION_INPUT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "title" , "requirement" , "relatedData" , };
pub static PLANDEFINITION_ACTION_OUTPUT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "title" , "requirement" , "relatedData" , };
pub static PLANDEFINITION_ACTION_RELATEDACTION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "targetId" , "relationship" , "endRelationship" , "offsetDuration" , "offsetRange" , };
pub static PLANDEFINITION_ACTION_PARTICIPANT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "actorId" , "type" , "typeCanonical" , "typeReference" , "role" , "function" , };
pub static PLANDEFINITION_ACTION_DYNAMICVALUE: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "path" , "expression" , };
pub static PRACTITIONER: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "active" , "name" , "telecom" , "gender" , "birthDate" , "deceasedBoolean" , "deceasedDateTime" , "address" , "photo" , "qualification" , "communication" , };
pub static PRACTITIONER_QUALIFICATION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "identifier" , "code" , "period" , "issuer" , };
pub static PRACTITIONER_COMMUNICATION: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "language" , "preferred" , };
pub static PRACTITIONERROLE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "active" , "period" , "practitioner" , "organization" , "code" , "specialty" , "location" , "healthcareService" , "contact" , "characteristic" , "communication" , "availability" , "endpoint" , };
pub static PROCEDURE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "instantiatesCanonical" , "instantiatesUri" , "basedOn" , "partOf" , "status" , "statusReason" , "category" , "code" , "subject" , "focus" , "encounter" , "occurrenceDateTime" , "occurrencePeriod" , "occurrenceString" , "occurrenceAge" , "occurrenceRange" , "occurrenceTiming" , "recorded" , "recorder" , "reportedBoolean" , "reportedReference" , "performer" , "location" , "reason" , "bodySite" , "outcome" , "report" , "complication" , "followUp" , "note" , "focalDevice" , "used" , "supportingInfo" , };
pub static PROCEDURE_PERFORMER: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "function" , "actor" , "onBehalfOf" , "period" , };
pub static PROCEDURE_FOCALDEVICE: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "action" , "manipulated" , };
pub static PROVENANCE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "target" , "occurredPeriod" , "occurredDateTime" , "recorded" , "policy" , "location" , "authorization" , "activity" , "basedOn" , "patient" , "encounter" , "agent" , "entity" , "signature" , };
pub static PROVENANCE_AGENT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "role" , "who" , "onBehalfOf" , };
pub static PROVENANCE_ENTITY: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "role" , "what" , "agent" , };
pub static QUESTIONNAIRE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "url" , "identifier" , "version" , "versionAlgorithmString" , "versionAlgorithmCoding" , "name" , "title" , "derivedFrom" , "status" , "experimental" , "subjectType" , "date" , "publisher" , "contact" , "description" , "useContext" , "jurisdiction" , "purpose" , "copyright" , "copyrightLabel" , "approvalDate" , "lastReviewDate" , "effectivePeriod" , "code" , "item" , };
pub static QUESTIONNAIRE_ITEM: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "linkId" , "definition" , "code" , "prefix" , "text" , "type" , "enableWhen" , "enableBehavior" , "disabledDisplay" , "required" , "repeats" , "readOnly" , "maxLength" , "answerConstraint" , "answerValueSet" , "answerOption" , "initial" , "item" , };
pub static QUESTIONNAIRE_ITEM_ENABLEWHEN: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "question" , "operator" , "answerBoolean" , "answerDecimal" , "answerInteger" , "answerDate" , "answerDateTime" , "answerTime" , "answerString" , "answerCoding" , "answerQuantity" , "answerReference" , };
pub static QUESTIONNAIRE_ITEM_ANSWEROPTION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "valueInteger" , "valueDate" , "valueTime" , "valueString" , "valueCoding" , "valueReference" , "initialSelected" , };
pub static QUESTIONNAIRE_ITEM_INITIAL: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "valueBoolean" , "valueDecimal" , "valueInteger" , "valueDate" , "valueDateTime" , "valueTime" , "valueString" , "valueUri" , "valueAttachment" , "valueCoding" , "valueQuantity" , "valueReference" , };
pub static QUESTIONNAIRERESPONSE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "basedOn" , "partOf" , "questionnaire" , "status" , "subject" , "encounter" , "authored" , "author" , "source" , "item" , };
pub static QUESTIONNAIRERESPONSE_ITEM: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "linkId" , "definition" , "text" , "answer" , "item" , };
pub static QUESTIONNAIRERESPONSE_ITEM_ANSWER: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "valueBoolean" , "valueDecimal" , "valueInteger" , "valueDate" , "valueDateTime" , "valueTime" , "valueString" , "valueUri" , "valueAttachment" , "valueCoding" , "valueQuantity" , "valueReference" , "item" , };
pub static REGULATEDAUTHORIZATION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "subject" , "type" , "description" , "region" , "status" , "statusDate" , "validityPeriod" , "indication" , "intendedUse" , "basis" , "holder" , "regulator" , "attachedDocument" , "case" , };
pub static REGULATEDAUTHORIZATION_CASE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "identifier" , "type" , "status" , "datePeriod" , "dateDateTime" , "application" , };
pub static RELATEDPERSON: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "active" , "patient" , "relationship" , "name" , "telecom" , "gender" , "birthDate" , "address" , "photo" , "period" , "communication" , };
pub static RELATEDPERSON_COMMUNICATION: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "language" , "preferred" , };
pub static REQUESTORCHESTRATION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "instantiatesCanonical" , "instantiatesUri" , "basedOn" , "replaces" , "groupIdentifier" , "status" , "intent" , "priority" , "code" , "subject" , "encounter" , "authoredOn" , "author" , "reason" , "goal" , "note" , "action" , };
pub static REQUESTORCHESTRATION_ACTION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "linkId" , "prefix" , "title" , "description" , "textEquivalent" , "priority" , "code" , "documentation" , "goal" , "condition" , "input" , "output" , "relatedAction" , "timingDateTime" , "timingAge" , "timingPeriod" , "timingDuration" , "timingRange" , "timingTiming" , "location" , "participant" , "type" , "groupingBehavior" , "selectionBehavior" , "requiredBehavior" , "precheckBehavior" , "cardinalityBehavior" , "resource" , "definitionCanonical" , "definitionUri" , "transform" , "dynamicValue" , "action" , };
pub static REQUESTORCHESTRATION_ACTION_CONDITION: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "kind" , "expression" , };
pub static REQUESTORCHESTRATION_ACTION_INPUT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "title" , "requirement" , "relatedData" , };
pub static REQUESTORCHESTRATION_ACTION_OUTPUT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "title" , "requirement" , "relatedData" , };
pub static REQUESTORCHESTRATION_ACTION_RELATEDACTION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "targetId" , "relationship" , "endRelationship" , "offsetDuration" , "offsetRange" , };
pub static REQUESTORCHESTRATION_ACTION_PARTICIPANT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "typeCanonical" , "typeReference" , "role" , "function" , "actorCanonical" , "actorReference" , };
pub static REQUESTORCHESTRATION_ACTION_DYNAMICVALUE: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "path" , "expression" , };
pub static REQUIREMENTS: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "url" , "identifier" , "version" , "versionAlgorithmString" , "versionAlgorithmCoding" , "name" , "title" , "status" , "experimental" , "date" , "publisher" , "contact" , "description" , "useContext" , "jurisdiction" , "purpose" , "copyright" , "copyrightLabel" , "derivedFrom" , "reference" , "actor" , "statement" , };
pub static REQUIREMENTS_STATEMENT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "key" , "label" , "conformance" , "conditionality" , "requirement" , "derivedFrom" , "parent" , "satisfiedBy" , "reference" , "source" , };
pub static RESEARCHSTUDY: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "url" , "identifier" , "version" , "name" , "title" , "label" , "protocol" , "partOf" , "relatedArtifact" , "date" , "status" , "primaryPurposeType" , "phase" , "studyDesign" , "focus" , "condition" , "keyword" , "region" , "descriptionSummary" , "description" , "period" , "site" , "note" , "classifier" , "associatedParty" , "progressStatus" , "whyStopped" , "recruitment" , "comparisonGroup" , "objective" , "outcomeMeasure" , "result" , };
pub static RESEARCHSTUDY_LABEL: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "value" , };
pub static RESEARCHSTUDY_ASSOCIATEDPARTY: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "name" , "role" , "period" , "classifier" , "party" , };
pub static RESEARCHSTUDY_PROGRESSSTATUS: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "state" , "actual" , "period" , };
pub static RESEARCHSTUDY_RECRUITMENT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "targetNumber" , "actualNumber" , "eligibility" , "actualGroup" , };
pub static RESEARCHSTUDY_COMPARISONGROUP: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "linkId" , "name" , "type" , "description" , "intendedExposure" , "observedGroup" , };
pub static RESEARCHSTUDY_OBJECTIVE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "name" , "type" , "description" , };
pub static RESEARCHSTUDY_OUTCOMEMEASURE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "name" , "type" , "description" , "reference" , };
pub static RESEARCHSUBJECT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "status" , "progress" , "period" , "study" , "subject" , "assignedComparisonGroup" , "actualComparisonGroup" , "consent" , };
pub static RESEARCHSUBJECT_PROGRESS: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "subjectState" , "milestone" , "reason" , "startDate" , "endDate" , };
pub static RISKASSESSMENT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "basedOn" , "parent" , "status" , "method" , "code" , "subject" , "encounter" , "occurrenceDateTime" , "occurrencePeriod" , "condition" , "performer" , "reason" , "basis" , "prediction" , "mitigation" , "note" , };
pub static RISKASSESSMENT_PREDICTION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "outcome" , "probabilityDecimal" , "probabilityRange" , "qualitativeRisk" , "relativeRisk" , "whenPeriod" , "whenRange" , "rationale" , };
pub static SCHEDULE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "active" , "serviceCategory" , "serviceType" , "specialty" , "name" , "actor" , "planningHorizon" , "comment" , };
pub static SEARCHPARAMETER: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "url" , "identifier" , "version" , "versionAlgorithmString" , "versionAlgorithmCoding" , "name" , "title" , "derivedFrom" , "status" , "experimental" , "date" , "publisher" , "contact" , "description" , "useContext" , "jurisdiction" , "purpose" , "copyright" , "copyrightLabel" , "code" , "base" , "type" , "expression" , "processingMode" , "constraint" , "target" , "multipleOr" , "multipleAnd" , "comparator" , "modifier" , "chain" , "component" , };
pub static SEARCHPARAMETER_COMPONENT: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "definition" , "expression" , };
pub static SERVICEREQUEST: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "instantiatesCanonical" , "instantiatesUri" , "basedOn" , "replaces" , "requisition" , "status" , "intent" , "category" , "priority" , "doNotPerform" , "code" , "orderDetail" , "quantityQuantity" , "quantityRatio" , "quantityRange" , "subject" , "focus" , "encounter" , "occurrenceDateTime" , "occurrencePeriod" , "occurrenceTiming" , "asNeededBoolean" , "asNeededCodeableConcept" , "authoredOn" , "requester" , "performerType" , "performer" , "location" , "reason" , "insurance" , "supportingInfo" , "specimen" , "bodySite" , "bodyStructure" , "note" , "patientInstruction" , "relevantHistory" , };
pub static SERVICEREQUEST_ORDERDETAIL: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "parameterFocus" , "parameter" , };
pub static SERVICEREQUEST_ORDERDETAIL_PARAMETER: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "code" , "valueQuantity" , "valueRatio" , "valueRange" , "valueBoolean" , "valueCodeableConcept" , "valueString" , "valuePeriod" , };
pub static SERVICEREQUEST_PATIENTINSTRUCTION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "instructionMarkdown" , "instructionReference" , };
pub static SLOT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "serviceCategory" , "serviceType" , "specialty" , "appointmentType" , "schedule" , "status" , "start" , "end" , "overbooked" , "comment" , };
pub static SPECIMEN: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "accessionIdentifier" , "status" , "type" , "subject" , "receivedTime" , "parent" , "request" , "combined" , "role" , "feature" , "collection" , "processing" , "container" , "condition" , "note" , };
pub static SPECIMEN_FEATURE: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "description" , };
pub static SPECIMEN_COLLECTION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "collector" , "collectedDateTime" , "collectedPeriod" , "duration" , "quantity" , "method" , "device" , "procedure" , "bodySite" , "fastingStatusCodeableConcept" , "fastingStatusDuration" , };
pub static SPECIMEN_PROCESSING: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "description" , "method" , "additive" , "timeDateTime" , "timePeriod" , };
pub static SPECIMEN_CONTAINER: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "device" , "location" , "specimenQuantity" , };
pub static SPECIMENDEFINITION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "url" , "identifier" , "version" , "versionAlgorithmString" , "versionAlgorithmCoding" , "name" , "title" , "derivedFromCanonical" , "derivedFromUri" , "status" , "experimental" , "subjectCodeableConcept" , "subjectReference" , "date" , "publisher" , "contact" , "description" , "useContext" , "jurisdiction" , "purpose" , "copyright" , "copyrightLabel" , "approvalDate" , "lastReviewDate" , "effectivePeriod" , "typeCollected" , "patientPreparation" , "timeAspect" , "collection" , "typeTested" , };
pub static SPECIMENDEFINITION_TYPETESTED: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "isDerived" , "type" , "preference" , "container" , "requirement" , "retentionTime" , "singleUse" , "rejectionCriterion" , "handling" , "testingDestination" , };
pub static SPECIMENDEFINITION_TYPETESTED_CONTAINER: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "material" , "type" , "cap" , "description" , "capacity" , "minimumVolumeQuantity" , "minimumVolumeString" , "additive" , "preparation" , };
pub static SPECIMENDEFINITION_TYPETESTED_CONTAINER_ADDITIVE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "additiveCodeableConcept" , "additiveReference" , };
pub static SPECIMENDEFINITION_TYPETESTED_HANDLING: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "temperatureQualifier" , "temperatureRange" , "maxDuration" , "instruction" , };
pub static STRUCTUREDEFINITION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "url" , "identifier" , "version" , "versionAlgorithmString" , "versionAlgorithmCoding" , "name" , "title" , "status" , "experimental" , "date" , "publisher" , "contact" , "description" , "useContext" , "jurisdiction" , "purpose" , "copyright" , "copyrightLabel" , "keyword" , "fhirVersion" , "mapping" , "kind" , "abstract" , "context" , "contextInvariant" , "type" , "baseDefinition" , "derivation" , "snapshot" , "differential" , };
pub static STRUCTUREDEFINITION_MAPPING: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "identity" , "uri" , "name" , "comment" , };
pub static STRUCTUREDEFINITION_CONTEXT: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "expression" , };
pub static STRUCTUREDEFINITION_SNAPSHOT: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "element" , };
pub static STRUCTUREDEFINITION_DIFFERENTIAL: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "element" , };
pub static STRUCTUREMAP: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "url" , "identifier" , "version" , "versionAlgorithmString" , "versionAlgorithmCoding" , "name" , "title" , "status" , "experimental" , "date" , "publisher" , "contact" , "description" , "useContext" , "jurisdiction" , "purpose" , "copyright" , "copyrightLabel" , "structure" , "import" , "const" , "group" , };
pub static STRUCTUREMAP_STRUCTURE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "url" , "mode" , "alias" , "documentation" , };
pub static STRUCTUREMAP_CONST: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "name" , "value" , };
pub static STRUCTUREMAP_GROUP: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "name" , "extends" , "typeMode" , "documentation" , "input" , "rule" , };
pub static STRUCTUREMAP_GROUP_INPUT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "name" , "type" , "mode" , "documentation" , };
pub static STRUCTUREMAP_GROUP_RULE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "name" , "source" , "target" , "rule" , "dependent" , "documentation" , };
pub static STRUCTUREMAP_GROUP_RULE_SOURCE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "context" , "min" , "max" , "type" , "defaultValue" , "element" , "listMode" , "variable" , "condition" , "check" , "logMessage" , };
pub static STRUCTUREMAP_GROUP_RULE_TARGET: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "context" , "element" , "variable" , "listMode" , "listRuleId" , "transform" , "parameter" , };
pub static STRUCTUREMAP_GROUP_RULE_TARGET_PARAMETER: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "valueId" , "valueString" , "valueBoolean" , "valueInteger" , "valueDecimal" , "valueDate" , "valueTime" , "valueDateTime" , };
pub static STRUCTUREMAP_GROUP_RULE_DEPENDENT: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "name" , "parameter" , };
pub static SUBSCRIPTION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "name" , "status" , "topic" , "contact" , "end" , "managingEntity" , "reason" , "filterBy" , "channelType" , "endpoint" , "parameter" , "heartbeatPeriod" , "timeout" , "contentType" , "content" , "maxCount" , };
pub static SUBSCRIPTION_FILTERBY: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "resourceType" , "filterParameter" , "comparator" , "modifier" , "value" , };
pub static SUBSCRIPTION_PARAMETER: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "name" , "value" , };
pub static SUBSCRIPTIONSTATUS: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "status" , "type" , "eventsSinceSubscriptionStart" , "notificationEvent" , "subscription" , "topic" , "error" , };
pub static SUBSCRIPTIONSTATUS_NOTIFICATIONEVENT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "eventNumber" , "timestamp" , "focus" , "additionalContext" , };
pub static SUBSCRIPTIONTOPIC: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "url" , "identifier" , "version" , "versionAlgorithmString" , "versionAlgorithmCoding" , "name" , "title" , "derivedFrom" , "status" , "experimental" , "date" , "publisher" , "contact" , "description" , "useContext" , "jurisdiction" , "purpose" , "copyright" , "copyrightLabel" , "approvalDate" , "lastReviewDate" , "effectivePeriod" , "resourceTrigger" , "eventTrigger" , "canFilterBy" , "notificationShape" , };
pub static SUBSCRIPTIONTOPIC_RESOURCETRIGGER: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "description" , "resource" , "supportedInteraction" , "queryCriteria" , "fhirPathCriteria" , };
pub static SUBSCRIPTIONTOPIC_RESOURCETRIGGER_QUERYCRITERIA: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "previous" , "resultForCreate" , "current" , "resultForDelete" , "requireBoth" , };
pub static SUBSCRIPTIONTOPIC_EVENTTRIGGER: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "description" , "event" , "resource" , };
pub static SUBSCRIPTIONTOPIC_CANFILTERBY: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "description" , "resource" , "filterParameter" , "filterDefinition" , "comparator" , "modifier" , };
pub static SUBSCRIPTIONTOPIC_NOTIFICATIONSHAPE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "resource" , "include" , "revInclude" , };
pub static SUBSTANCE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "instance" , "status" , "category" , "code" , "description" , "expiry" , "quantity" , "ingredient" , };
pub static SUBSTANCE_INGREDIENT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "quantity" , "substanceCodeableConcept" , "substanceReference" , };
pub static SUBSTANCEDEFINITION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "version" , "status" , "classification" , "domain" , "grade" , "description" , "informationSource" , "note" , "manufacturer" , "supplier" , "moiety" , "characterization" , "property" , "referenceInformation" , "molecularWeight" , "structure" , "code" , "name" , "relationship" , "nucleicAcid" , "polymer" , "protein" , "sourceMaterial" , };
pub static SUBSTANCEDEFINITION_MOIETY: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "role" , "identifier" , "name" , "stereochemistry" , "opticalActivity" , "molecularFormula" , "amountQuantity" , "amountString" , "measurementType" , };
pub static SUBSTANCEDEFINITION_CHARACTERIZATION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "technique" , "form" , "description" , "file" , };
pub static SUBSTANCEDEFINITION_PROPERTY: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "valueCodeableConcept" , "valueQuantity" , "valueDate" , "valueBoolean" , "valueAttachment" , };
pub static SUBSTANCEDEFINITION_MOLECULARWEIGHT: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "method" , "type" , "amount" , };
pub static SUBSTANCEDEFINITION_STRUCTURE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "stereochemistry" , "opticalActivity" , "molecularFormula" , "molecularFormulaByMoiety" , "molecularWeight" , "technique" , "sourceDocument" , "representation" , };
pub static SUBSTANCEDEFINITION_STRUCTURE_REPRESENTATION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "representation" , "format" , "document" , };
pub static SUBSTANCEDEFINITION_CODE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "code" , "status" , "statusDate" , "note" , "source" , };
pub static SUBSTANCEDEFINITION_NAME: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "name" , "type" , "status" , "preferred" , "language" , "domain" , "jurisdiction" , "synonym" , "translation" , "official" , "source" , };
pub static SUBSTANCEDEFINITION_NAME_OFFICIAL: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "authority" , "status" , "date" , };
pub static SUBSTANCEDEFINITION_RELATIONSHIP: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "substanceDefinitionReference" , "substanceDefinitionCodeableConcept" , "type" , "isDefining" , "amountQuantity" , "amountRatio" , "amountString" , "ratioHighLimitAmount" , "comparator" , "source" , };
pub static SUBSTANCEDEFINITION_SOURCEMATERIAL: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "genus" , "species" , "part" , "countryOfOrigin" , };
pub static SUBSTANCENUCLEICACID: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "sequenceType" , "numberOfSubunits" , "areaOfHybridisation" , "oligoNucleotideType" , "subunit" , };
pub static SUBSTANCENUCLEICACID_SUBUNIT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "subunit" , "sequence" , "length" , "sequenceAttachment" , "fivePrime" , "threePrime" , "linkage" , "sugar" , };
pub static SUBSTANCENUCLEICACID_SUBUNIT_LINKAGE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "connectivity" , "identifier" , "name" , "residueSite" , };
pub static SUBSTANCENUCLEICACID_SUBUNIT_SUGAR: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "identifier" , "name" , "residueSite" , };
pub static SUBSTANCEPOLYMER: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "class" , "geometry" , "copolymerConnectivity" , "modification" , "monomerSet" , "repeat" , };
pub static SUBSTANCEPOLYMER_MONOMERSET: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "ratioType" , "startingMaterial" , };
pub static SUBSTANCEPOLYMER_MONOMERSET_STARTINGMATERIAL: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "code" , "category" , "isDefining" , "amount" , };
pub static SUBSTANCEPOLYMER_REPEAT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "averageMolecularFormula" , "repeatUnitAmountType" , "repeatUnit" , };
pub static SUBSTANCEPOLYMER_REPEAT_REPEATUNIT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "unit" , "orientation" , "amount" , "degreeOfPolymerisation" , "structuralRepresentation" , };
pub static SUBSTANCEPOLYMER_REPEAT_REPEATUNIT_DEGREEOFPOLYMERISATION: phf::OrderedSet<
    &'static str,
> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "average" , "low" , "high" , };
pub static SUBSTANCEPOLYMER_REPEAT_REPEATUNIT_STRUCTURALREPRESENTATION: phf::OrderedSet<
    &'static str,
> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "representation" , "format" , "attachment" , };
pub static SUBSTANCEPROTEIN: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "sequenceType" , "numberOfSubunits" , "disulfideLinkage" , "subunit" , };
pub static SUBSTANCEPROTEIN_SUBUNIT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "subunit" , "sequence" , "length" , "sequenceAttachment" , "nTerminalModificationId" , "nTerminalModification" , "cTerminalModificationId" , "cTerminalModification" , };
pub static SUBSTANCEREFERENCEINFORMATION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "comment" , "gene" , "geneElement" , "target" , };
pub static SUBSTANCEREFERENCEINFORMATION_GENE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "geneSequenceOrigin" , "gene" , "source" , };
pub static SUBSTANCEREFERENCEINFORMATION_GENEELEMENT: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "element" , "source" , };
pub static SUBSTANCEREFERENCEINFORMATION_TARGET: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "target" , "type" , "interaction" , "organism" , "organismType" , "amountQuantity" , "amountRange" , "amountString" , "amountType" , "source" , };
pub static SUBSTANCESOURCEMATERIAL: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "sourceMaterialClass" , "sourceMaterialType" , "sourceMaterialState" , "organismId" , "organismName" , "parentSubstanceId" , "parentSubstanceName" , "countryOfOrigin" , "geographicalLocation" , "developmentStage" , "fractionDescription" , "organism" , "partDescription" , };
pub static SUBSTANCESOURCEMATERIAL_FRACTIONDESCRIPTION: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "fraction" , "materialType" , };
pub static SUBSTANCESOURCEMATERIAL_ORGANISM: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "family" , "genus" , "species" , "intraspecificType" , "intraspecificDescription" , "author" , "hybrid" , "organismGeneral" , };
pub static SUBSTANCESOURCEMATERIAL_ORGANISM_AUTHOR: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "authorType" , "authorDescription" , };
pub static SUBSTANCESOURCEMATERIAL_ORGANISM_HYBRID: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "maternalOrganismId" , "maternalOrganismName" , "paternalOrganismId" , "paternalOrganismName" , "hybridType" , };
pub static SUBSTANCESOURCEMATERIAL_ORGANISM_ORGANISMGENERAL: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "kingdom" , "phylum" , "class" , "order" , };
pub static SUBSTANCESOURCEMATERIAL_PARTDESCRIPTION: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "part" , "partLocation" , };
pub static SUPPLYDELIVERY: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "basedOn" , "partOf" , "status" , "patient" , "type" , "suppliedItem" , "occurrenceDateTime" , "occurrencePeriod" , "occurrenceTiming" , "supplier" , "destination" , "receiver" , };
pub static SUPPLYDELIVERY_SUPPLIEDITEM: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "quantity" , "itemCodeableConcept" , "itemReference" , };
pub static SUPPLYREQUEST: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "status" , "basedOn" , "category" , "priority" , "deliverFor" , "item" , "quantity" , "parameter" , "occurrenceDateTime" , "occurrencePeriod" , "occurrenceTiming" , "authoredOn" , "requester" , "supplier" , "reason" , "deliverFrom" , "deliverTo" , };
pub static SUPPLYREQUEST_PARAMETER: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "code" , "valueCodeableConcept" , "valueQuantity" , "valueRange" , "valueBoolean" , };
pub static TASK: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "instantiatesCanonical" , "instantiatesUri" , "basedOn" , "groupIdentifier" , "partOf" , "status" , "statusReason" , "businessStatus" , "intent" , "priority" , "doNotPerform" , "code" , "description" , "focus" , "for" , "encounter" , "requestedPeriod" , "executionPeriod" , "authoredOn" , "lastModified" , "requester" , "requestedPerformer" , "owner" , "performer" , "location" , "reason" , "insurance" , "note" , "relevantHistory" , "restriction" , "input" , "output" , };
pub static TASK_PERFORMER: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "function" , "actor" , };
pub static TASK_RESTRICTION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "repetitions" , "period" , "recipient" , };
pub static TASK_INPUT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "valueBase64Binary" , "valueBoolean" , "valueCanonical" , "valueCode" , "valueDate" , "valueDateTime" , "valueDecimal" , "valueId" , "valueInstant" , "valueInteger" , "valueInteger64" , "valueMarkdown" , "valueOid" , "valuePositiveInt" , "valueString" , "valueTime" , "valueUnsignedInt" , "valueUri" , "valueUrl" , "valueUuid" , "valueAddress" , "valueAge" , "valueAnnotation" , "valueAttachment" , "valueCodeableConcept" , "valueCodeableReference" , "valueCoding" , "valueContactPoint" , "valueCount" , "valueDistance" , "valueDuration" , "valueHumanName" , "valueIdentifier" , "valueMoney" , "valuePeriod" , "valueQuantity" , "valueRange" , "valueRatio" , "valueRatioRange" , "valueReference" , "valueSampledData" , "valueSignature" , "valueTiming" , "valueContactDetail" , "valueDataRequirement" , "valueExpression" , "valueParameterDefinition" , "valueRelatedArtifact" , "valueTriggerDefinition" , "valueUsageContext" , "valueAvailability" , "valueExtendedContactDetail" , "valueDosage" , "valueMeta" , };
pub static TASK_OUTPUT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "valueBase64Binary" , "valueBoolean" , "valueCanonical" , "valueCode" , "valueDate" , "valueDateTime" , "valueDecimal" , "valueId" , "valueInstant" , "valueInteger" , "valueInteger64" , "valueMarkdown" , "valueOid" , "valuePositiveInt" , "valueString" , "valueTime" , "valueUnsignedInt" , "valueUri" , "valueUrl" , "valueUuid" , "valueAddress" , "valueAge" , "valueAnnotation" , "valueAttachment" , "valueCodeableConcept" , "valueCodeableReference" , "valueCoding" , "valueContactPoint" , "valueCount" , "valueDistance" , "valueDuration" , "valueHumanName" , "valueIdentifier" , "valueMoney" , "valuePeriod" , "valueQuantity" , "valueRange" , "valueRatio" , "valueRatioRange" , "valueReference" , "valueSampledData" , "valueSignature" , "valueTiming" , "valueContactDetail" , "valueDataRequirement" , "valueExpression" , "valueParameterDefinition" , "valueRelatedArtifact" , "valueTriggerDefinition" , "valueUsageContext" , "valueAvailability" , "valueExtendedContactDetail" , "valueDosage" , "valueMeta" , };
pub static TERMINOLOGYCAPABILITIES: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "url" , "identifier" , "version" , "versionAlgorithmString" , "versionAlgorithmCoding" , "name" , "title" , "status" , "experimental" , "date" , "publisher" , "contact" , "description" , "useContext" , "jurisdiction" , "purpose" , "copyright" , "copyrightLabel" , "kind" , "software" , "implementation" , "lockedDate" , "codeSystem" , "expansion" , "codeSearch" , "validateCode" , "translation" , "closure" , };
pub static TERMINOLOGYCAPABILITIES_SOFTWARE: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "name" , "version" , };
pub static TERMINOLOGYCAPABILITIES_IMPLEMENTATION: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "description" , "url" , };
pub static TERMINOLOGYCAPABILITIES_CODESYSTEM: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "uri" , "version" , "content" , "subsumption" , };
pub static TERMINOLOGYCAPABILITIES_CODESYSTEM_VERSION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "code" , "isDefault" , "compositional" , "language" , "filter" , "property" , };
pub static TERMINOLOGYCAPABILITIES_CODESYSTEM_VERSION_FILTER: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "code" , "op" , };
pub static TERMINOLOGYCAPABILITIES_EXPANSION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "hierarchical" , "paging" , "incomplete" , "parameter" , "textFilter" , };
pub static TERMINOLOGYCAPABILITIES_EXPANSION_PARAMETER: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "name" , "documentation" , };
pub static TERMINOLOGYCAPABILITIES_VALIDATECODE: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "translations" , };
pub static TERMINOLOGYCAPABILITIES_TRANSLATION: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "needsMap" , };
pub static TERMINOLOGYCAPABILITIES_CLOSURE: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "translation" , };
pub static TESTPLAN: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "url" , "identifier" , "version" , "versionAlgorithmString" , "versionAlgorithmCoding" , "name" , "title" , "status" , "experimental" , "date" , "publisher" , "contact" , "description" , "useContext" , "jurisdiction" , "purpose" , "copyright" , "copyrightLabel" , "category" , "scope" , "testTools" , "dependency" , "exitCriteria" , "testCase" , };
pub static TESTPLAN_DEPENDENCY: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "description" , "predecessor" , };
pub static TESTPLAN_TESTCASE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "sequence" , "scope" , "dependency" , "testRun" , "testData" , "assertion" , };
pub static TESTPLAN_TESTCASE_DEPENDENCY: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "description" , "predecessor" , };
pub static TESTPLAN_TESTCASE_TESTRUN: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "narrative" , "script" , };
pub static TESTPLAN_TESTCASE_TESTRUN_SCRIPT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "language" , "sourceString" , "sourceReference" , };
pub static TESTPLAN_TESTCASE_TESTDATA: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "content" , "sourceString" , "sourceReference" , };
pub static TESTPLAN_TESTCASE_ASSERTION: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "object" , "result" , };
pub static TESTREPORT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "name" , "status" , "testScript" , "result" , "score" , "tester" , "issued" , "participant" , "setup" , "test" , "teardown" , };
pub static TESTREPORT_PARTICIPANT: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "uri" , "display" , };
pub static TESTREPORT_SETUP: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "action" , };
pub static TESTREPORT_SETUP_ACTION: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "operation" , "assert" , };
pub static TESTREPORT_SETUP_ACTION_OPERATION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "result" , "message" , "detail" , };
pub static TESTREPORT_SETUP_ACTION_ASSERT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "result" , "message" , "detail" , "requirement" , };
pub static TESTREPORT_SETUP_ACTION_ASSERT_REQUIREMENT: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "linkUri" , "linkCanonical" , };
pub static TESTREPORT_TEST: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "name" , "description" , "action" , };
pub static TESTREPORT_TEST_ACTION: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "operation" , "assert" , };
pub static TESTREPORT_TEARDOWN: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "action" , };
pub static TESTREPORT_TEARDOWN_ACTION: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "operation" , };
pub static TESTSCRIPT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "url" , "identifier" , "version" , "versionAlgorithmString" , "versionAlgorithmCoding" , "name" , "title" , "status" , "experimental" , "date" , "publisher" , "contact" , "description" , "useContext" , "jurisdiction" , "purpose" , "copyright" , "copyrightLabel" , "origin" , "destination" , "metadata" , "scope" , "fixture" , "profile" , "variable" , "setup" , "test" , "teardown" , };
pub static TESTSCRIPT_ORIGIN: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "index" , "profile" , "url" , };
pub static TESTSCRIPT_DESTINATION: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "index" , "profile" , "url" , };
pub static TESTSCRIPT_METADATA: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "link" , "capability" , };
pub static TESTSCRIPT_METADATA_LINK: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "url" , "description" , };
pub static TESTSCRIPT_METADATA_CAPABILITY: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "required" , "validated" , "description" , "origin" , "destination" , "link" , "capabilities" , };
pub static TESTSCRIPT_SCOPE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "artifact" , "conformance" , "phase" , };
pub static TESTSCRIPT_FIXTURE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "autocreate" , "autodelete" , "resource" , };
pub static TESTSCRIPT_VARIABLE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "name" , "defaultValue" , "description" , "expression" , "headerField" , "hint" , "path" , "sourceId" , };
pub static TESTSCRIPT_SETUP: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "action" , };
pub static TESTSCRIPT_SETUP_ACTION: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "operation" , "assert" , };
pub static TESTSCRIPT_SETUP_ACTION_OPERATION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "resource" , "label" , "description" , "accept" , "contentType" , "destination" , "encodeRequestUrl" , "method" , "origin" , "params" , "requestHeader" , "requestId" , "responseId" , "sourceId" , "targetId" , "url" , };
pub static TESTSCRIPT_SETUP_ACTION_OPERATION_REQUESTHEADER: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "field" , "value" , };
pub static TESTSCRIPT_SETUP_ACTION_ASSERT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "label" , "description" , "direction" , "compareToSourceId" , "compareToSourceExpression" , "compareToSourcePath" , "contentType" , "defaultManualCompletion" , "expression" , "headerField" , "minimumId" , "navigationLinks" , "operator" , "path" , "requestMethod" , "requestURL" , "resource" , "response" , "responseCode" , "sourceId" , "stopTestOnFail" , "validateProfileId" , "value" , "warningOnly" , "requirement" , };
pub static TESTSCRIPT_SETUP_ACTION_ASSERT_REQUIREMENT: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "linkUri" , "linkCanonical" , };
pub static TESTSCRIPT_TEST: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "name" , "description" , "action" , };
pub static TESTSCRIPT_TEST_ACTION: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "operation" , "assert" , };
pub static TESTSCRIPT_TEARDOWN: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "action" , };
pub static TESTSCRIPT_TEARDOWN_ACTION: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "operation" , };
pub static TRANSPORT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "instantiatesCanonical" , "instantiatesUri" , "basedOn" , "groupIdentifier" , "partOf" , "status" , "statusReason" , "intent" , "priority" , "code" , "description" , "focus" , "for" , "encounter" , "completionTime" , "authoredOn" , "lastModified" , "requester" , "performerType" , "owner" , "location" , "insurance" , "note" , "relevantHistory" , "restriction" , "input" , "output" , "requestedLocation" , "currentLocation" , "reason" , "history" , };
pub static TRANSPORT_RESTRICTION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "repetitions" , "period" , "recipient" , };
pub static TRANSPORT_INPUT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "valueBase64Binary" , "valueBoolean" , "valueCanonical" , "valueCode" , "valueDate" , "valueDateTime" , "valueDecimal" , "valueId" , "valueInstant" , "valueInteger" , "valueInteger64" , "valueMarkdown" , "valueOid" , "valuePositiveInt" , "valueString" , "valueTime" , "valueUnsignedInt" , "valueUri" , "valueUrl" , "valueUuid" , "valueAddress" , "valueAge" , "valueAnnotation" , "valueAttachment" , "valueCodeableConcept" , "valueCodeableReference" , "valueCoding" , "valueContactPoint" , "valueCount" , "valueDistance" , "valueDuration" , "valueHumanName" , "valueIdentifier" , "valueMoney" , "valuePeriod" , "valueQuantity" , "valueRange" , "valueRatio" , "valueRatioRange" , "valueReference" , "valueSampledData" , "valueSignature" , "valueTiming" , "valueContactDetail" , "valueDataRequirement" , "valueExpression" , "valueParameterDefinition" , "valueRelatedArtifact" , "valueTriggerDefinition" , "valueUsageContext" , "valueAvailability" , "valueExtendedContactDetail" , "valueDosage" , "valueMeta" , };
pub static TRANSPORT_OUTPUT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "valueBase64Binary" , "valueBoolean" , "valueCanonical" , "valueCode" , "valueDate" , "valueDateTime" , "valueDecimal" , "valueId" , "valueInstant" , "valueInteger" , "valueInteger64" , "valueMarkdown" , "valueOid" , "valuePositiveInt" , "valueString" , "valueTime" , "valueUnsignedInt" , "valueUri" , "valueUrl" , "valueUuid" , "valueAddress" , "valueAge" , "valueAnnotation" , "valueAttachment" , "valueCodeableConcept" , "valueCodeableReference" , "valueCoding" , "valueContactPoint" , "valueCount" , "valueDistance" , "valueDuration" , "valueHumanName" , "valueIdentifier" , "valueMoney" , "valuePeriod" , "valueQuantity" , "valueRange" , "valueRatio" , "valueRatioRange" , "valueReference" , "valueSampledData" , "valueSignature" , "valueTiming" , "valueContactDetail" , "valueDataRequirement" , "valueExpression" , "valueParameterDefinition" , "valueRelatedArtifact" , "valueTriggerDefinition" , "valueUsageContext" , "valueAvailability" , "valueExtendedContactDetail" , "valueDosage" , "valueMeta" , };
pub static VALUESET: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "url" , "identifier" , "version" , "versionAlgorithmString" , "versionAlgorithmCoding" , "name" , "title" , "status" , "experimental" , "date" , "publisher" , "contact" , "description" , "useContext" , "jurisdiction" , "immutable" , "purpose" , "copyright" , "copyrightLabel" , "approvalDate" , "lastReviewDate" , "effectivePeriod" , "topic" , "author" , "editor" , "reviewer" , "endorser" , "relatedArtifact" , "compose" , "expansion" , "scope" , };
pub static VALUESET_COMPOSE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "lockedDate" , "inactive" , "include" , "exclude" , "property" , };
pub static VALUESET_COMPOSE_INCLUDE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "system" , "version" , "concept" , "filter" , "valueSet" , "copyright" , };
pub static VALUESET_COMPOSE_INCLUDE_CONCEPT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "code" , "display" , "designation" , };
pub static VALUESET_COMPOSE_INCLUDE_CONCEPT_DESIGNATION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "language" , "use" , "additionalUse" , "value" , };
pub static VALUESET_COMPOSE_INCLUDE_FILTER: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "property" , "op" , "value" , };
pub static VALUESET_EXPANSION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "identifier" , "next" , "timestamp" , "total" , "offset" , "parameter" , "property" , "contains" , };
pub static VALUESET_EXPANSION_PARAMETER: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "name" , "valueString" , "valueBoolean" , "valueInteger" , "valueDecimal" , "valueUri" , "valueCode" , "valueDateTime" , };
pub static VALUESET_EXPANSION_PROPERTY: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "code" , "uri" , };
pub static VALUESET_EXPANSION_CONTAINS: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "system" , "abstract" , "inactive" , "version" , "code" , "display" , "designation" , "property" , "contains" , };
pub static VALUESET_EXPANSION_CONTAINS_PROPERTY: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "code" , "valueCode" , "valueCoding" , "valueString" , "valueInteger" , "valueBoolean" , "valueDateTime" , "valueDecimal" , "subProperty" , };
pub static VALUESET_EXPANSION_CONTAINS_PROPERTY_SUBPROPERTY: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "code" , "valueCode" , "valueCoding" , "valueString" , "valueInteger" , "valueBoolean" , "valueDateTime" , "valueDecimal" , };
pub static VALUESET_SCOPE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "inclusionCriteria" , "exclusionCriteria" , };
pub static VERIFICATIONRESULT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "target" , "targetLocation" , "need" , "status" , "statusDate" , "validationType" , "validationProcess" , "frequency" , "lastPerformed" , "nextScheduled" , "failureAction" , "primarySource" , "attestation" , "validator" , };
pub static VERIFICATIONRESULT_PRIMARYSOURCE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "who" , "type" , "communicationMethod" , "validationStatus" , "validationDate" , "canPushUpdates" , "pushTypeAvailable" , };
pub static VERIFICATIONRESULT_ATTESTATION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "who" , "onBehalfOf" , "communicationMethod" , "date" , "sourceIdentityCertificate" , "proxyIdentityCertificate" , "proxySignature" , "sourceSignature" , };
pub static VERIFICATIONRESULT_VALIDATOR: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "organization" , "identityCertificate" , "attestationSignature" , };
pub static VISIONPRESCRIPTION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "status" , "created" , "patient" , "encounter" , "dateWritten" , "prescriber" , "lensSpecification" , };
pub static VISIONPRESCRIPTION_LENSSPECIFICATION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "product" , "eye" , "sphere" , "cylinder" , "axis" , "prism" , "add" , "power" , "backCurve" , "diameter" , "duration" , "color" , "brand" , "note" , };
pub static VISIONPRESCRIPTION_LENSSPECIFICATION_PRISM: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "amount" , "base" , };