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
// Generated on 2023-04-16 by fhirbolt-codegen v0.2.0
use phf::{phf_map, phf_ordered_set};
pub static ELEMENT_MAP: phf::Map<&str, &phf::OrderedSet<&str>> = phf_map! { "BackboneElement" => & BACKBONEELEMENT , "base64Binary" => & BASE64BINARY , "boolean" => & BOOLEAN , "canonical" => & CANONICAL , "code" => & CODE , "date" => & DATE , "dateTime" => & DATETIME , "decimal" => & DECIMAL , "id" => & ID , "instant" => & INSTANT , "integer" => & INTEGER , "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 , "CodeableConcept" => & CODEABLECONCEPT , "Coding" => & CODING , "ContactDetail" => & CONTACTDETAIL , "ContactPoint" => & CONTACTPOINT , "Contributor" => & CONTRIBUTOR , "Count" => & COUNT , "DataRequirement" => & DATAREQUIREMENT , "DataRequirement.codeFilter" => & DATAREQUIREMENT_CODEFILTER , "DataRequirement.dateFilter" => & DATAREQUIREMENT_DATEFILTER , "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.mapping" => & ELEMENTDEFINITION_MAPPING , "Expression" => & EXPRESSION , "Extension" => & EXTENSION , "HumanName" => & HUMANNAME , "Identifier" => & IDENTIFIER , "MarketingStatus" => & MARKETINGSTATUS , "Meta" => & META , "Money" => & MONEY , "Narrative" => & NARRATIVE , "ParameterDefinition" => & PARAMETERDEFINITION , "Period" => & PERIOD , "Population" => & POPULATION , "ProdCharacteristic" => & PRODCHARACTERISTIC , "ProductShelfLife" => & PRODUCTSHELFLIFE , "Quantity" => & QUANTITY , "Range" => & RANGE , "Ratio" => & RATIO , "Reference" => & REFERENCE , "RelatedArtifact" => & RELATEDARTIFACT , "SampledData" => & SAMPLEDDATA , "Signature" => & SIGNATURE , "SubstanceAmount" => & SUBSTANCEAMOUNT , "SubstanceAmount.referenceRange" => & SUBSTANCEAMOUNT_REFERENCERANGE , "Timing" => & TIMING , "Timing.repeat" => & TIMING_REPEAT , "TriggerDefinition" => & TRIGGERDEFINITION , "UsageContext" => & USAGECONTEXT , "Account" => & ACCOUNT , "Account.coverage" => & ACCOUNT_COVERAGE , "Account.guarantor" => & ACCOUNT_GUARANTOR , "ActivityDefinition" => & ACTIVITYDEFINITION , "ActivityDefinition.participant" => & ACTIVITYDEFINITION_PARTICIPANT , "ActivityDefinition.dynamicValue" => & ACTIVITYDEFINITION_DYNAMICVALUE , "AdverseEvent" => & ADVERSEEVENT , "AdverseEvent.suspectEntity" => & ADVERSEEVENT_SUSPECTENTITY , "AdverseEvent.suspectEntity.causality" => & ADVERSEEVENT_SUSPECTENTITY_CAUSALITY , "AllergyIntolerance" => & ALLERGYINTOLERANCE , "AllergyIntolerance.reaction" => & ALLERGYINTOLERANCE_REACTION , "Appointment" => & APPOINTMENT , "Appointment.participant" => & APPOINTMENT_PARTICIPANT , "AppointmentResponse" => & APPOINTMENTRESPONSE , "AuditEvent" => & AUDITEVENT , "AuditEvent.agent" => & AUDITEVENT_AGENT , "AuditEvent.agent.network" => & AUDITEVENT_AGENT_NETWORK , "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.processing" => & BIOLOGICALLYDERIVEDPRODUCT_PROCESSING , "BiologicallyDerivedProduct.manipulation" => & BIOLOGICALLYDERIVEDPRODUCT_MANIPULATION , "BiologicallyDerivedProduct.storage" => & BIOLOGICALLYDERIVEDPRODUCT_STORAGE , "BodyStructure" => & BODYSTRUCTURE , "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 , "CarePlan.activity.detail" => & CAREPLAN_ACTIVITY_DETAIL , "CareTeam" => & CARETEAM , "CareTeam.participant" => & CARETEAM_PARTICIPANT , "CatalogEntry" => & CATALOGENTRY , "CatalogEntry.relatedEntry" => & CATALOGENTRY_RELATEDENTRY , "ChargeItem" => & CHARGEITEM , "ChargeItem.performer" => & CHARGEITEM_PERFORMER , "ChargeItemDefinition" => & CHARGEITEMDEFINITION , "ChargeItemDefinition.applicability" => & CHARGEITEMDEFINITION_APPLICABILITY , "ChargeItemDefinition.propertyGroup" => & CHARGEITEMDEFINITION_PROPERTYGROUP , "ChargeItemDefinition.propertyGroup.priceComponent" => & CHARGEITEMDEFINITION_PROPERTYGROUP_PRICECOMPONENT , "Claim" => & CLAIM , "Claim.related" => & CLAIM_RELATED , "Claim.payee" => & CLAIM_PAYEE , "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.detail" => & CLAIM_ITEM_DETAIL , "Claim.item.detail.subDetail" => & CLAIM_ITEM_DETAIL_SUBDETAIL , "ClaimResponse" => & CLAIMRESPONSE , "ClaimResponse.item" => & CLAIMRESPONSE_ITEM , "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.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.investigation" => & CLINICALIMPRESSION_INVESTIGATION , "ClinicalImpression.finding" => & CLINICALIMPRESSION_FINDING , "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.relatesTo" => & COMPOSITION_RELATESTO , "Composition.event" => & COMPOSITION_EVENT , "Composition.section" => & COMPOSITION_SECTION , "ConceptMap" => & CONCEPTMAP , "ConceptMap.group" => & CONCEPTMAP_GROUP , "ConceptMap.group.element" => & CONCEPTMAP_GROUP_ELEMENT , "ConceptMap.group.element.target" => & CONCEPTMAP_GROUP_ELEMENT_TARGET , "ConceptMap.group.element.target.dependsOn" => & CONCEPTMAP_GROUP_ELEMENT_TARGET_DEPENDSON , "ConceptMap.group.unmapped" => & CONCEPTMAP_GROUP_UNMAPPED , "Condition" => & CONDITION , "Condition.stage" => & CONDITION_STAGE , "Condition.evidence" => & CONDITION_EVIDENCE , "Consent" => & CONSENT , "Consent.policy" => & CONSENT_POLICY , "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.class" => & COVERAGE_CLASS , "Coverage.costToBeneficiary" => & COVERAGE_COSTTOBENEFICIARY , "Coverage.costToBeneficiary.exception" => & COVERAGE_COSTTOBENEFICIARY_EXCEPTION , "CoverageEligibilityRequest" => & COVERAGEELIGIBILITYREQUEST , "CoverageEligibilityRequest.supportingInfo" => & COVERAGEELIGIBILITYREQUEST_SUPPORTINGINFO , "CoverageEligibilityRequest.insurance" => & COVERAGEELIGIBILITYREQUEST_INSURANCE , "CoverageEligibilityRequest.item" => & COVERAGEELIGIBILITYREQUEST_ITEM , "CoverageEligibilityRequest.item.diagnosis" => & COVERAGEELIGIBILITYREQUEST_ITEM_DIAGNOSIS , "CoverageEligibilityResponse" => & COVERAGEELIGIBILITYRESPONSE , "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.deviceName" => & DEVICE_DEVICENAME , "Device.specialization" => & DEVICE_SPECIALIZATION , "Device.version" => & DEVICE_VERSION , "Device.property" => & DEVICE_PROPERTY , "DeviceDefinition" => & DEVICEDEFINITION , "DeviceDefinition.udiDeviceIdentifier" => & DEVICEDEFINITION_UDIDEVICEIDENTIFIER , "DeviceDefinition.deviceName" => & DEVICEDEFINITION_DEVICENAME , "DeviceDefinition.specialization" => & DEVICEDEFINITION_SPECIALIZATION , "DeviceDefinition.capability" => & DEVICEDEFINITION_CAPABILITY , "DeviceDefinition.property" => & DEVICEDEFINITION_PROPERTY , "DeviceDefinition.material" => & DEVICEDEFINITION_MATERIAL , "DeviceMetric" => & DEVICEMETRIC , "DeviceMetric.calibration" => & DEVICEMETRIC_CALIBRATION , "DeviceRequest" => & DEVICEREQUEST , "DeviceRequest.parameter" => & DEVICEREQUEST_PARAMETER , "DeviceUseStatement" => & DEVICEUSESTATEMENT , "DiagnosticReport" => & DIAGNOSTICREPORT , "DiagnosticReport.media" => & DIAGNOSTICREPORT_MEDIA , "DocumentManifest" => & DOCUMENTMANIFEST , "DocumentManifest.related" => & DOCUMENTMANIFEST_RELATED , "DocumentReference" => & DOCUMENTREFERENCE , "DocumentReference.relatesTo" => & DOCUMENTREFERENCE_RELATESTO , "DocumentReference.content" => & DOCUMENTREFERENCE_CONTENT , "DocumentReference.context" => & DOCUMENTREFERENCE_CONTEXT , "EffectEvidenceSynthesis" => & EFFECTEVIDENCESYNTHESIS , "EffectEvidenceSynthesis.sampleSize" => & EFFECTEVIDENCESYNTHESIS_SAMPLESIZE , "EffectEvidenceSynthesis.resultsByExposure" => & EFFECTEVIDENCESYNTHESIS_RESULTSBYEXPOSURE , "EffectEvidenceSynthesis.effectEstimate" => & EFFECTEVIDENCESYNTHESIS_EFFECTESTIMATE , "EffectEvidenceSynthesis.effectEstimate.precisionEstimate" => & EFFECTEVIDENCESYNTHESIS_EFFECTESTIMATE_PRECISIONESTIMATE , "EffectEvidenceSynthesis.certainty" => & EFFECTEVIDENCESYNTHESIS_CERTAINTY , "EffectEvidenceSynthesis.certainty.certaintySubcomponent" => & EFFECTEVIDENCESYNTHESIS_CERTAINTY_CERTAINTYSUBCOMPONENT , "Encounter" => & ENCOUNTER , "Encounter.statusHistory" => & ENCOUNTER_STATUSHISTORY , "Encounter.classHistory" => & ENCOUNTER_CLASSHISTORY , "Encounter.participant" => & ENCOUNTER_PARTICIPANT , "Encounter.diagnosis" => & ENCOUNTER_DIAGNOSIS , "Encounter.hospitalization" => & ENCOUNTER_HOSPITALIZATION , "Encounter.location" => & ENCOUNTER_LOCATION , "Endpoint" => & ENDPOINT , "EnrollmentRequest" => & ENROLLMENTREQUEST , "EnrollmentResponse" => & ENROLLMENTRESPONSE , "EpisodeOfCare" => & EPISODEOFCARE , "EpisodeOfCare.statusHistory" => & EPISODEOFCARE_STATUSHISTORY , "EpisodeOfCare.diagnosis" => & EPISODEOFCARE_DIAGNOSIS , "EventDefinition" => & EVENTDEFINITION , "Evidence" => & EVIDENCE , "EvidenceVariable" => & EVIDENCEVARIABLE , "EvidenceVariable.characteristic" => & EVIDENCEVARIABLE_CHARACTERISTIC , "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.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.adjudication" => & EXPLANATIONOFBENEFIT_ITEM_ADJUDICATION , "ExplanationOfBenefit.item.detail" => & EXPLANATIONOFBENEFIT_ITEM_DETAIL , "ExplanationOfBenefit.item.detail.subDetail" => & EXPLANATIONOFBENEFIT_ITEM_DETAIL_SUBDETAIL , "ExplanationOfBenefit.addItem" => & EXPLANATIONOFBENEFIT_ADDITEM , "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.condition" => & FAMILYMEMBERHISTORY_CONDITION , "Flag" => & FLAG , "Goal" => & GOAL , "Goal.target" => & GOAL_TARGET , "GraphDefinition" => & GRAPHDEFINITION , "GraphDefinition.link" => & GRAPHDEFINITION_LINK , "GraphDefinition.link.target" => & GRAPHDEFINITION_LINK_TARGET , "GraphDefinition.link.target.compartment" => & GRAPHDEFINITION_LINK_TARGET_COMPARTMENT , "Group" => & GROUP , "Group.characteristic" => & GROUP_CHARACTERISTIC , "Group.member" => & GROUP_MEMBER , "GuidanceResponse" => & GUIDANCERESPONSE , "HealthcareService" => & HEALTHCARESERVICE , "HealthcareService.eligibility" => & HEALTHCARESERVICE_ELIGIBILITY , "HealthcareService.availableTime" => & HEALTHCARESERVICE_AVAILABLETIME , "HealthcareService.notAvailable" => & HEALTHCARESERVICE_NOTAVAILABLE , "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.education" => & IMMUNIZATION_EDUCATION , "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 , "InsurancePlan" => & INSURANCEPLAN , "InsurancePlan.contact" => & INSURANCEPLAN_CONTACT , "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 , "Invoice" => & INVOICE , "Invoice.participant" => & INVOICE_PARTICIPANT , "Invoice.lineItem" => & INVOICE_LINEITEM , "Invoice.lineItem.priceComponent" => & INVOICE_LINEITEM_PRICECOMPONENT , "Library" => & LIBRARY , "Linkage" => & LINKAGE , "Linkage.item" => & LINKAGE_ITEM , "List" => & LIST , "List.entry" => & LIST_ENTRY , "Location" => & LOCATION , "Location.position" => & LOCATION_POSITION , "Location.hoursOfOperation" => & LOCATION_HOURSOFOPERATION , "Measure" => & MEASURE , "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 , "Media" => & MEDIA , "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.ingredient" => & MEDICATIONKNOWLEDGE_INGREDIENT , "MedicationKnowledge.cost" => & MEDICATIONKNOWLEDGE_COST , "MedicationKnowledge.monitoringProgram" => & MEDICATIONKNOWLEDGE_MONITORINGPROGRAM , "MedicationKnowledge.administrationGuidelines" => & MEDICATIONKNOWLEDGE_ADMINISTRATIONGUIDELINES , "MedicationKnowledge.administrationGuidelines.dosage" => & MEDICATIONKNOWLEDGE_ADMINISTRATIONGUIDELINES_DOSAGE , "MedicationKnowledge.administrationGuidelines.patientCharacteristics" => & MEDICATIONKNOWLEDGE_ADMINISTRATIONGUIDELINES_PATIENTCHARACTERISTICS , "MedicationKnowledge.medicineClassification" => & MEDICATIONKNOWLEDGE_MEDICINECLASSIFICATION , "MedicationKnowledge.packaging" => & MEDICATIONKNOWLEDGE_PACKAGING , "MedicationKnowledge.drugCharacteristic" => & MEDICATIONKNOWLEDGE_DRUGCHARACTERISTIC , "MedicationKnowledge.regulatory" => & MEDICATIONKNOWLEDGE_REGULATORY , "MedicationKnowledge.regulatory.substitution" => & MEDICATIONKNOWLEDGE_REGULATORY_SUBSTITUTION , "MedicationKnowledge.regulatory.schedule" => & MEDICATIONKNOWLEDGE_REGULATORY_SCHEDULE , "MedicationKnowledge.regulatory.maxDispense" => & MEDICATIONKNOWLEDGE_REGULATORY_MAXDISPENSE , "MedicationKnowledge.kinetics" => & MEDICATIONKNOWLEDGE_KINETICS , "MedicationRequest" => & MEDICATIONREQUEST , "MedicationRequest.dispenseRequest" => & MEDICATIONREQUEST_DISPENSEREQUEST , "MedicationRequest.dispenseRequest.initialFill" => & MEDICATIONREQUEST_DISPENSEREQUEST_INITIALFILL , "MedicationRequest.substitution" => & MEDICATIONREQUEST_SUBSTITUTION , "MedicationStatement" => & MEDICATIONSTATEMENT , "MedicinalProduct" => & MEDICINALPRODUCT , "MedicinalProduct.name" => & MEDICINALPRODUCT_NAME , "MedicinalProduct.name.namePart" => & MEDICINALPRODUCT_NAME_NAMEPART , "MedicinalProduct.name.countryLanguage" => & MEDICINALPRODUCT_NAME_COUNTRYLANGUAGE , "MedicinalProduct.manufacturingBusinessOperation" => & MEDICINALPRODUCT_MANUFACTURINGBUSINESSOPERATION , "MedicinalProduct.specialDesignation" => & MEDICINALPRODUCT_SPECIALDESIGNATION , "MedicinalProductAuthorization" => & MEDICINALPRODUCTAUTHORIZATION , "MedicinalProductAuthorization.jurisdictionalAuthorization" => & MEDICINALPRODUCTAUTHORIZATION_JURISDICTIONALAUTHORIZATION , "MedicinalProductAuthorization.procedure" => & MEDICINALPRODUCTAUTHORIZATION_PROCEDURE , "MedicinalProductContraindication" => & MEDICINALPRODUCTCONTRAINDICATION , "MedicinalProductContraindication.otherTherapy" => & MEDICINALPRODUCTCONTRAINDICATION_OTHERTHERAPY , "MedicinalProductIndication" => & MEDICINALPRODUCTINDICATION , "MedicinalProductIndication.otherTherapy" => & MEDICINALPRODUCTINDICATION_OTHERTHERAPY , "MedicinalProductIngredient" => & MEDICINALPRODUCTINGREDIENT , "MedicinalProductIngredient.specifiedSubstance" => & MEDICINALPRODUCTINGREDIENT_SPECIFIEDSUBSTANCE , "MedicinalProductIngredient.specifiedSubstance.strength" => & MEDICINALPRODUCTINGREDIENT_SPECIFIEDSUBSTANCE_STRENGTH , "MedicinalProductIngredient.specifiedSubstance.strength.referenceStrength" => & MEDICINALPRODUCTINGREDIENT_SPECIFIEDSUBSTANCE_STRENGTH_REFERENCESTRENGTH , "MedicinalProductIngredient.substance" => & MEDICINALPRODUCTINGREDIENT_SUBSTANCE , "MedicinalProductInteraction" => & MEDICINALPRODUCTINTERACTION , "MedicinalProductInteraction.interactant" => & MEDICINALPRODUCTINTERACTION_INTERACTANT , "MedicinalProductManufactured" => & MEDICINALPRODUCTMANUFACTURED , "MedicinalProductPackaged" => & MEDICINALPRODUCTPACKAGED , "MedicinalProductPackaged.batchIdentifier" => & MEDICINALPRODUCTPACKAGED_BATCHIDENTIFIER , "MedicinalProductPackaged.packageItem" => & MEDICINALPRODUCTPACKAGED_PACKAGEITEM , "MedicinalProductPharmaceutical" => & MEDICINALPRODUCTPHARMACEUTICAL , "MedicinalProductPharmaceutical.characteristics" => & MEDICINALPRODUCTPHARMACEUTICAL_CHARACTERISTICS , "MedicinalProductPharmaceutical.routeOfAdministration" => & MEDICINALPRODUCTPHARMACEUTICAL_ROUTEOFADMINISTRATION , "MedicinalProductPharmaceutical.routeOfAdministration.targetSpecies" => & MEDICINALPRODUCTPHARMACEUTICAL_ROUTEOFADMINISTRATION_TARGETSPECIES , "MedicinalProductPharmaceutical.routeOfAdministration.targetSpecies.withdrawalPeriod" => & MEDICINALPRODUCTPHARMACEUTICAL_ROUTEOFADMINISTRATION_TARGETSPECIES_WITHDRAWALPERIOD , "MedicinalProductUndesirableEffect" => & MEDICINALPRODUCTUNDESIRABLEEFFECT , "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.referenceSeq" => & MOLECULARSEQUENCE_REFERENCESEQ , "MolecularSequence.variant" => & MOLECULARSEQUENCE_VARIANT , "MolecularSequence.quality" => & MOLECULARSEQUENCE_QUALITY , "MolecularSequence.quality.roc" => & MOLECULARSEQUENCE_QUALITY_ROC , "MolecularSequence.repository" => & MOLECULARSEQUENCE_REPOSITORY , "MolecularSequence.structureVariant" => & MOLECULARSEQUENCE_STRUCTUREVARIANT , "MolecularSequence.structureVariant.outer" => & MOLECULARSEQUENCE_STRUCTUREVARIANT_OUTER , "MolecularSequence.structureVariant.inner" => & MOLECULARSEQUENCE_STRUCTUREVARIANT_INNER , "NamingSystem" => & NAMINGSYSTEM , "NamingSystem.uniqueId" => & NAMINGSYSTEM_UNIQUEID , "NutritionOrder" => & NUTRITIONORDER , "NutritionOrder.oralDiet" => & NUTRITIONORDER_ORALDIET , "NutritionOrder.oralDiet.nutrient" => & NUTRITIONORDER_ORALDIET_NUTRIENT , "NutritionOrder.oralDiet.texture" => & NUTRITIONORDER_ORALDIET_TEXTURE , "NutritionOrder.supplement" => & NUTRITIONORDER_SUPPLEMENT , "NutritionOrder.enteralFormula" => & NUTRITIONORDER_ENTERALFORMULA , "NutritionOrder.enteralFormula.administration" => & NUTRITIONORDER_ENTERALFORMULA_ADMINISTRATION , "Observation" => & OBSERVATION , "Observation.referenceRange" => & OBSERVATION_REFERENCERANGE , "Observation.component" => & OBSERVATION_COMPONENT , "ObservationDefinition" => & OBSERVATIONDEFINITION , "ObservationDefinition.quantitativeDetails" => & OBSERVATIONDEFINITION_QUANTITATIVEDETAILS , "ObservationDefinition.qualifiedInterval" => & OBSERVATIONDEFINITION_QUALIFIEDINTERVAL , "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.contact" => & ORGANIZATION_CONTACT , "OrganizationAffiliation" => & ORGANIZATIONAFFILIATION , "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.detail" => & PAYMENTRECONCILIATION_DETAIL , "PaymentReconciliation.processNote" => & PAYMENTRECONCILIATION_PROCESSNOTE , "Person" => & PERSON , "Person.link" => & PERSON_LINK , "PlanDefinition" => & PLANDEFINITION , "PlanDefinition.goal" => & PLANDEFINITION_GOAL , "PlanDefinition.goal.target" => & PLANDEFINITION_GOAL_TARGET , "PlanDefinition.action" => & PLANDEFINITION_ACTION , "PlanDefinition.action.condition" => & PLANDEFINITION_ACTION_CONDITION , "PlanDefinition.action.relatedAction" => & PLANDEFINITION_ACTION_RELATEDACTION , "PlanDefinition.action.participant" => & PLANDEFINITION_ACTION_PARTICIPANT , "PlanDefinition.action.dynamicValue" => & PLANDEFINITION_ACTION_DYNAMICVALUE , "Practitioner" => & PRACTITIONER , "Practitioner.qualification" => & PRACTITIONER_QUALIFICATION , "PractitionerRole" => & PRACTITIONERROLE , "PractitionerRole.availableTime" => & PRACTITIONERROLE_AVAILABLETIME , "PractitionerRole.notAvailable" => & PRACTITIONERROLE_NOTAVAILABLE , "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 , "RelatedPerson" => & RELATEDPERSON , "RelatedPerson.communication" => & RELATEDPERSON_COMMUNICATION , "RequestGroup" => & REQUESTGROUP , "RequestGroup.action" => & REQUESTGROUP_ACTION , "RequestGroup.action.condition" => & REQUESTGROUP_ACTION_CONDITION , "RequestGroup.action.relatedAction" => & REQUESTGROUP_ACTION_RELATEDACTION , "ResearchDefinition" => & RESEARCHDEFINITION , "ResearchElementDefinition" => & RESEARCHELEMENTDEFINITION , "ResearchElementDefinition.characteristic" => & RESEARCHELEMENTDEFINITION_CHARACTERISTIC , "ResearchStudy" => & RESEARCHSTUDY , "ResearchStudy.arm" => & RESEARCHSTUDY_ARM , "ResearchStudy.objective" => & RESEARCHSTUDY_OBJECTIVE , "ResearchSubject" => & RESEARCHSUBJECT , "RiskAssessment" => & RISKASSESSMENT , "RiskAssessment.prediction" => & RISKASSESSMENT_PREDICTION , "RiskEvidenceSynthesis" => & RISKEVIDENCESYNTHESIS , "RiskEvidenceSynthesis.sampleSize" => & RISKEVIDENCESYNTHESIS_SAMPLESIZE , "RiskEvidenceSynthesis.riskEstimate" => & RISKEVIDENCESYNTHESIS_RISKESTIMATE , "RiskEvidenceSynthesis.riskEstimate.precisionEstimate" => & RISKEVIDENCESYNTHESIS_RISKESTIMATE_PRECISIONESTIMATE , "RiskEvidenceSynthesis.certainty" => & RISKEVIDENCESYNTHESIS_CERTAINTY , "RiskEvidenceSynthesis.certainty.certaintySubcomponent" => & RISKEVIDENCESYNTHESIS_CERTAINTY_CERTAINTYSUBCOMPONENT , "Schedule" => & SCHEDULE , "SearchParameter" => & SEARCHPARAMETER , "SearchParameter.component" => & SEARCHPARAMETER_COMPONENT , "ServiceRequest" => & SERVICEREQUEST , "Slot" => & SLOT , "Specimen" => & SPECIMEN , "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.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.channel" => & SUBSCRIPTION_CHANNEL , "Substance" => & SUBSTANCE , "Substance.instance" => & SUBSTANCE_INSTANCE , "Substance.ingredient" => & SUBSTANCE_INGREDIENT , "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.classification" => & SUBSTANCEREFERENCEINFORMATION_CLASSIFICATION , "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 , "SubstanceSpecification" => & SUBSTANCESPECIFICATION , "SubstanceSpecification.moiety" => & SUBSTANCESPECIFICATION_MOIETY , "SubstanceSpecification.property" => & SUBSTANCESPECIFICATION_PROPERTY , "SubstanceSpecification.structure" => & SUBSTANCESPECIFICATION_STRUCTURE , "SubstanceSpecification.structure.isotope" => & SUBSTANCESPECIFICATION_STRUCTURE_ISOTOPE , "SubstanceSpecification.structure.isotope.molecularWeight" => & SUBSTANCESPECIFICATION_STRUCTURE_ISOTOPE_MOLECULARWEIGHT , "SubstanceSpecification.structure.representation" => & SUBSTANCESPECIFICATION_STRUCTURE_REPRESENTATION , "SubstanceSpecification.code" => & SUBSTANCESPECIFICATION_CODE , "SubstanceSpecification.name" => & SUBSTANCESPECIFICATION_NAME , "SubstanceSpecification.name.official" => & SUBSTANCESPECIFICATION_NAME_OFFICIAL , "SubstanceSpecification.relationship" => & SUBSTANCESPECIFICATION_RELATIONSHIP , "SupplyDelivery" => & SUPPLYDELIVERY , "SupplyDelivery.suppliedItem" => & SUPPLYDELIVERY_SUPPLIEDITEM , "SupplyRequest" => & SUPPLYREQUEST , "SupplyRequest.parameter" => & SUPPLYREQUEST_PARAMETER , "Task" => & TASK , "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 , "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.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.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.test" => & TESTSCRIPT_TEST , "TestScript.test.action" => & TESTSCRIPT_TEST_ACTION , "TestScript.teardown" => & TESTSCRIPT_TEARDOWN , "TestScript.teardown.action" => & TESTSCRIPT_TEARDOWN_ACTION , "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.contains" => & VALUESET_EXPANSION_CONTAINS , "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 BACKBONEELEMENT: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , };
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 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" , };
pub static CODEABLECONCEPT: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "coding" , "text" , };
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" , "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_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" , "asNeededBoolean" , "asNeededCodeableConcept" , "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" , "defaultValueMarkdown" , "defaultValueOid" , "defaultValuePositiveInt" , "defaultValueString" , "defaultValueTime" , "defaultValueUnsignedInt" , "defaultValueUri" , "defaultValueUrl" , "defaultValueUuid" , "defaultValueAddress" , "defaultValueAge" , "defaultValueAnnotation" , "defaultValueAttachment" , "defaultValueCodeableConcept" , "defaultValueCoding" , "defaultValueContactPoint" , "defaultValueCount" , "defaultValueDistance" , "defaultValueDuration" , "defaultValueHumanName" , "defaultValueIdentifier" , "defaultValueMoney" , "defaultValuePeriod" , "defaultValueQuantity" , "defaultValueRange" , "defaultValueRatio" , "defaultValueReference" , "defaultValueSampledData" , "defaultValueSignature" , "defaultValueTiming" , "defaultValueContactDetail" , "defaultValueContributor" , "defaultValueDataRequirement" , "defaultValueExpression" , "defaultValueParameterDefinition" , "defaultValueRelatedArtifact" , "defaultValueTriggerDefinition" , "defaultValueUsageContext" , "defaultValueDosage" , "defaultValueMeta" , "meaningWhenMissing" , "orderMeaning" , "fixedBase64Binary" , "fixedBoolean" , "fixedCanonical" , "fixedCode" , "fixedDate" , "fixedDateTime" , "fixedDecimal" , "fixedId" , "fixedInstant" , "fixedInteger" , "fixedMarkdown" , "fixedOid" , "fixedPositiveInt" , "fixedString" , "fixedTime" , "fixedUnsignedInt" , "fixedUri" , "fixedUrl" , "fixedUuid" , "fixedAddress" , "fixedAge" , "fixedAnnotation" , "fixedAttachment" , "fixedCodeableConcept" , "fixedCoding" , "fixedContactPoint" , "fixedCount" , "fixedDistance" , "fixedDuration" , "fixedHumanName" , "fixedIdentifier" , "fixedMoney" , "fixedPeriod" , "fixedQuantity" , "fixedRange" , "fixedRatio" , "fixedReference" , "fixedSampledData" , "fixedSignature" , "fixedTiming" , "fixedContactDetail" , "fixedContributor" , "fixedDataRequirement" , "fixedExpression" , "fixedParameterDefinition" , "fixedRelatedArtifact" , "fixedTriggerDefinition" , "fixedUsageContext" , "fixedDosage" , "fixedMeta" , "patternBase64Binary" , "patternBoolean" , "patternCanonical" , "patternCode" , "patternDate" , "patternDateTime" , "patternDecimal" , "patternId" , "patternInstant" , "patternInteger" , "patternMarkdown" , "patternOid" , "patternPositiveInt" , "patternString" , "patternTime" , "patternUnsignedInt" , "patternUri" , "patternUrl" , "patternUuid" , "patternAddress" , "patternAge" , "patternAnnotation" , "patternAttachment" , "patternCodeableConcept" , "patternCoding" , "patternContactPoint" , "patternCount" , "patternDistance" , "patternDuration" , "patternHumanName" , "patternIdentifier" , "patternMoney" , "patternPeriod" , "patternQuantity" , "patternRange" , "patternRatio" , "patternReference" , "patternSampledData" , "patternSignature" , "patternTiming" , "patternContactDetail" , "patternContributor" , "patternDataRequirement" , "patternExpression" , "patternParameterDefinition" , "patternRelatedArtifact" , "patternTriggerDefinition" , "patternUsageContext" , "patternDosage" , "patternMeta" , "example" , "minValueDate" , "minValueDateTime" , "minValueInstant" , "minValueTime" , "minValueDecimal" , "minValueInteger" , "minValuePositiveInt" , "minValueUnsignedInt" , "minValueQuantity" , "maxValueDate" , "maxValueDateTime" , "maxValueInstant" , "maxValueTime" , "maxValueDecimal" , "maxValueInteger" , "maxValuePositiveInt" , "maxValueUnsignedInt" , "maxValueQuantity" , "maxLength" , "condition" , "constraint" , "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" , "valueMarkdown" , "valueOid" , "valuePositiveInt" , "valueString" , "valueTime" , "valueUnsignedInt" , "valueUri" , "valueUrl" , "valueUuid" , "valueAddress" , "valueAge" , "valueAnnotation" , "valueAttachment" , "valueCodeableConcept" , "valueCoding" , "valueContactPoint" , "valueCount" , "valueDistance" , "valueDuration" , "valueHumanName" , "valueIdentifier" , "valueMoney" , "valuePeriod" , "valueQuantity" , "valueRange" , "valueRatio" , "valueReference" , "valueSampledData" , "valueSignature" , "valueTiming" , "valueContactDetail" , "valueContributor" , "valueDataRequirement" , "valueExpression" , "valueParameterDefinition" , "valueRelatedArtifact" , "valueTriggerDefinition" , "valueUsageContext" , "valueDosage" , "valueMeta" , };
pub static ELEMENTDEFINITION_CONSTRAINT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "key" , "requirements" , "severity" , "human" , "expression" , "xpath" , "source" , };
pub static ELEMENTDEFINITION_BINDING: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "strength" , "description" , "valueSet" , };
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 EXTENSION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "url" , "valueBase64Binary" , "valueBoolean" , "valueCanonical" , "valueCode" , "valueDate" , "valueDateTime" , "valueDecimal" , "valueId" , "valueInstant" , "valueInteger" , "valueMarkdown" , "valueOid" , "valuePositiveInt" , "valueString" , "valueTime" , "valueUnsignedInt" , "valueUri" , "valueUrl" , "valueUuid" , "valueAddress" , "valueAge" , "valueAnnotation" , "valueAttachment" , "valueCodeableConcept" , "valueCoding" , "valueContactPoint" , "valueCount" , "valueDistance" , "valueDuration" , "valueHumanName" , "valueIdentifier" , "valueMoney" , "valuePeriod" , "valueQuantity" , "valueRange" , "valueRatio" , "valueReference" , "valueSampledData" , "valueSignature" , "valueTiming" , "valueContactDetail" , "valueContributor" , "valueDataRequirement" , "valueExpression" , "valueParameterDefinition" , "valueRelatedArtifact" , "valueTriggerDefinition" , "valueUsageContext" , "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 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 POPULATION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "ageRange" , "ageCodeableConcept" , "gender" , "race" , "physiologicalCondition" , };
pub static PRODCHARACTERISTIC: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "height" , "width" , "depth" , "weight" , "nominalVolume" , "externalDiameter" , "shape" , "color" , "imprint" , "image" , "scoring" , };
pub static PRODUCTSHELFLIFE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "identifier" , "type" , "period" , "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 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" , "label" , "display" , "citation" , "url" , "document" , "resource" , };
pub static SAMPLEDDATA: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "origin" , "period" , "factor" , "lowerLimit" , "upperLimit" , "dimensions" , "data" , };
pub static SIGNATURE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "type" , "when" , "who" , "onBehalfOf" , "targetFormat" , "sigFormat" , "data" , };
pub static SUBSTANCEAMOUNT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "amountQuantity" , "amountRange" , "amountString" , "amountType" , "amountText" , "referenceRange" , };
pub static SUBSTANCEAMOUNT_REFERENCERANGE: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "lowLimit" , "highLimit" , };
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" , "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 ACCOUNT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "status" , "type" , "name" , "subject" , "servicePeriod" , "coverage" , "owner" , "description" , "guarantor" , "partOf" , };
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 ACTIVITYDEFINITION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "url" , "identifier" , "version" , "name" , "title" , "subtitle" , "status" , "experimental" , "subjectCodeableConcept" , "subjectReference" , "date" , "publisher" , "contact" , "description" , "useContext" , "jurisdiction" , "purpose" , "usage" , "copyright" , "approvalDate" , "lastReviewDate" , "effectivePeriod" , "topic" , "author" , "editor" , "reviewer" , "endorser" , "relatedArtifact" , "library" , "kind" , "profile" , "code" , "intent" , "priority" , "doNotPerform" , "timingTiming" , "timingDateTime" , "timingAge" , "timingPeriod" , "timingRange" , "timingDuration" , "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" , "role" , };
pub static ACTIVITYDEFINITION_DYNAMICVALUE: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "path" , "expression" , };
pub static ADVERSEEVENT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "actuality" , "category" , "event" , "subject" , "encounter" , "date" , "detected" , "recordedDate" , "resultingCondition" , "location" , "seriousness" , "severity" , "outcome" , "recorder" , "contributor" , "suspectEntity" , "subjectMedicalHistory" , "referenceDocument" , "study" , };
pub static ADVERSEEVENT_SUSPECTENTITY: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "instance" , "causality" , };
pub static ADVERSEEVENT_SUSPECTENTITY_CAUSALITY: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "assessment" , "productRelatedness" , "author" , "method" , };
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" , "recorder" , "asserter" , "lastOccurrence" , "note" , "reaction" , };
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" , "cancelationReason" , "serviceCategory" , "serviceType" , "specialty" , "appointmentType" , "reasonCode" , "reasonReference" , "priority" , "description" , "supportingInformation" , "start" , "end" , "minutesDuration" , "slot" , "created" , "comment" , "patientInstruction" , "basedOn" , "participant" , "requestedPeriod" , };
pub static APPOINTMENT_PARTICIPANT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "actor" , "required" , "status" , "period" , };
pub static APPOINTMENTRESPONSE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "appointment" , "start" , "end" , "participantType" , "actor" , "participantStatus" , "comment" , };
pub static AUDITEVENT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "type" , "subtype" , "action" , "period" , "recorded" , "outcome" , "outcomeDesc" , "purposeOfEvent" , "agent" , "source" , "entity" , };
pub static AUDITEVENT_AGENT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "role" , "who" , "altId" , "name" , "requestor" , "location" , "policy" , "media" , "network" , "purposeOfUse" , };
pub static AUDITEVENT_AGENT_NETWORK: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "address" , "type" , };
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" , "type" , "role" , "lifecycle" , "securityLabel" , "name" , "description" , "query" , "detail" , };
pub static AUDITEVENT_ENTITY_DETAIL: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "valueString" , "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" , "identifier" , "productCategory" , "productCode" , "status" , "request" , "quantity" , "parent" , "collection" , "processing" , "manipulation" , "storage" , };
pub static BIOLOGICALLYDERIVEDPRODUCT_COLLECTION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "collector" , "source" , "collectedDateTime" , "collectedPeriod" , };
pub static BIOLOGICALLYDERIVEDPRODUCT_PROCESSING: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "description" , "procedure" , "additive" , "timeDateTime" , "timePeriod" , };
pub static BIOLOGICALLYDERIVEDPRODUCT_MANIPULATION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "description" , "timeDateTime" , "timePeriod" , };
pub static BIOLOGICALLYDERIVEDPRODUCT_STORAGE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "description" , "temperature" , "scale" , "duration" , };
pub static BODYSTRUCTURE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "active" , "morphology" , "location" , "locationQualifier" , "description" , "image" , "patient" , };
pub static BUNDLE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "identifier" , "type" , "timestamp" , "total" , "link" , "entry" , "signature" , };
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" , "version" , "name" , "title" , "status" , "experimental" , "date" , "publisher" , "contact" , "description" , "useContext" , "jurisdiction" , "purpose" , "copyright" , "kind" , "instantiates" , "imports" , "software" , "implementation" , "fhirVersion" , "format" , "patchFormat" , "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" , "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" , "author" , "contributor" , "careTeam" , "addresses" , "supportingInfo" , "goal" , "activity" , "note" , };
pub static CAREPLAN_ACTIVITY: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "outcomeCodeableConcept" , "outcomeReference" , "progress" , "reference" , "detail" , };
pub static CAREPLAN_ACTIVITY_DETAIL: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "kind" , "instantiatesCanonical" , "instantiatesUri" , "code" , "reasonCode" , "reasonReference" , "goal" , "status" , "statusReason" , "doNotPerform" , "scheduledTiming" , "scheduledPeriod" , "scheduledString" , "location" , "performer" , "productCodeableConcept" , "productReference" , "dailyAmount" , "quantity" , "description" , };
pub static CARETEAM: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "status" , "category" , "name" , "subject" , "encounter" , "period" , "participant" , "reasonCode" , "reasonReference" , "managingOrganization" , "telecom" , "note" , };
pub static CARETEAM_PARTICIPANT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "role" , "member" , "onBehalfOf" , "period" , };
pub static CATALOGENTRY: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "type" , "orderable" , "referencedItem" , "additionalIdentifier" , "classification" , "status" , "validityPeriod" , "validTo" , "lastUpdated" , "additionalCharacteristic" , "additionalClassification" , "relatedEntry" , };
pub static CATALOGENTRY_RELATEDENTRY: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "relationtype" , "item" , };
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" , "context" , "occurrenceDateTime" , "occurrencePeriod" , "occurrenceTiming" , "performer" , "performingOrganization" , "requestingOrganization" , "costCenter" , "quantity" , "bodysite" , "factorOverride" , "priceOverride" , "overrideReason" , "enterer" , "enteredDate" , "reason" , "service" , "productReference" , "productCodeableConcept" , "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" , "title" , "derivedFromUri" , "partOf" , "replaces" , "status" , "experimental" , "date" , "publisher" , "contact" , "description" , "useContext" , "jurisdiction" , "copyright" , "approvalDate" , "lastReviewDate" , "effectivePeriod" , "code" , "instance" , "applicability" , "propertyGroup" , };
pub static CHARGEITEMDEFINITION_APPLICABILITY: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "description" , "language" , "expression" , };
pub static CHARGEITEMDEFINITION_PROPERTYGROUP: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "applicability" , "priceComponent" , };
pub static CHARGEITEMDEFINITION_PROPERTYGROUP_PRICECOMPONENT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "code" , "factor" , "amount" , };
pub static CLAIM: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "status" , "type" , "subType" , "use" , "patient" , "billablePeriod" , "created" , "enterer" , "insurer" , "provider" , "priority" , "fundsReserve" , "related" , "prescription" , "originalPrescription" , "payee" , "referral" , "facility" , "careTeam" , "supportingInfo" , "diagnosis" , "procedure" , "insurance" , "accident" , "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_CARETEAM: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "sequence" , "provider" , "responsible" , "role" , "qualification" , };
pub static CLAIM_SUPPORTINGINFO: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "sequence" , "category" , "code" , "timingDate" , "timingPeriod" , "valueBoolean" , "valueString" , "valueQuantity" , "valueAttachment" , "valueReference" , "reason" , };
pub static CLAIM_DIAGNOSIS: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "sequence" , "diagnosisCodeableConcept" , "diagnosisReference" , "type" , "onAdmission" , "packageCode" , };
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" , "careTeamSequence" , "diagnosisSequence" , "procedureSequence" , "informationSequence" , "revenue" , "category" , "productOrService" , "modifier" , "programCode" , "servicedDate" , "servicedPeriod" , "locationCodeableConcept" , "locationAddress" , "locationReference" , "quantity" , "unitPrice" , "factor" , "net" , "udi" , "bodySite" , "subSite" , "encounter" , "detail" , };
pub static CLAIM_ITEM_DETAIL: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "sequence" , "revenue" , "category" , "productOrService" , "modifier" , "programCode" , "quantity" , "unitPrice" , "factor" , "net" , "udi" , "subDetail" , };
pub static CLAIM_ITEM_DETAIL_SUBDETAIL: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "sequence" , "revenue" , "category" , "productOrService" , "modifier" , "programCode" , "quantity" , "unitPrice" , "factor" , "net" , "udi" , };
pub static CLAIMRESPONSE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "status" , "type" , "subType" , "use" , "patient" , "created" , "insurer" , "requestor" , "request" , "outcome" , "disposition" , "preAuthRef" , "preAuthPeriod" , "payeeType" , "item" , "addItem" , "adjudication" , "total" , "payment" , "fundsReserve" , "formCode" , "form" , "processNote" , "communicationRequest" , "insurance" , "error" , };
pub static CLAIMRESPONSE_ITEM: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "itemSequence" , "noteNumber" , "adjudication" , "detail" , };
pub static CLAIMRESPONSE_ITEM_ADJUDICATION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "category" , "reason" , "amount" , "value" , };
pub static CLAIMRESPONSE_ITEM_DETAIL: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "detailSequence" , "noteNumber" , "adjudication" , "subDetail" , };
pub static CLAIMRESPONSE_ITEM_DETAIL_SUBDETAIL: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "subDetailSequence" , "noteNumber" , "adjudication" , };
pub static CLAIMRESPONSE_ADDITEM: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "itemSequence" , "detailSequence" , "subdetailSequence" , "provider" , "productOrService" , "modifier" , "programCode" , "servicedDate" , "servicedPeriod" , "locationCodeableConcept" , "locationAddress" , "locationReference" , "quantity" , "unitPrice" , "factor" , "net" , "bodySite" , "subSite" , "noteNumber" , "adjudication" , "detail" , };
pub static CLAIMRESPONSE_ADDITEM_DETAIL: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "productOrService" , "modifier" , "quantity" , "unitPrice" , "factor" , "net" , "noteNumber" , "adjudication" , "subDetail" , };
pub static CLAIMRESPONSE_ADDITEM_DETAIL_SUBDETAIL: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "productOrService" , "modifier" , "quantity" , "unitPrice" , "factor" , "net" , "noteNumber" , "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" , };
pub static CLINICALIMPRESSION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "status" , "statusReason" , "code" , "description" , "subject" , "encounter" , "effectiveDateTime" , "effectivePeriod" , "date" , "assessor" , "previous" , "problem" , "investigation" , "protocol" , "summary" , "finding" , "prognosisCodeableConcept" , "prognosisReference" , "supportingInfo" , "note" , };
pub static CLINICALIMPRESSION_INVESTIGATION: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "code" , "item" , };
pub static CLINICALIMPRESSION_FINDING: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "itemCodeableConcept" , "itemReference" , "basis" , };
pub static CODESYSTEM: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "url" , "identifier" , "version" , "name" , "title" , "status" , "experimental" , "date" , "publisher" , "contact" , "description" , "useContext" , "jurisdiction" , "purpose" , "copyright" , "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" , "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" , "reasonCode" , "reasonReference" , "payload" , "note" , };
pub static COMMUNICATION_PAYLOAD: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "contentString" , "contentAttachment" , "contentReference" , };
pub static COMMUNICATIONREQUEST: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "basedOn" , "replaces" , "groupIdentifier" , "status" , "statusReason" , "category" , "priority" , "doNotPerform" , "medium" , "subject" , "about" , "encounter" , "payload" , "occurrenceDateTime" , "occurrencePeriod" , "authoredOn" , "requester" , "recipient" , "sender" , "reasonCode" , "reasonReference" , "note" , };
pub static COMMUNICATIONREQUEST_PAYLOAD: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "contentString" , "contentAttachment" , "contentReference" , };
pub static COMPARTMENTDEFINITION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "url" , "version" , "name" , "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" , };
pub static COMPOSITION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "status" , "type" , "category" , "subject" , "encounter" , "date" , "author" , "title" , "confidentiality" , "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_RELATESTO: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "code" , "targetIdentifier" , "targetReference" , };
pub static COMPOSITION_EVENT: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "code" , "period" , "detail" , };
pub static COMPOSITION_SECTION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "title" , "code" , "author" , "focus" , "text" , "mode" , "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" , "name" , "title" , "status" , "experimental" , "date" , "publisher" , "contact" , "description" , "useContext" , "jurisdiction" , "purpose" , "copyright" , "sourceUri" , "sourceCanonical" , "targetUri" , "targetCanonical" , "group" , };
pub static CONCEPTMAP_GROUP: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "source" , "sourceVersion" , "target" , "targetVersion" , "element" , "unmapped" , };
pub static CONCEPTMAP_GROUP_ELEMENT: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "code" , "display" , "target" , };
pub static CONCEPTMAP_GROUP_ELEMENT_TARGET: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "code" , "display" , "equivalence" , "comment" , "dependsOn" , "product" , };
pub static CONCEPTMAP_GROUP_ELEMENT_TARGET_DEPENDSON: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "property" , "system" , "value" , "display" , };
pub static CONCEPTMAP_GROUP_UNMAPPED: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "mode" , "code" , "display" , "url" , };
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" , "recorder" , "asserter" , "stage" , "evidence" , "note" , };
pub static CONDITION_STAGE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "summary" , "assessment" , "type" , };
pub static CONDITION_EVIDENCE: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "code" , "detail" , };
pub static CONSENT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "status" , "scope" , "category" , "patient" , "dateTime" , "performer" , "organization" , "sourceAttachment" , "sourceReference" , "policy" , "policyRule" , "verification" , "provision" , };
pub static CONSENT_POLICY: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "authority" , "uri" , };
pub static CONSENT_VERIFICATION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "verified" , "verifiedWith" , "verificationDate" , };
pub static CONSENT_PROVISION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "period" , "actor" , "action" , "securityLabel" , "purpose" , "class" , "code" , "dataPeriod" , "data" , "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" , "reasonCode" , "reasonReference" , "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" , "type" , "policyHolder" , "subscriber" , "subscriberId" , "beneficiary" , "dependent" , "relationship" , "period" , "payor" , "class" , "order" , "network" , "costToBeneficiary" , "subrogation" , "contract" , };
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" , "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" , "servicedDate" , "servicedPeriod" , "created" , "enterer" , "provider" , "insurer" , "facility" , "supportingInfo" , "insurance" , "item" , };
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" , "servicedDate" , "servicedPeriod" , "created" , "requestor" , "request" , "outcome" , "disposition" , "insurer" , "insurance" , "preAuthRef" , "form" , "error" , };
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" , };
pub static DETECTEDISSUE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "status" , "code" , "severity" , "patient" , "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" , };
pub static DEVICE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "definition" , "udiCarrier" , "status" , "statusReason" , "distinctIdentifier" , "manufacturer" , "manufactureDate" , "expirationDate" , "lotNumber" , "serialNumber" , "deviceName" , "modelNumber" , "partNumber" , "type" , "specialization" , "version" , "property" , "patient" , "owner" , "contact" , "location" , "url" , "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_DEVICENAME: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "name" , "type" , };
pub static DEVICE_SPECIALIZATION: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "systemType" , "version" , };
pub static DEVICE_VERSION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "component" , "value" , };
pub static DEVICE_PROPERTY: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "valueQuantity" , "valueCode" , };
pub static DEVICEDEFINITION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "udiDeviceIdentifier" , "manufacturerString" , "manufacturerReference" , "deviceName" , "modelNumber" , "type" , "specialization" , "version" , "safety" , "shelfLifeStorage" , "physicalCharacteristics" , "languageCode" , "capability" , "property" , "owner" , "contact" , "url" , "onlineInformation" , "note" , "quantity" , "parentDevice" , "material" , };
pub static DEVICEDEFINITION_UDIDEVICEIDENTIFIER: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "deviceIdentifier" , "issuer" , "jurisdiction" , };
pub static DEVICEDEFINITION_DEVICENAME: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "name" , "type" , };
pub static DEVICEDEFINITION_SPECIALIZATION: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "systemType" , "version" , };
pub static DEVICEDEFINITION_CAPABILITY: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "description" , };
pub static DEVICEDEFINITION_PROPERTY: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "valueQuantity" , "valueCode" , };
pub static DEVICEDEFINITION_MATERIAL: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "substance" , "alternate" , "allergenicIndicator" , };
pub static DEVICEMETRIC: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "type" , "unit" , "source" , "parent" , "operationalStatus" , "color" , "category" , "measurementPeriod" , "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" , "priorRequest" , "groupIdentifier" , "status" , "intent" , "priority" , "codeReference" , "codeCodeableConcept" , "parameter" , "subject" , "encounter" , "occurrenceDateTime" , "occurrencePeriod" , "occurrenceTiming" , "authoredOn" , "requester" , "performerType" , "performer" , "reasonCode" , "reasonReference" , "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 DEVICEUSESTATEMENT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "basedOn" , "status" , "subject" , "derivedFrom" , "timingTiming" , "timingPeriod" , "timingDateTime" , "recordedOn" , "source" , "device" , "reasonCode" , "reasonReference" , "bodySite" , "note" , };
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" , "imagingStudy" , "media" , "conclusion" , "conclusionCode" , "presentedForm" , };
pub static DIAGNOSTICREPORT_MEDIA: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "comment" , "link" , };
pub static DOCUMENTMANIFEST: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "masterIdentifier" , "identifier" , "status" , "type" , "subject" , "created" , "author" , "recipient" , "source" , "description" , "content" , "related" , };
pub static DOCUMENTMANIFEST_RELATED: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "identifier" , "ref" , };
pub static DOCUMENTREFERENCE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "masterIdentifier" , "identifier" , "status" , "docStatus" , "type" , "category" , "subject" , "date" , "author" , "authenticator" , "custodian" , "relatesTo" , "description" , "securityLabel" , "content" , "context" , };
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" , "format" , };
pub static DOCUMENTREFERENCE_CONTEXT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "encounter" , "event" , "period" , "facilityType" , "practiceSetting" , "sourcePatientInfo" , "related" , };
pub static EFFECTEVIDENCESYNTHESIS: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "url" , "identifier" , "version" , "name" , "title" , "status" , "date" , "publisher" , "contact" , "description" , "note" , "useContext" , "jurisdiction" , "copyright" , "approvalDate" , "lastReviewDate" , "effectivePeriod" , "topic" , "author" , "editor" , "reviewer" , "endorser" , "relatedArtifact" , "synthesisType" , "studyType" , "population" , "exposure" , "exposureAlternative" , "outcome" , "sampleSize" , "resultsByExposure" , "effectEstimate" , "certainty" , };
pub static EFFECTEVIDENCESYNTHESIS_SAMPLESIZE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "description" , "numberOfStudies" , "numberOfParticipants" , };
pub static EFFECTEVIDENCESYNTHESIS_RESULTSBYEXPOSURE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "description" , "exposureState" , "variantState" , "riskEvidenceSynthesis" , };
pub static EFFECTEVIDENCESYNTHESIS_EFFECTESTIMATE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "description" , "type" , "variantState" , "value" , "unitOfMeasure" , "precisionEstimate" , };
pub static EFFECTEVIDENCESYNTHESIS_EFFECTESTIMATE_PRECISIONESTIMATE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "level" , "from" , "to" , };
pub static EFFECTEVIDENCESYNTHESIS_CERTAINTY: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "rating" , "note" , "certaintySubcomponent" , };
pub static EFFECTEVIDENCESYNTHESIS_CERTAINTY_CERTAINTYSUBCOMPONENT: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "rating" , "note" , };
pub static ENCOUNTER: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "status" , "statusHistory" , "class" , "classHistory" , "type" , "serviceType" , "priority" , "subject" , "episodeOfCare" , "basedOn" , "participant" , "appointment" , "period" , "length" , "reasonCode" , "reasonReference" , "diagnosis" , "account" , "hospitalization" , "location" , "serviceProvider" , "partOf" , };
pub static ENCOUNTER_STATUSHISTORY: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "status" , "period" , };
pub static ENCOUNTER_CLASSHISTORY: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "class" , "period" , };
pub static ENCOUNTER_PARTICIPANT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "period" , "individual" , };
pub static ENCOUNTER_DIAGNOSIS: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "condition" , "use" , "rank" , };
pub static ENCOUNTER_HOSPITALIZATION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "preAdmissionIdentifier" , "origin" , "admitSource" , "reAdmission" , "dietPreference" , "specialCourtesy" , "specialArrangement" , "destination" , "dischargeDisposition" , };
pub static ENCOUNTER_LOCATION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "location" , "status" , "physicalType" , "period" , };
pub static ENDPOINT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "status" , "connectionType" , "name" , "managingOrganization" , "contact" , "period" , "payloadType" , "payloadMimeType" , "address" , "header" , };
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" , "diagnosis" , "patient" , "managingOrganization" , "period" , "referralRequest" , "careManager" , "team" , "account" , };
pub static EPISODEOFCARE_STATUSHISTORY: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "status" , "period" , };
pub static EPISODEOFCARE_DIAGNOSIS: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "condition" , "role" , "rank" , };
pub static EVENTDEFINITION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "url" , "identifier" , "version" , "name" , "title" , "subtitle" , "status" , "experimental" , "subjectCodeableConcept" , "subjectReference" , "date" , "publisher" , "contact" , "description" , "useContext" , "jurisdiction" , "purpose" , "usage" , "copyright" , "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" , "name" , "title" , "shortTitle" , "subtitle" , "status" , "date" , "publisher" , "contact" , "description" , "note" , "useContext" , "jurisdiction" , "copyright" , "approvalDate" , "lastReviewDate" , "effectivePeriod" , "topic" , "author" , "editor" , "reviewer" , "endorser" , "relatedArtifact" , "exposureBackground" , "exposureVariant" , "outcome" , };
pub static EVIDENCEVARIABLE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "url" , "identifier" , "version" , "name" , "title" , "shortTitle" , "subtitle" , "status" , "date" , "publisher" , "contact" , "description" , "note" , "useContext" , "jurisdiction" , "copyright" , "approvalDate" , "lastReviewDate" , "effectivePeriod" , "topic" , "author" , "editor" , "reviewer" , "endorser" , "relatedArtifact" , "type" , "characteristic" , };
pub static EVIDENCEVARIABLE_CHARACTERISTIC: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "description" , "definitionReference" , "definitionCanonical" , "definitionCodeableConcept" , "definitionExpression" , "definitionDataRequirement" , "definitionTriggerDefinition" , "usageContext" , "exclude" , "participantEffectiveDateTime" , "participantEffectivePeriod" , "participantEffectiveDuration" , "participantEffectiveTiming" , "timeFromStart" , "groupMeasure" , };
pub static EXAMPLESCENARIO: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "url" , "identifier" , "version" , "name" , "status" , "experimental" , "date" , "publisher" , "contact" , "useContext" , "jurisdiction" , "copyright" , "purpose" , "actor" , "instance" , "process" , "workflow" , };
pub static EXAMPLESCENARIO_ACTOR: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "actorId" , "type" , "name" , "description" , };
pub static EXAMPLESCENARIO_INSTANCE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "resourceId" , "resourceType" , "name" , "description" , "version" , "containedInstance" , };
pub static EXAMPLESCENARIO_INSTANCE_VERSION: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "versionId" , "description" , };
pub static EXAMPLESCENARIO_INSTANCE_CONTAINEDINSTANCE: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "resourceId" , "versionId" , };
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" , "process" , "pause" , "operation" , "alternative" , };
pub static EXAMPLESCENARIO_PROCESS_STEP_OPERATION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "number" , "type" , "name" , "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" , "status" , "type" , "subType" , "use" , "patient" , "billablePeriod" , "created" , "enterer" , "insurer" , "provider" , "priority" , "fundsReserveRequested" , "fundsReserve" , "related" , "prescription" , "originalPrescription" , "payee" , "referral" , "facility" , "claim" , "claimResponse" , "outcome" , "disposition" , "preAuthRef" , "preAuthRefPeriod" , "careTeam" , "supportingInfo" , "diagnosis" , "procedure" , "precedence" , "insurance" , "accident" , "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_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" , "qualification" , };
pub static EXPLANATIONOFBENEFIT_SUPPORTINGINFO: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "sequence" , "category" , "code" , "timingDate" , "timingPeriod" , "valueBoolean" , "valueString" , "valueQuantity" , "valueAttachment" , "valueReference" , "reason" , };
pub static EXPLANATIONOFBENEFIT_DIAGNOSIS: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "sequence" , "diagnosisCodeableConcept" , "diagnosisReference" , "type" , "onAdmission" , "packageCode" , };
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" , "revenue" , "category" , "productOrService" , "modifier" , "programCode" , "servicedDate" , "servicedPeriod" , "locationCodeableConcept" , "locationAddress" , "locationReference" , "quantity" , "unitPrice" , "factor" , "net" , "udi" , "bodySite" , "subSite" , "encounter" , "noteNumber" , "adjudication" , "detail" , };
pub static EXPLANATIONOFBENEFIT_ITEM_ADJUDICATION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "category" , "reason" , "amount" , "value" , };
pub static EXPLANATIONOFBENEFIT_ITEM_DETAIL: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "sequence" , "revenue" , "category" , "productOrService" , "modifier" , "programCode" , "quantity" , "unitPrice" , "factor" , "net" , "udi" , "noteNumber" , "adjudication" , "subDetail" , };
pub static EXPLANATIONOFBENEFIT_ITEM_DETAIL_SUBDETAIL: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "sequence" , "revenue" , "category" , "productOrService" , "modifier" , "programCode" , "quantity" , "unitPrice" , "factor" , "net" , "udi" , "noteNumber" , "adjudication" , };
pub static EXPLANATIONOFBENEFIT_ADDITEM: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "itemSequence" , "detailSequence" , "subDetailSequence" , "provider" , "productOrService" , "modifier" , "programCode" , "servicedDate" , "servicedPeriod" , "locationCodeableConcept" , "locationAddress" , "locationReference" , "quantity" , "unitPrice" , "factor" , "net" , "bodySite" , "subSite" , "noteNumber" , "adjudication" , "detail" , };
pub static EXPLANATIONOFBENEFIT_ADDITEM_DETAIL: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "productOrService" , "modifier" , "quantity" , "unitPrice" , "factor" , "net" , "noteNumber" , "adjudication" , "subDetail" , };
pub static EXPLANATIONOFBENEFIT_ADDITEM_DETAIL_SUBDETAIL: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "productOrService" , "modifier" , "quantity" , "unitPrice" , "factor" , "net" , "noteNumber" , "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" , "name" , "relationship" , "sex" , "bornPeriod" , "bornDate" , "bornString" , "ageAge" , "ageRange" , "ageString" , "estimatedAge" , "deceasedBoolean" , "deceasedAge" , "deceasedRange" , "deceasedDate" , "deceasedString" , "reasonCode" , "reasonReference" , "note" , "condition" , };
pub static FAMILYMEMBERHISTORY_CONDITION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "code" , "outcome" , "contributedToDeath" , "onsetAge" , "onsetRange" , "onsetPeriod" , "onsetString" , "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 GOAL: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "lifecycleStatus" , "achievementStatus" , "category" , "priority" , "description" , "subject" , "startDate" , "startCodeableConcept" , "target" , "statusDate" , "statusReason" , "expressedBy" , "addresses" , "note" , "outcomeCode" , "outcomeReference" , };
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" , "version" , "name" , "status" , "experimental" , "date" , "publisher" , "contact" , "description" , "useContext" , "jurisdiction" , "purpose" , "start" , "profile" , "link" , };
pub static GRAPHDEFINITION_LINK: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "path" , "sliceName" , "min" , "max" , "description" , "target" , };
pub static GRAPHDEFINITION_LINK_TARGET: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "params" , "profile" , "compartment" , "link" , };
pub static GRAPHDEFINITION_LINK_TARGET_COMPARTMENT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "use" , "code" , "rule" , "expression" , "description" , };
pub static GROUP: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "active" , "type" , "actual" , "code" , "name" , "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" , "reasonCode" , "reasonReference" , "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" , "category" , "type" , "specialty" , "location" , "name" , "comment" , "extraDetails" , "photo" , "telecom" , "coverageArea" , "serviceProvisionCode" , "eligibility" , "program" , "characteristic" , "communication" , "referralMethod" , "appointmentRequired" , "availableTime" , "notAvailable" , "availabilityExceptions" , "endpoint" , };
pub static HEALTHCARESERVICE_ELIGIBILITY: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "code" , "comment" , };
pub static HEALTHCARESERVICE_AVAILABLETIME: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "daysOfWeek" , "allDay" , "availableStartTime" , "availableEndTime" , };
pub static HEALTHCARESERVICE_NOTAVAILABLE: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "description" , "during" , };
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" , "referrer" , "interpreter" , "endpoint" , "numberOfSeries" , "numberOfInstances" , "procedureReference" , "procedureCode" , "location" , "reasonCode" , "reasonReference" , "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" , "status" , "statusReason" , "vaccineCode" , "patient" , "encounter" , "occurrenceDateTime" , "occurrenceString" , "recorded" , "primarySource" , "reportOrigin" , "location" , "manufacturer" , "lotNumber" , "expirationDate" , "site" , "route" , "doseQuantity" , "performer" , "note" , "reasonCode" , "reasonReference" , "isSubpotent" , "subpotentReason" , "education" , "programEligibility" , "fundingSource" , "reaction" , "protocolApplied" , };
pub static IMMUNIZATION_PERFORMER: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "function" , "actor" , };
pub static IMMUNIZATION_EDUCATION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "documentType" , "reference" , "publicationDate" , "presentationDate" , };
pub static IMMUNIZATION_REACTION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "date" , "detail" , "reported" , };
pub static IMMUNIZATION_PROTOCOLAPPLIED: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "series" , "authority" , "targetDisease" , "doseNumberPositiveInt" , "doseNumberString" , "seriesDosesPositiveInt" , "seriesDosesString" , };
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" , "doseNumberPositiveInt" , "doseNumberString" , "seriesDosesPositiveInt" , "seriesDosesString" , };
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" , "doseNumberPositiveInt" , "doseNumberString" , "seriesDosesPositiveInt" , "seriesDosesString" , "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" , "version" , "name" , "title" , "status" , "experimental" , "date" , "publisher" , "contact" , "description" , "useContext" , "jurisdiction" , "copyright" , "packageId" , "license" , "fhirVersion" , "dependsOn" , "global" , "definition" , "manifest" , };
pub static IMPLEMENTATIONGUIDE_DEPENDSON: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "uri" , "packageId" , "version" , };
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" , "exampleBoolean" , "exampleCanonical" , "groupingId" , };
pub static IMPLEMENTATIONGUIDE_DEFINITION_PAGE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "nameUrl" , "nameReference" , "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" , "exampleBoolean" , "exampleCanonical" , "relativePath" , };
pub static IMPLEMENTATIONGUIDE_MANIFEST_PAGE: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "name" , "title" , "anchor" , };
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_CONTACT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "purpose" , "name" , "telecom" , "address" , };
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 INVOICE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "status" , "cancelledReason" , "type" , "subject" , "recipient" , "date" , "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" , "chargeItemReference" , "chargeItemCodeableConcept" , "priceComponent" , };
pub static INVOICE_LINEITEM_PRICECOMPONENT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "code" , "factor" , "amount" , };
pub static LIBRARY: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "url" , "identifier" , "version" , "name" , "title" , "subtitle" , "status" , "experimental" , "type" , "subjectCodeableConcept" , "subjectReference" , "date" , "publisher" , "contact" , "description" , "useContext" , "jurisdiction" , "purpose" , "usage" , "copyright" , "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" , "telecom" , "address" , "physicalType" , "position" , "managingOrganization" , "partOf" , "hoursOfOperation" , "availabilityExceptions" , "endpoint" , };
pub static LOCATION_POSITION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "longitude" , "latitude" , "altitude" , };
pub static LOCATION_HOURSOFOPERATION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "daysOfWeek" , "allDay" , "openingTime" , "closingTime" , };
pub static MEASURE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "url" , "identifier" , "version" , "name" , "title" , "subtitle" , "status" , "experimental" , "subjectCodeableConcept" , "subjectReference" , "date" , "publisher" , "contact" , "description" , "useContext" , "jurisdiction" , "purpose" , "usage" , "copyright" , "approvalDate" , "lastReviewDate" , "effectivePeriod" , "topic" , "author" , "editor" , "reviewer" , "endorser" , "relatedArtifact" , "library" , "disclaimer" , "scoring" , "compositeScoring" , "type" , "riskAdjustment" , "rateAggregation" , "rationale" , "clinicalRecommendationStatement" , "improvementNotation" , "definition" , "guidance" , "group" , "supplementalData" , };
pub static MEASURE_GROUP: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "code" , "description" , "population" , "stratifier" , };
pub static MEASURE_GROUP_POPULATION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "code" , "description" , "criteria" , };
pub static MEASURE_GROUP_STRATIFIER: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "code" , "description" , "criteria" , "component" , };
pub static MEASURE_GROUP_STRATIFIER_COMPONENT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "code" , "description" , "criteria" , };
pub static MEASURE_SUPPLEMENTALDATA: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "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" , "measure" , "subject" , "date" , "reporter" , "period" , "improvementNotation" , "group" , "evaluatedResource" , };
pub static MEASUREREPORT_GROUP: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "code" , "population" , "measureScore" , "stratifier" , };
pub static MEASUREREPORT_GROUP_POPULATION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "code" , "count" , "subjectResults" , };
pub static MEASUREREPORT_GROUP_STRATIFIER: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "code" , "stratum" , };
pub static MEASUREREPORT_GROUP_STRATIFIER_STRATUM: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "value" , "component" , "population" , "measureScore" , };
pub static MEASUREREPORT_GROUP_STRATIFIER_STRATUM_COMPONENT: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "code" , "value" , };
pub static MEASUREREPORT_GROUP_STRATIFIER_STRATUM_POPULATION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "code" , "count" , "subjectResults" , };
pub static MEDIA: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "basedOn" , "partOf" , "status" , "type" , "modality" , "view" , "subject" , "encounter" , "createdDateTime" , "createdPeriod" , "issued" , "operator" , "reasonCode" , "bodySite" , "deviceName" , "device" , "height" , "width" , "frames" , "duration" , "content" , "note" , };
pub static MEDICATION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "code" , "status" , "manufacturer" , "form" , "amount" , "ingredient" , "batch" , };
pub static MEDICATION_INGREDIENT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "itemCodeableConcept" , "itemReference" , "isActive" , "strength" , };
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" , "instantiates" , "partOf" , "status" , "statusReason" , "category" , "medicationCodeableConcept" , "medicationReference" , "subject" , "context" , "supportingInformation" , "effectiveDateTime" , "effectivePeriod" , "performer" , "reasonCode" , "reasonReference" , "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" , "partOf" , "status" , "statusReasonCodeableConcept" , "statusReasonReference" , "category" , "medicationCodeableConcept" , "medicationReference" , "subject" , "context" , "supportingInformation" , "performer" , "location" , "authorizingPrescription" , "type" , "quantity" , "daysSupply" , "whenPrepared" , "whenHandedOver" , "destination" , "receiver" , "note" , "dosageInstruction" , "substitution" , "detectedIssue" , "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" , "code" , "status" , "manufacturer" , "doseForm" , "amount" , "synonym" , "relatedMedicationKnowledge" , "associatedMedication" , "productType" , "monograph" , "ingredient" , "preparationInstruction" , "intendedRoute" , "cost" , "monitoringProgram" , "administrationGuidelines" , "medicineClassification" , "packaging" , "drugCharacteristic" , "contraindication" , "regulatory" , "kinetics" , };
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_INGREDIENT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "itemCodeableConcept" , "itemReference" , "isActive" , "strength" , };
pub static MEDICATIONKNOWLEDGE_COST: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "source" , "cost" , };
pub static MEDICATIONKNOWLEDGE_MONITORINGPROGRAM: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "name" , };
pub static MEDICATIONKNOWLEDGE_ADMINISTRATIONGUIDELINES: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "dosage" , "indicationCodeableConcept" , "indicationReference" , "patientCharacteristics" , };
pub static MEDICATIONKNOWLEDGE_ADMINISTRATIONGUIDELINES_DOSAGE: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "dosage" , };
pub static MEDICATIONKNOWLEDGE_ADMINISTRATIONGUIDELINES_PATIENTCHARACTERISTICS: phf::OrderedSet<
    &'static str,
> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "characteristicCodeableConcept" , "characteristicQuantity" , "value" , };
pub static MEDICATIONKNOWLEDGE_MEDICINECLASSIFICATION: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "classification" , };
pub static MEDICATIONKNOWLEDGE_PACKAGING: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "quantity" , };
pub static MEDICATIONKNOWLEDGE_DRUGCHARACTERISTIC: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "valueCodeableConcept" , "valueString" , "valueQuantity" , "valueBase64Binary" , };
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_SCHEDULE: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "schedule" , };
pub static MEDICATIONKNOWLEDGE_REGULATORY_MAXDISPENSE: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "quantity" , "period" , };
pub static MEDICATIONKNOWLEDGE_KINETICS: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "areaUnderCurve" , "lethalDose50" , "halfLifePeriod" , };
pub static MEDICATIONREQUEST: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "status" , "statusReason" , "intent" , "category" , "priority" , "doNotPerform" , "reportedBoolean" , "reportedReference" , "medicationCodeableConcept" , "medicationReference" , "subject" , "encounter" , "supportingInformation" , "authoredOn" , "requester" , "performer" , "performerType" , "recorder" , "reasonCode" , "reasonReference" , "instantiatesCanonical" , "instantiatesUri" , "basedOn" , "groupIdentifier" , "courseOfTherapyType" , "insurance" , "note" , "dosageInstruction" , "dispenseRequest" , "substitution" , "priorPrescription" , "detectedIssue" , "eventHistory" , };
pub static MEDICATIONREQUEST_DISPENSEREQUEST: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "initialFill" , "dispenseInterval" , "validityPeriod" , "numberOfRepeatsAllowed" , "quantity" , "expectedSupplyDuration" , "performer" , };
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" , "basedOn" , "partOf" , "status" , "statusReason" , "category" , "medicationCodeableConcept" , "medicationReference" , "subject" , "context" , "effectiveDateTime" , "effectivePeriod" , "dateAsserted" , "informationSource" , "derivedFrom" , "reasonCode" , "reasonReference" , "note" , "dosage" , };
pub static MEDICINALPRODUCT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "type" , "domain" , "combinedPharmaceuticalDoseForm" , "legalStatusOfSupply" , "additionalMonitoringIndicator" , "specialMeasures" , "paediatricUseIndicator" , "productClassification" , "marketingStatus" , "pharmaceuticalProduct" , "packagedMedicinalProduct" , "attachedDocument" , "masterFile" , "contact" , "clinicalTrial" , "name" , "crossReference" , "manufacturingBusinessOperation" , "specialDesignation" , };
pub static MEDICINALPRODUCT_NAME: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "productName" , "namePart" , "countryLanguage" , };
pub static MEDICINALPRODUCT_NAME_NAMEPART: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "part" , "type" , };
pub static MEDICINALPRODUCT_NAME_COUNTRYLANGUAGE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "country" , "jurisdiction" , "language" , };
pub static MEDICINALPRODUCT_MANUFACTURINGBUSINESSOPERATION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "operationType" , "authorisationReferenceNumber" , "effectiveDate" , "confidentialityIndicator" , "manufacturer" , "regulator" , };
pub static MEDICINALPRODUCT_SPECIALDESIGNATION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "identifier" , "type" , "intendedUse" , "indicationCodeableConcept" , "indicationReference" , "status" , "date" , "species" , };
pub static MEDICINALPRODUCTAUTHORIZATION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "subject" , "country" , "jurisdiction" , "status" , "statusDate" , "restoreDate" , "validityPeriod" , "dataExclusivityPeriod" , "dateOfFirstAuthorization" , "internationalBirthDate" , "legalBasis" , "jurisdictionalAuthorization" , "holder" , "regulator" , "procedure" , };
pub static MEDICINALPRODUCTAUTHORIZATION_JURISDICTIONALAUTHORIZATION: phf::OrderedSet<
    &'static str,
> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "identifier" , "country" , "jurisdiction" , "legalStatusOfSupply" , "validityPeriod" , };
pub static MEDICINALPRODUCTAUTHORIZATION_PROCEDURE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "identifier" , "type" , "datePeriod" , "dateDateTime" , "application" , };
pub static MEDICINALPRODUCTCONTRAINDICATION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "subject" , "disease" , "diseaseStatus" , "comorbidity" , "therapeuticIndication" , "otherTherapy" , "population" , };
pub static MEDICINALPRODUCTCONTRAINDICATION_OTHERTHERAPY: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "therapyRelationshipType" , "medicationCodeableConcept" , "medicationReference" , };
pub static MEDICINALPRODUCTINDICATION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "subject" , "diseaseSymptomProcedure" , "diseaseStatus" , "comorbidity" , "intendedEffect" , "duration" , "otherTherapy" , "undesirableEffect" , "population" , };
pub static MEDICINALPRODUCTINDICATION_OTHERTHERAPY: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "therapyRelationshipType" , "medicationCodeableConcept" , "medicationReference" , };
pub static MEDICINALPRODUCTINGREDIENT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "role" , "allergenicIndicator" , "manufacturer" , "specifiedSubstance" , "substance" , };
pub static MEDICINALPRODUCTINGREDIENT_SPECIFIEDSUBSTANCE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "code" , "group" , "confidentiality" , "strength" , };
pub static MEDICINALPRODUCTINGREDIENT_SPECIFIEDSUBSTANCE_STRENGTH: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "presentation" , "presentationLowLimit" , "concentration" , "concentrationLowLimit" , "measurementPoint" , "country" , "referenceStrength" , };
pub static MEDICINALPRODUCTINGREDIENT_SPECIFIEDSUBSTANCE_STRENGTH_REFERENCESTRENGTH:
    phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "substance" , "strength" , "strengthLowLimit" , "measurementPoint" , "country" , };
pub static MEDICINALPRODUCTINGREDIENT_SUBSTANCE: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "code" , "strength" , };
pub static MEDICINALPRODUCTINTERACTION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "subject" , "description" , "interactant" , "type" , "effect" , "incidence" , "management" , };
pub static MEDICINALPRODUCTINTERACTION_INTERACTANT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "itemReference" , "itemCodeableConcept" , };
pub static MEDICINALPRODUCTMANUFACTURED: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "manufacturedDoseForm" , "unitOfPresentation" , "quantity" , "manufacturer" , "ingredient" , "physicalCharacteristics" , "otherCharacteristics" , };
pub static MEDICINALPRODUCTPACKAGED: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "subject" , "description" , "legalStatusOfSupply" , "marketingStatus" , "marketingAuthorization" , "manufacturer" , "batchIdentifier" , "packageItem" , };
pub static MEDICINALPRODUCTPACKAGED_BATCHIDENTIFIER: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "outerPackaging" , "immediatePackaging" , };
pub static MEDICINALPRODUCTPACKAGED_PACKAGEITEM: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "identifier" , "type" , "quantity" , "material" , "alternateMaterial" , "device" , "manufacturedItem" , "packageItem" , "physicalCharacteristics" , "otherCharacteristics" , "shelfLifeStorage" , "manufacturer" , };
pub static MEDICINALPRODUCTPHARMACEUTICAL: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "administrableDoseForm" , "unitOfPresentation" , "ingredient" , "device" , "characteristics" , "routeOfAdministration" , };
pub static MEDICINALPRODUCTPHARMACEUTICAL_CHARACTERISTICS: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "code" , "status" , };
pub static MEDICINALPRODUCTPHARMACEUTICAL_ROUTEOFADMINISTRATION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "code" , "firstDose" , "maxSingleDose" , "maxDosePerDay" , "maxDosePerTreatmentPeriod" , "maxTreatmentPeriod" , "targetSpecies" , };
pub static MEDICINALPRODUCTPHARMACEUTICAL_ROUTEOFADMINISTRATION_TARGETSPECIES: phf::OrderedSet<
    &'static str,
> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "code" , "withdrawalPeriod" , };
pub static MEDICINALPRODUCTPHARMACEUTICAL_ROUTEOFADMINISTRATION_TARGETSPECIES_WITHDRAWALPERIOD:
    phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "tissue" , "value" , "supportingInformation" , };
pub static MEDICINALPRODUCTUNDESIRABLEEFFECT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "subject" , "symptomConditionEffect" , "classification" , "frequencyOfOccurrence" , "population" , };
pub static MESSAGEDEFINITION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "url" , "identifier" , "version" , "name" , "title" , "replaces" , "status" , "experimental" , "date" , "publisher" , "contact" , "description" , "useContext" , "jurisdiction" , "purpose" , "copyright" , "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" , "eventUri" , "destination" , "sender" , "enterer" , "author" , "source" , "responsible" , "reason" , "response" , "focus" , "definition" , };
pub static MESSAGEHEADER_DESTINATION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "name" , "target" , "endpoint" , "receiver" , };
pub static MESSAGEHEADER_SOURCE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "name" , "software" , "version" , "contact" , "endpoint" , };
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" , "coordinateSystem" , "patient" , "specimen" , "device" , "performer" , "quantity" , "referenceSeq" , "variant" , "observedSeq" , "quality" , "readCoverage" , "repository" , "pointer" , "structureVariant" , };
pub static MOLECULARSEQUENCE_REFERENCESEQ: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "chromosome" , "genomeBuild" , "orientation" , "referenceSeqId" , "referenceSeqPointer" , "referenceSeqString" , "strand" , "windowStart" , "windowEnd" , };
pub static MOLECULARSEQUENCE_VARIANT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "start" , "end" , "observedAllele" , "referenceAllele" , "cigar" , "variantPointer" , };
pub static MOLECULARSEQUENCE_QUALITY: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "standardSequence" , "start" , "end" , "score" , "method" , "truthTP" , "queryTP" , "truthFN" , "queryFP" , "gtFP" , "precision" , "recall" , "fScore" , "roc" , };
pub static MOLECULARSEQUENCE_QUALITY_ROC: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "score" , "numTP" , "numFP" , "numFN" , "precision" , "sensitivity" , "fMeasure" , };
pub static MOLECULARSEQUENCE_REPOSITORY: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "url" , "name" , "datasetId" , "variantsetId" , "readsetId" , };
pub static MOLECULARSEQUENCE_STRUCTUREVARIANT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "variantType" , "exact" , "length" , "outer" , "inner" , };
pub static MOLECULARSEQUENCE_STRUCTUREVARIANT_OUTER: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "start" , "end" , };
pub static MOLECULARSEQUENCE_STRUCTUREVARIANT_INNER: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "start" , "end" , };
pub static NAMINGSYSTEM: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "name" , "status" , "kind" , "date" , "publisher" , "contact" , "responsible" , "type" , "description" , "useContext" , "jurisdiction" , "usage" , "uniqueId" , };
pub static NAMINGSYSTEM_UNIQUEID: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "value" , "preferred" , "comment" , "period" , };
pub static NUTRITIONORDER: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "instantiatesCanonical" , "instantiatesUri" , "instantiates" , "status" , "intent" , "patient" , "encounter" , "dateTime" , "orderer" , "allergyIntolerance" , "foodPreferenceModifier" , "excludeFoodModifier" , "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_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_ENTERALFORMULA: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "baseFormulaType" , "baseFormulaProductName" , "additiveType" , "additiveProductName" , "caloricDensity" , "routeofAdministration" , "administration" , "maxVolumeToDeliver" , "administrationInstruction" , };
pub static NUTRITIONORDER_ENTERALFORMULA_ADMINISTRATION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "schedule" , "quantity" , "rateQuantity" , "rateRatio" , };
pub static OBSERVATION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "basedOn" , "partOf" , "status" , "category" , "code" , "subject" , "focus" , "encounter" , "effectiveDateTime" , "effectivePeriod" , "effectiveTiming" , "effectiveInstant" , "issued" , "performer" , "valueQuantity" , "valueCodeableConcept" , "valueString" , "valueBoolean" , "valueInteger" , "valueRange" , "valueRatio" , "valueSampledData" , "valueTime" , "valueDateTime" , "valuePeriod" , "dataAbsentReason" , "interpretation" , "note" , "bodySite" , "method" , "specimen" , "device" , "referenceRange" , "hasMember" , "derivedFrom" , "component" , };
pub static OBSERVATION_REFERENCERANGE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "low" , "high" , "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" , "dataAbsentReason" , "interpretation" , "referenceRange" , };
pub static OBSERVATIONDEFINITION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "category" , "code" , "identifier" , "permittedDataType" , "multipleResultsAllowed" , "method" , "preferredReportName" , "quantitativeDetails" , "qualifiedInterval" , "validCodedValueSet" , "normalCodedValueSet" , "abnormalCodedValueSet" , "criticalCodedValueSet" , };
pub static OBSERVATIONDEFINITION_QUANTITATIVEDETAILS: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "customaryUnit" , "unit" , "conversionFactor" , "decimalPrecision" , };
pub static OBSERVATIONDEFINITION_QUALIFIEDINTERVAL: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "category" , "range" , "context" , "appliesTo" , "gender" , "age" , "gestationalAge" , "condition" , };
pub static OPERATIONDEFINITION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "url" , "version" , "name" , "title" , "status" , "kind" , "experimental" , "date" , "publisher" , "contact" , "description" , "useContext" , "jurisdiction" , "purpose" , "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" , "min" , "max" , "documentation" , "type" , "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" , "telecom" , "address" , "partOf" , "contact" , "endpoint" , };
pub static ORGANIZATION_CONTACT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "purpose" , "name" , "telecom" , "address" , };
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" , "telecom" , "endpoint" , };
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" , "valueMarkdown" , "valueOid" , "valuePositiveInt" , "valueString" , "valueTime" , "valueUnsignedInt" , "valueUri" , "valueUrl" , "valueUuid" , "valueAddress" , "valueAge" , "valueAnnotation" , "valueAttachment" , "valueCodeableConcept" , "valueCoding" , "valueContactPoint" , "valueCount" , "valueDistance" , "valueDuration" , "valueHumanName" , "valueIdentifier" , "valueMoney" , "valuePeriod" , "valueQuantity" , "valueRange" , "valueRatio" , "valueReference" , "valueSampledData" , "valueSignature" , "valueTiming" , "valueContactDetail" , "valueContributor" , "valueDataRequirement" , "valueExpression" , "valueParameterDefinition" , "valueRelatedArtifact" , "valueTriggerDefinition" , "valueUsageContext" , "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" , "provider" , "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" , "status" , "period" , "created" , "paymentIssuer" , "request" , "requestor" , "outcome" , "disposition" , "paymentDate" , "paymentAmount" , "paymentIdentifier" , "detail" , "formCode" , "processNote" , };
pub static PAYMENTRECONCILIATION_DETAIL: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "identifier" , "predecessor" , "type" , "request" , "submitter" , "response" , "date" , "responsible" , "payee" , "amount" , };
pub static PAYMENTRECONCILIATION_PROCESSNOTE: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "text" , };
pub static PERSON: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "name" , "telecom" , "gender" , "birthDate" , "address" , "photo" , "managingOrganization" , "active" , "link" , };
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" , "name" , "title" , "subtitle" , "type" , "status" , "experimental" , "subjectCodeableConcept" , "subjectReference" , "date" , "publisher" , "contact" , "description" , "useContext" , "jurisdiction" , "purpose" , "usage" , "copyright" , "approvalDate" , "lastReviewDate" , "effectivePeriod" , "topic" , "author" , "editor" , "reviewer" , "endorser" , "relatedArtifact" , "library" , "goal" , "action" , };
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" , "due" , };
pub static PLANDEFINITION_ACTION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "prefix" , "title" , "description" , "textEquivalent" , "priority" , "code" , "reason" , "documentation" , "goalId" , "subjectCodeableConcept" , "subjectReference" , "trigger" , "condition" , "input" , "output" , "relatedAction" , "timingDateTime" , "timingAge" , "timingPeriod" , "timingDuration" , "timingRange" , "timingTiming" , "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_RELATEDACTION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "actionId" , "relationship" , "offsetDuration" , "offsetRange" , };
pub static PLANDEFINITION_ACTION_PARTICIPANT: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "role" , };
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" , "address" , "gender" , "birthDate" , "photo" , "qualification" , "communication" , };
pub static PRACTITIONER_QUALIFICATION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "identifier" , "code" , "period" , "issuer" , };
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" , "telecom" , "availableTime" , "notAvailable" , "availabilityExceptions" , "endpoint" , };
pub static PRACTITIONERROLE_AVAILABLETIME: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "daysOfWeek" , "allDay" , "availableStartTime" , "availableEndTime" , };
pub static PRACTITIONERROLE_NOTAVAILABLE: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "description" , "during" , };
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" , "encounter" , "performedDateTime" , "performedPeriod" , "performedString" , "performedAge" , "performedRange" , "recorder" , "asserter" , "performer" , "location" , "reasonCode" , "reasonReference" , "bodySite" , "outcome" , "report" , "complication" , "complicationDetail" , "followUp" , "note" , "focalDevice" , "usedReference" , "usedCode" , };
pub static PROCEDURE_PERFORMER: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "function" , "actor" , "onBehalfOf" , };
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" , "reason" , "activity" , "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" , "name" , "title" , "derivedFrom" , "status" , "experimental" , "subjectType" , "date" , "publisher" , "contact" , "description" , "useContext" , "jurisdiction" , "purpose" , "copyright" , "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" , "required" , "repeats" , "readOnly" , "maxLength" , "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 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 REQUESTGROUP: 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" , "reasonCode" , "reasonReference" , "note" , "action" , };
pub static REQUESTGROUP_ACTION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "prefix" , "title" , "description" , "textEquivalent" , "priority" , "code" , "documentation" , "condition" , "relatedAction" , "timingDateTime" , "timingAge" , "timingPeriod" , "timingDuration" , "timingRange" , "timingTiming" , "participant" , "type" , "groupingBehavior" , "selectionBehavior" , "requiredBehavior" , "precheckBehavior" , "cardinalityBehavior" , "resource" , "action" , };
pub static REQUESTGROUP_ACTION_CONDITION: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "kind" , "expression" , };
pub static REQUESTGROUP_ACTION_RELATEDACTION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "actionId" , "relationship" , "offsetDuration" , "offsetRange" , };
pub static RESEARCHDEFINITION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "url" , "identifier" , "version" , "name" , "title" , "shortTitle" , "subtitle" , "status" , "experimental" , "subjectCodeableConcept" , "subjectReference" , "date" , "publisher" , "contact" , "description" , "comment" , "useContext" , "jurisdiction" , "purpose" , "usage" , "copyright" , "approvalDate" , "lastReviewDate" , "effectivePeriod" , "topic" , "author" , "editor" , "reviewer" , "endorser" , "relatedArtifact" , "library" , "population" , "exposure" , "exposureAlternative" , "outcome" , };
pub static RESEARCHELEMENTDEFINITION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "url" , "identifier" , "version" , "name" , "title" , "shortTitle" , "subtitle" , "status" , "experimental" , "subjectCodeableConcept" , "subjectReference" , "date" , "publisher" , "contact" , "description" , "comment" , "useContext" , "jurisdiction" , "purpose" , "usage" , "copyright" , "approvalDate" , "lastReviewDate" , "effectivePeriod" , "topic" , "author" , "editor" , "reviewer" , "endorser" , "relatedArtifact" , "library" , "type" , "variableType" , "characteristic" , };
pub static RESEARCHELEMENTDEFINITION_CHARACTERISTIC: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "definitionCodeableConcept" , "definitionCanonical" , "definitionExpression" , "definitionDataRequirement" , "usageContext" , "exclude" , "unitOfMeasure" , "studyEffectiveDescription" , "studyEffectiveDateTime" , "studyEffectivePeriod" , "studyEffectiveDuration" , "studyEffectiveTiming" , "studyEffectiveTimeFromStart" , "studyEffectiveGroupMeasure" , "participantEffectiveDescription" , "participantEffectiveDateTime" , "participantEffectivePeriod" , "participantEffectiveDuration" , "participantEffectiveTiming" , "participantEffectiveTimeFromStart" , "participantEffectiveGroupMeasure" , };
pub static RESEARCHSTUDY: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "title" , "protocol" , "partOf" , "status" , "primaryPurposeType" , "phase" , "category" , "focus" , "condition" , "contact" , "relatedArtifact" , "keyword" , "location" , "description" , "enrollment" , "period" , "sponsor" , "principalInvestigator" , "site" , "reasonStopped" , "note" , "arm" , "objective" , };
pub static RESEARCHSTUDY_ARM: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "name" , "type" , "description" , };
pub static RESEARCHSTUDY_OBJECTIVE: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "name" , "type" , };
pub static RESEARCHSUBJECT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "status" , "period" , "study" , "individual" , "assignedArm" , "actualArm" , "consent" , };
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" , "reasonCode" , "reasonReference" , "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 RISKEVIDENCESYNTHESIS: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "url" , "identifier" , "version" , "name" , "title" , "status" , "date" , "publisher" , "contact" , "description" , "note" , "useContext" , "jurisdiction" , "copyright" , "approvalDate" , "lastReviewDate" , "effectivePeriod" , "topic" , "author" , "editor" , "reviewer" , "endorser" , "relatedArtifact" , "synthesisType" , "studyType" , "population" , "exposure" , "outcome" , "sampleSize" , "riskEstimate" , "certainty" , };
pub static RISKEVIDENCESYNTHESIS_SAMPLESIZE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "description" , "numberOfStudies" , "numberOfParticipants" , };
pub static RISKEVIDENCESYNTHESIS_RISKESTIMATE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "description" , "type" , "value" , "unitOfMeasure" , "denominatorCount" , "numeratorCount" , "precisionEstimate" , };
pub static RISKEVIDENCESYNTHESIS_RISKESTIMATE_PRECISIONESTIMATE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "level" , "from" , "to" , };
pub static RISKEVIDENCESYNTHESIS_CERTAINTY: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "rating" , "note" , "certaintySubcomponent" , };
pub static RISKEVIDENCESYNTHESIS_CERTAINTY_CERTAINTYSUBCOMPONENT: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "rating" , "note" , };
pub static SCHEDULE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "active" , "serviceCategory" , "serviceType" , "specialty" , "actor" , "planningHorizon" , "comment" , };
pub static SEARCHPARAMETER: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "url" , "version" , "name" , "derivedFrom" , "status" , "experimental" , "date" , "publisher" , "contact" , "description" , "useContext" , "jurisdiction" , "purpose" , "code" , "base" , "type" , "expression" , "xpath" , "xpathUsage" , "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" , "encounter" , "occurrenceDateTime" , "occurrencePeriod" , "occurrenceTiming" , "asNeededBoolean" , "asNeededCodeableConcept" , "authoredOn" , "requester" , "performerType" , "performer" , "locationCode" , "locationReference" , "reasonCode" , "reasonReference" , "insurance" , "supportingInfo" , "specimen" , "bodySite" , "note" , "patientInstruction" , "relevantHistory" , };
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" , "collection" , "processing" , "container" , "condition" , "note" , };
pub static SPECIMEN_COLLECTION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "collector" , "collectedDateTime" , "collectedPeriod" , "duration" , "quantity" , "method" , "bodySite" , "fastingStatusCodeableConcept" , "fastingStatusDuration" , };
pub static SPECIMEN_PROCESSING: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "description" , "procedure" , "additive" , "timeDateTime" , "timePeriod" , };
pub static SPECIMEN_CONTAINER: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "identifier" , "description" , "type" , "capacity" , "specimenQuantity" , "additiveCodeableConcept" , "additiveReference" , };
pub static SPECIMENDEFINITION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "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" , "rejectionCriterion" , "handling" , };
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" , "name" , "title" , "status" , "experimental" , "date" , "publisher" , "contact" , "description" , "useContext" , "jurisdiction" , "purpose" , "copyright" , "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" , "name" , "title" , "status" , "experimental" , "date" , "publisher" , "contact" , "description" , "useContext" , "jurisdiction" , "purpose" , "copyright" , "structure" , "import" , "group" , };
pub static STRUCTUREMAP_STRUCTURE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "url" , "mode" , "alias" , "documentation" , };
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" , "defaultValueBase64Binary" , "defaultValueBoolean" , "defaultValueCanonical" , "defaultValueCode" , "defaultValueDate" , "defaultValueDateTime" , "defaultValueDecimal" , "defaultValueId" , "defaultValueInstant" , "defaultValueInteger" , "defaultValueMarkdown" , "defaultValueOid" , "defaultValuePositiveInt" , "defaultValueString" , "defaultValueTime" , "defaultValueUnsignedInt" , "defaultValueUri" , "defaultValueUrl" , "defaultValueUuid" , "defaultValueAddress" , "defaultValueAge" , "defaultValueAnnotation" , "defaultValueAttachment" , "defaultValueCodeableConcept" , "defaultValueCoding" , "defaultValueContactPoint" , "defaultValueCount" , "defaultValueDistance" , "defaultValueDuration" , "defaultValueHumanName" , "defaultValueIdentifier" , "defaultValueMoney" , "defaultValuePeriod" , "defaultValueQuantity" , "defaultValueRange" , "defaultValueRatio" , "defaultValueReference" , "defaultValueSampledData" , "defaultValueSignature" , "defaultValueTiming" , "defaultValueContactDetail" , "defaultValueContributor" , "defaultValueDataRequirement" , "defaultValueExpression" , "defaultValueParameterDefinition" , "defaultValueRelatedArtifact" , "defaultValueTriggerDefinition" , "defaultValueUsageContext" , "defaultValueDosage" , "defaultValueMeta" , "element" , "listMode" , "variable" , "condition" , "check" , "logMessage" , };
pub static STRUCTUREMAP_GROUP_RULE_TARGET: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "context" , "contextType" , "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" , };
pub static STRUCTUREMAP_GROUP_RULE_DEPENDENT: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "name" , "variable" , };
pub static SUBSCRIPTION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "status" , "contact" , "end" , "reason" , "criteria" , "error" , "channel" , };
pub static SUBSCRIPTION_CHANNEL: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "endpoint" , "payload" , "header" , };
pub static SUBSTANCE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "status" , "category" , "code" , "description" , "instance" , "ingredient" , };
pub static SUBSTANCE_INSTANCE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "identifier" , "expiry" , "quantity" , };
pub static SUBSTANCE_INGREDIENT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "quantity" , "substanceCodeableConcept" , "substanceReference" , };
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" , "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" , "material" , "type" , "isDefining" , "amount" , };
pub static SUBSTANCEPOLYMER_REPEAT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "numberOfUnits" , "averageMolecularFormula" , "repeatUnitAmountType" , "repeatUnit" , };
pub static SUBSTANCEPOLYMER_REPEAT_REPEATUNIT: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "orientationOfPolymerisation" , "repeatUnit" , "amount" , "degreeOfPolymerisation" , "structuralRepresentation" , };
pub static SUBSTANCEPOLYMER_REPEAT_REPEATUNIT_DEGREEOFPOLYMERISATION: phf::OrderedSet<
    &'static str,
> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "degree" , "amount" , };
pub static SUBSTANCEPOLYMER_REPEAT_REPEATUNIT_STRUCTURALREPRESENTATION: phf::OrderedSet<
    &'static str,
> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "representation" , "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" , "classification" , "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_CLASSIFICATION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "domain" , "classification" , "subtype" , "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 SUBSTANCESPECIFICATION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "identifier" , "type" , "status" , "domain" , "description" , "source" , "comment" , "moiety" , "property" , "referenceInformation" , "structure" , "code" , "name" , "molecularWeight" , "relationship" , "nucleicAcid" , "polymer" , "protein" , "sourceMaterial" , };
pub static SUBSTANCESPECIFICATION_MOIETY: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "role" , "identifier" , "name" , "stereochemistry" , "opticalActivity" , "molecularFormula" , "amountQuantity" , "amountString" , };
pub static SUBSTANCESPECIFICATION_PROPERTY: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "category" , "code" , "parameters" , "definingSubstanceReference" , "definingSubstanceCodeableConcept" , "amountQuantity" , "amountString" , };
pub static SUBSTANCESPECIFICATION_STRUCTURE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "stereochemistry" , "opticalActivity" , "molecularFormula" , "molecularFormulaByMoiety" , "isotope" , "molecularWeight" , "source" , "representation" , };
pub static SUBSTANCESPECIFICATION_STRUCTURE_ISOTOPE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "identifier" , "name" , "substitution" , "halfLife" , "molecularWeight" , };
pub static SUBSTANCESPECIFICATION_STRUCTURE_ISOTOPE_MOLECULARWEIGHT: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "method" , "type" , "amount" , };
pub static SUBSTANCESPECIFICATION_STRUCTURE_REPRESENTATION: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "type" , "representation" , "attachment" , };
pub static SUBSTANCESPECIFICATION_CODE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "code" , "status" , "statusDate" , "comment" , "source" , };
pub static SUBSTANCESPECIFICATION_NAME: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "name" , "type" , "status" , "preferred" , "language" , "domain" , "jurisdiction" , "synonym" , "translation" , "official" , "source" , };
pub static SUBSTANCESPECIFICATION_NAME_OFFICIAL: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "authority" , "status" , "date" , };
pub static SUBSTANCESPECIFICATION_RELATIONSHIP: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "substanceReference" , "substanceCodeableConcept" , "relationship" , "isDefining" , "amountQuantity" , "amountRange" , "amountRatio" , "amountString" , "amountRatioLowLimit" , "amountType" , "source" , };
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" , "category" , "priority" , "itemCodeableConcept" , "itemReference" , "quantity" , "parameter" , "occurrenceDateTime" , "occurrencePeriod" , "occurrenceTiming" , "authoredOn" , "requester" , "supplier" , "reasonCode" , "reasonReference" , "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" , "code" , "description" , "focus" , "for" , "encounter" , "executionPeriod" , "authoredOn" , "lastModified" , "requester" , "performerType" , "owner" , "location" , "reasonCode" , "reasonReference" , "insurance" , "note" , "relevantHistory" , "restriction" , "input" , "output" , };
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" , "valueMarkdown" , "valueOid" , "valuePositiveInt" , "valueString" , "valueTime" , "valueUnsignedInt" , "valueUri" , "valueUrl" , "valueUuid" , "valueAddress" , "valueAge" , "valueAnnotation" , "valueAttachment" , "valueCodeableConcept" , "valueCoding" , "valueContactPoint" , "valueCount" , "valueDistance" , "valueDuration" , "valueHumanName" , "valueIdentifier" , "valueMoney" , "valuePeriod" , "valueQuantity" , "valueRange" , "valueRatio" , "valueReference" , "valueSampledData" , "valueSignature" , "valueTiming" , "valueContactDetail" , "valueContributor" , "valueDataRequirement" , "valueExpression" , "valueParameterDefinition" , "valueRelatedArtifact" , "valueTriggerDefinition" , "valueUsageContext" , "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" , "valueMarkdown" , "valueOid" , "valuePositiveInt" , "valueString" , "valueTime" , "valueUnsignedInt" , "valueUri" , "valueUrl" , "valueUuid" , "valueAddress" , "valueAge" , "valueAnnotation" , "valueAttachment" , "valueCodeableConcept" , "valueCoding" , "valueContactPoint" , "valueCount" , "valueDistance" , "valueDuration" , "valueHumanName" , "valueIdentifier" , "valueMoney" , "valuePeriod" , "valueQuantity" , "valueRange" , "valueRatio" , "valueReference" , "valueSampledData" , "valueSignature" , "valueTiming" , "valueContactDetail" , "valueContributor" , "valueDataRequirement" , "valueExpression" , "valueParameterDefinition" , "valueRelatedArtifact" , "valueTriggerDefinition" , "valueUsageContext" , "valueDosage" , "valueMeta" , };
pub static TERMINOLOGYCAPABILITIES: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "url" , "version" , "name" , "title" , "status" , "experimental" , "date" , "publisher" , "contact" , "description" , "useContext" , "jurisdiction" , "purpose" , "copyright" , "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" , "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 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" , };
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" , "name" , "title" , "status" , "experimental" , "date" , "publisher" , "contact" , "description" , "useContext" , "jurisdiction" , "purpose" , "copyright" , "origin" , "destination" , "metadata" , "fixture" , "profile" , "variable" , "setup" , "test" , "teardown" , };
pub static TESTSCRIPT_ORIGIN: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "index" , "profile" , };
pub static TESTSCRIPT_DESTINATION: phf::OrderedSet<&'static str> =
    phf_ordered_set! { "id" , "extension" , "modifierExtension" , "index" , "profile" , };
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_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" , "expression" , "headerField" , "minimumId" , "navigationLinks" , "operator" , "path" , "requestMethod" , "requestURL" , "resource" , "response" , "responseCode" , "sourceId" , "validateProfileId" , "value" , "warningOnly" , };
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 VALUESET: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "meta" , "implicitRules" , "language" , "text" , "contained" , "extension" , "modifierExtension" , "url" , "identifier" , "version" , "name" , "title" , "status" , "experimental" , "date" , "publisher" , "contact" , "description" , "useContext" , "jurisdiction" , "immutable" , "purpose" , "copyright" , "compose" , "expansion" , };
pub static VALUESET_COMPOSE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "lockedDate" , "inactive" , "include" , "exclude" , };
pub static VALUESET_COMPOSE_INCLUDE: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "system" , "version" , "concept" , "filter" , "valueSet" , };
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" , "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" , "timestamp" , "total" , "offset" , "parameter" , "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_CONTAINS: phf::OrderedSet<&'static str> = phf_ordered_set! { "id" , "extension" , "modifierExtension" , "system" , "abstract" , "inactive" , "version" , "code" , "display" , "designation" , "contains" , };
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" , };