gitextract_dpfxjzfy/ ├── .editorconfig ├── .flake8 ├── .github/ │ ├── ISSUE_TEMPLATE.md │ └── workflows/ │ └── ci.yaml ├── .gitignore ├── .isort.cfg ├── .travis.yml ├── AUTHORS.rst ├── CONTRIBUTING.rst ├── HISTORY.rst ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── appveyor.yml ├── fhir/ │ ├── __init__.py │ └── resources/ │ ├── R4B/ │ │ ├── __init__.py │ │ ├── account.py │ │ ├── activitydefinition.py │ │ ├── address.py │ │ ├── administrableproductdefinition.py │ │ ├── adverseevent.py │ │ ├── age.py │ │ ├── allergyintolerance.py │ │ ├── annotation.py │ │ ├── appointment.py │ │ ├── appointmentresponse.py │ │ ├── attachment.py │ │ ├── auditevent.py │ │ ├── backboneelement.py │ │ ├── basic.py │ │ ├── binary.py │ │ ├── biologicallyderivedproduct.py │ │ ├── bodystructure.py │ │ ├── bundle.py │ │ ├── capabilitystatement.py │ │ ├── careplan.py │ │ ├── careteam.py │ │ ├── catalogentry.py │ │ ├── chargeitem.py │ │ ├── chargeitemdefinition.py │ │ ├── citation.py │ │ ├── claim.py │ │ ├── claimresponse.py │ │ ├── clinicalimpression.py │ │ ├── clinicalusedefinition.py │ │ ├── codeableconcept.py │ │ ├── codeablereference.py │ │ ├── codesystem.py │ │ ├── coding.py │ │ ├── communication.py │ │ ├── communicationrequest.py │ │ ├── compartmentdefinition.py │ │ ├── composition.py │ │ ├── conceptmap.py │ │ ├── condition.py │ │ ├── consent.py │ │ ├── contactdetail.py │ │ ├── contactpoint.py │ │ ├── contract.py │ │ ├── contributor.py │ │ ├── count.py │ │ ├── coverage.py │ │ ├── coverageeligibilityrequest.py │ │ ├── coverageeligibilityresponse.py │ │ ├── datarequirement.py │ │ ├── detectedissue.py │ │ ├── device.py │ │ ├── devicedefinition.py │ │ ├── devicemetric.py │ │ ├── devicerequest.py │ │ ├── deviceusestatement.py │ │ ├── diagnosticreport.py │ │ ├── distance.py │ │ ├── documentmanifest.py │ │ ├── documentreference.py │ │ ├── domainresource.py │ │ ├── dosage.py │ │ ├── duration.py │ │ ├── element.py │ │ ├── elementdefinition.py │ │ ├── encounter.py │ │ ├── endpoint.py │ │ ├── enrollmentrequest.py │ │ ├── enrollmentresponse.py │ │ ├── episodeofcare.py │ │ ├── eventdefinition.py │ │ ├── evidence.py │ │ ├── evidencereport.py │ │ ├── evidencevariable.py │ │ ├── examplescenario.py │ │ ├── explanationofbenefit.py │ │ ├── expression.py │ │ ├── extension.py │ │ ├── familymemberhistory.py │ │ ├── fhirprimitiveextension.py │ │ ├── fhirresourcemodel.py │ │ ├── fhirtypes.py │ │ ├── flag.py │ │ ├── goal.py │ │ ├── graphdefinition.py │ │ ├── group.py │ │ ├── guidanceresponse.py │ │ ├── healthcareservice.py │ │ ├── humanname.py │ │ ├── identifier.py │ │ ├── imagingstudy.py │ │ ├── immunization.py │ │ ├── immunizationevaluation.py │ │ ├── immunizationrecommendation.py │ │ ├── implementationguide.py │ │ ├── ingredient.py │ │ ├── insuranceplan.py │ │ ├── invoice.py │ │ ├── library.py │ │ ├── linkage.py │ │ ├── list.py │ │ ├── location.py │ │ ├── manufactureditemdefinition.py │ │ ├── marketingstatus.py │ │ ├── measure.py │ │ ├── measurereport.py │ │ ├── media.py │ │ ├── medication.py │ │ ├── medicationadministration.py │ │ ├── medicationdispense.py │ │ ├── medicationknowledge.py │ │ ├── medicationrequest.py │ │ ├── medicationstatement.py │ │ ├── medicinalproductdefinition.py │ │ ├── messagedefinition.py │ │ ├── messageheader.py │ │ ├── meta.py │ │ ├── molecularsequence.py │ │ ├── money.py │ │ ├── namingsystem.py │ │ ├── narrative.py │ │ ├── nutritionorder.py │ │ ├── nutritionproduct.py │ │ ├── observation.py │ │ ├── observationdefinition.py │ │ ├── operationdefinition.py │ │ ├── operationoutcome.py │ │ ├── organization.py │ │ ├── organizationaffiliation.py │ │ ├── packagedproductdefinition.py │ │ ├── parameterdefinition.py │ │ ├── parameters.py │ │ ├── patient.py │ │ ├── paymentnotice.py │ │ ├── paymentreconciliation.py │ │ ├── period.py │ │ ├── person.py │ │ ├── plandefinition.py │ │ ├── population.py │ │ ├── practitioner.py │ │ ├── practitionerrole.py │ │ ├── procedure.py │ │ ├── prodcharacteristic.py │ │ ├── productshelflife.py │ │ ├── provenance.py │ │ ├── quantity.py │ │ ├── questionnaire.py │ │ ├── questionnaireresponse.py │ │ ├── range.py │ │ ├── ratio.py │ │ ├── ratiorange.py │ │ ├── reference.py │ │ ├── regulatedauthorization.py │ │ ├── relatedartifact.py │ │ ├── relatedperson.py │ │ ├── requestgroup.py │ │ ├── researchdefinition.py │ │ ├── researchelementdefinition.py │ │ ├── researchstudy.py │ │ ├── researchsubject.py │ │ ├── resource.py │ │ ├── riskassessment.py │ │ ├── sampleddata.py │ │ ├── schedule.py │ │ ├── searchparameter.py │ │ ├── servicerequest.py │ │ ├── signature.py │ │ ├── slot.py │ │ ├── specimen.py │ │ ├── specimendefinition.py │ │ ├── structuredefinition.py │ │ ├── structuremap.py │ │ ├── subscription.py │ │ ├── subscriptionstatus.py │ │ ├── subscriptiontopic.py │ │ ├── substance.py │ │ ├── substancedefinition.py │ │ ├── supplydelivery.py │ │ ├── supplyrequest.py │ │ ├── task.py │ │ ├── terminologycapabilities.py │ │ ├── testreport.py │ │ ├── tests/ │ │ │ ├── __init__.py │ │ │ ├── conftest.py │ │ │ ├── test_account.py │ │ │ ├── test_activitydefinition.py │ │ │ ├── test_administrableproductdefinition.py │ │ │ ├── test_adverseevent.py │ │ │ ├── test_allergyintolerance.py │ │ │ ├── test_appointment.py │ │ │ ├── test_appointmentresponse.py │ │ │ ├── test_auditevent.py │ │ │ ├── test_basic.py │ │ │ ├── test_binary.py │ │ │ ├── test_biologicallyderivedproduct.py │ │ │ ├── test_bodystructure.py │ │ │ ├── test_bundle.py │ │ │ ├── test_capabilitystatement.py │ │ │ ├── test_careplan.py │ │ │ ├── test_careteam.py │ │ │ ├── test_catalogentry.py │ │ │ ├── test_chargeitem.py │ │ │ ├── test_chargeitemdefinition.py │ │ │ ├── test_citation.py │ │ │ ├── test_claim.py │ │ │ ├── test_claimresponse.py │ │ │ ├── test_clinicalimpression.py │ │ │ ├── test_clinicalusedefinition.py │ │ │ ├── test_codesystem.py │ │ │ ├── test_communication.py │ │ │ ├── test_communicationrequest.py │ │ │ ├── test_compartmentdefinition.py │ │ │ ├── test_composition.py │ │ │ ├── test_conceptmap.py │ │ │ ├── test_condition.py │ │ │ ├── test_consent.py │ │ │ ├── test_contract.py │ │ │ ├── test_coverage.py │ │ │ ├── test_coverageeligibilityrequest.py │ │ │ ├── test_coverageeligibilityresponse.py │ │ │ ├── test_detectedissue.py │ │ │ ├── test_device.py │ │ │ ├── test_devicedefinition.py │ │ │ ├── test_devicemetric.py │ │ │ ├── test_devicerequest.py │ │ │ ├── test_deviceusestatement.py │ │ │ ├── test_diagnosticreport.py │ │ │ ├── test_documentmanifest.py │ │ │ ├── test_documentreference.py │ │ │ ├── test_encounter.py │ │ │ ├── test_endpoint.py │ │ │ ├── test_enrollmentrequest.py │ │ │ ├── test_enrollmentresponse.py │ │ │ ├── test_episodeofcare.py │ │ │ ├── test_eventdefinition.py │ │ │ ├── test_evidence.py │ │ │ ├── test_evidencereport.py │ │ │ ├── test_evidencevariable.py │ │ │ ├── test_examplescenario.py │ │ │ ├── test_explanationofbenefit.py │ │ │ ├── test_familymemberhistory.py │ │ │ ├── test_flag.py │ │ │ ├── test_goal.py │ │ │ ├── test_graphdefinition.py │ │ │ ├── test_group.py │ │ │ ├── test_guidanceresponse.py │ │ │ ├── test_healthcareservice.py │ │ │ ├── test_imagingstudy.py │ │ │ ├── test_immunization.py │ │ │ ├── test_immunizationevaluation.py │ │ │ ├── test_immunizationrecommendation.py │ │ │ ├── test_implementationguide.py │ │ │ ├── test_ingredient.py │ │ │ ├── test_insuranceplan.py │ │ │ ├── test_invoice.py │ │ │ ├── test_library.py │ │ │ ├── test_linkage.py │ │ │ ├── test_list.py │ │ │ ├── test_location.py │ │ │ ├── test_manufactureditemdefinition.py │ │ │ ├── test_measure.py │ │ │ ├── test_measurereport.py │ │ │ ├── test_media.py │ │ │ ├── test_medication.py │ │ │ ├── test_medicationadministration.py │ │ │ ├── test_medicationdispense.py │ │ │ ├── test_medicationknowledge.py │ │ │ ├── test_medicationrequest.py │ │ │ ├── test_medicationstatement.py │ │ │ ├── test_medicinalproductdefinition.py │ │ │ ├── test_messagedefinition.py │ │ │ ├── test_messageheader.py │ │ │ ├── test_molecularsequence.py │ │ │ ├── test_namingsystem.py │ │ │ ├── test_nutritionorder.py │ │ │ ├── test_nutritionproduct.py │ │ │ ├── test_observation.py │ │ │ ├── test_observationdefinition.py │ │ │ ├── test_operationdefinition.py │ │ │ ├── test_operationoutcome.py │ │ │ ├── test_organization.py │ │ │ ├── test_organizationaffiliation.py │ │ │ ├── test_packagedproductdefinition.py │ │ │ ├── test_parameters.py │ │ │ ├── test_patient.py │ │ │ ├── test_paymentnotice.py │ │ │ ├── test_paymentreconciliation.py │ │ │ ├── test_person.py │ │ │ ├── test_plandefinition.py │ │ │ ├── test_practitioner.py │ │ │ ├── test_practitionerrole.py │ │ │ ├── test_procedure.py │ │ │ ├── test_provenance.py │ │ │ ├── test_questionnaire.py │ │ │ ├── test_questionnaireresponse.py │ │ │ ├── test_regulatedauthorization.py │ │ │ ├── test_relatedperson.py │ │ │ ├── test_requestgroup.py │ │ │ ├── test_researchdefinition.py │ │ │ ├── test_researchelementdefinition.py │ │ │ ├── test_researchstudy.py │ │ │ ├── test_researchsubject.py │ │ │ ├── test_riskassessment.py │ │ │ ├── test_schedule.py │ │ │ ├── test_searchparameter.py │ │ │ ├── test_servicerequest.py │ │ │ ├── test_slot.py │ │ │ ├── test_specimen.py │ │ │ ├── test_specimendefinition.py │ │ │ ├── test_structuremap.py │ │ │ ├── test_subscription.py │ │ │ ├── test_subscriptionstatus.py │ │ │ ├── test_subscriptiontopic.py │ │ │ ├── test_substance.py │ │ │ ├── test_substancedefinition.py │ │ │ ├── test_supplydelivery.py │ │ │ ├── test_supplyrequest.py │ │ │ ├── test_task.py │ │ │ ├── test_terminologycapabilities.py │ │ │ ├── test_testreport.py │ │ │ ├── test_testscript.py │ │ │ ├── test_valueset.py │ │ │ ├── test_verificationresult.py │ │ │ └── test_visionprescription.py │ │ ├── testscript.py │ │ ├── timing.py │ │ ├── triggerdefinition.py │ │ ├── usagecontext.py │ │ ├── valueset.py │ │ ├── verificationresult.py │ │ └── visionprescription.py │ ├── STU3/ │ │ ├── __init__.py │ │ ├── account.py │ │ ├── activitydefinition.py │ │ ├── address.py │ │ ├── adverseevent.py │ │ ├── age.py │ │ ├── allergyintolerance.py │ │ ├── annotation.py │ │ ├── appointment.py │ │ ├── appointmentresponse.py │ │ ├── attachment.py │ │ ├── auditevent.py │ │ ├── backboneelement.py │ │ ├── basic.py │ │ ├── binary.py │ │ ├── bodysite.py │ │ ├── bundle.py │ │ ├── capabilitystatement.py │ │ ├── careplan.py │ │ ├── careteam.py │ │ ├── chargeitem.py │ │ ├── claim.py │ │ ├── claimresponse.py │ │ ├── clinicalimpression.py │ │ ├── codeableconcept.py │ │ ├── codesystem.py │ │ ├── coding.py │ │ ├── communication.py │ │ ├── communicationrequest.py │ │ ├── compartmentdefinition.py │ │ ├── composition.py │ │ ├── conceptmap.py │ │ ├── condition.py │ │ ├── consent.py │ │ ├── contactdetail.py │ │ ├── contactpoint.py │ │ ├── contract.py │ │ ├── contributor.py │ │ ├── count.py │ │ ├── coverage.py │ │ ├── dataelement.py │ │ ├── datarequirement.py │ │ ├── detectedissue.py │ │ ├── device.py │ │ ├── devicecomponent.py │ │ ├── devicemetric.py │ │ ├── devicerequest.py │ │ ├── deviceusestatement.py │ │ ├── diagnosticreport.py │ │ ├── distance.py │ │ ├── documentmanifest.py │ │ ├── documentreference.py │ │ ├── domainresource.py │ │ ├── dosage.py │ │ ├── duration.py │ │ ├── element.py │ │ ├── elementdefinition.py │ │ ├── eligibilityrequest.py │ │ ├── eligibilityresponse.py │ │ ├── encounter.py │ │ ├── endpoint.py │ │ ├── enrollmentrequest.py │ │ ├── enrollmentresponse.py │ │ ├── episodeofcare.py │ │ ├── expansionprofile.py │ │ ├── explanationofbenefit.py │ │ ├── extension.py │ │ ├── familymemberhistory.py │ │ ├── fhirprimitiveextension.py │ │ ├── fhirresourcemodel.py │ │ ├── fhirtypes.py │ │ ├── flag.py │ │ ├── goal.py │ │ ├── graphdefinition.py │ │ ├── group.py │ │ ├── guidanceresponse.py │ │ ├── healthcareservice.py │ │ ├── humanname.py │ │ ├── identifier.py │ │ ├── imagingmanifest.py │ │ ├── imagingstudy.py │ │ ├── immunization.py │ │ ├── immunizationrecommendation.py │ │ ├── implementationguide.py │ │ ├── library.py │ │ ├── linkage.py │ │ ├── list.py │ │ ├── location.py │ │ ├── measure.py │ │ ├── measurereport.py │ │ ├── media.py │ │ ├── medication.py │ │ ├── medicationadministration.py │ │ ├── medicationdispense.py │ │ ├── medicationrequest.py │ │ ├── medicationstatement.py │ │ ├── messagedefinition.py │ │ ├── messageheader.py │ │ ├── meta.py │ │ ├── metadataresource.py │ │ ├── money.py │ │ ├── namingsystem.py │ │ ├── narrative.py │ │ ├── nutritionorder.py │ │ ├── observation.py │ │ ├── operationdefinition.py │ │ ├── operationoutcome.py │ │ ├── organization.py │ │ ├── parameterdefinition.py │ │ ├── parameters.py │ │ ├── patient.py │ │ ├── paymentnotice.py │ │ ├── paymentreconciliation.py │ │ ├── period.py │ │ ├── person.py │ │ ├── plandefinition.py │ │ ├── practitioner.py │ │ ├── practitionerrole.py │ │ ├── procedure.py │ │ ├── procedurerequest.py │ │ ├── processrequest.py │ │ ├── processresponse.py │ │ ├── provenance.py │ │ ├── quantity.py │ │ ├── questionnaire.py │ │ ├── questionnaireresponse.py │ │ ├── range.py │ │ ├── ratio.py │ │ ├── reference.py │ │ ├── referralrequest.py │ │ ├── relatedartifact.py │ │ ├── relatedperson.py │ │ ├── requestgroup.py │ │ ├── researchstudy.py │ │ ├── researchsubject.py │ │ ├── resource.py │ │ ├── riskassessment.py │ │ ├── sampleddata.py │ │ ├── schedule.py │ │ ├── searchparameter.py │ │ ├── sequence.py │ │ ├── servicedefinition.py │ │ ├── signature.py │ │ ├── slot.py │ │ ├── specimen.py │ │ ├── structuredefinition.py │ │ ├── structuremap.py │ │ ├── subscription.py │ │ ├── substance.py │ │ ├── supplydelivery.py │ │ ├── supplyrequest.py │ │ ├── task.py │ │ ├── testreport.py │ │ ├── tests/ │ │ │ ├── __init__.py │ │ │ ├── conftest.py │ │ │ ├── test_bundle.py │ │ │ ├── test_capabilitystatement.py │ │ │ ├── test_codesystem.py │ │ │ ├── test_compartmentdefinition.py │ │ │ ├── test_conceptmap.py │ │ │ ├── test_operationdefinition.py │ │ │ ├── test_questionnaire.py │ │ │ ├── test_searchparameter.py │ │ │ └── test_valueset.py │ │ ├── testscript.py │ │ ├── timing.py │ │ ├── triggerdefinition.py │ │ ├── usagecontext.py │ │ ├── valueset.py │ │ └── visionprescription.py │ ├── __init__.py │ ├── account.py │ ├── activitydefinition.py │ ├── actordefinition.py │ ├── address.py │ ├── administrableproductdefinition.py │ ├── adverseevent.py │ ├── age.py │ ├── allergyintolerance.py │ ├── annotation.py │ ├── appointment.py │ ├── appointmentresponse.py │ ├── artifactassessment.py │ ├── attachment.py │ ├── auditevent.py │ ├── availability.py │ ├── backboneelement.py │ ├── backbonetype.py │ ├── base.py │ ├── basic.py │ ├── binary.py │ ├── biologicallyderivedproduct.py │ ├── biologicallyderivedproductdispense.py │ ├── bodystructure.py │ ├── bundle.py │ ├── canonicalresource.py │ ├── capabilitystatement.py │ ├── careplan.py │ ├── careteam.py │ ├── chargeitem.py │ ├── chargeitemdefinition.py │ ├── citation.py │ ├── claim.py │ ├── claimresponse.py │ ├── clinicalimpression.py │ ├── clinicalusedefinition.py │ ├── codeableconcept.py │ ├── codeablereference.py │ ├── codesystem.py │ ├── coding.py │ ├── communication.py │ ├── communicationrequest.py │ ├── compartmentdefinition.py │ ├── composition.py │ ├── conceptmap.py │ ├── condition.py │ ├── conditiondefinition.py │ ├── consent.py │ ├── contactdetail.py │ ├── contactpoint.py │ ├── contract.py │ ├── contributor.py │ ├── count.py │ ├── coverage.py │ ├── coverageeligibilityrequest.py │ ├── coverageeligibilityresponse.py │ ├── datarequirement.py │ ├── datatype.py │ ├── detectedissue.py │ ├── device.py │ ├── deviceassociation.py │ ├── devicedefinition.py │ ├── devicedispense.py │ ├── devicemetric.py │ ├── devicerequest.py │ ├── deviceusage.py │ ├── diagnosticreport.py │ ├── distance.py │ ├── documentreference.py │ ├── domainresource.py │ ├── dosage.py │ ├── duration.py │ ├── element.py │ ├── elementdefinition.py │ ├── encounter.py │ ├── encounterhistory.py │ ├── endpoint.py │ ├── enrollmentrequest.py │ ├── enrollmentresponse.py │ ├── episodeofcare.py │ ├── eventdefinition.py │ ├── evidence.py │ ├── evidencereport.py │ ├── evidencevariable.py │ ├── examplescenario.py │ ├── explanationofbenefit.py │ ├── expression.py │ ├── extendedcontactdetail.py │ ├── extension.py │ ├── familymemberhistory.py │ ├── fhirprimitiveextension.py │ ├── fhirresourcemodel.py │ ├── fhirtypes.py │ ├── flag.py │ ├── formularyitem.py │ ├── genomicstudy.py │ ├── goal.py │ ├── graphdefinition.py │ ├── group.py │ ├── guidanceresponse.py │ ├── healthcareservice.py │ ├── humanname.py │ ├── identifier.py │ ├── imagingselection.py │ ├── imagingstudy.py │ ├── immunization.py │ ├── immunizationevaluation.py │ ├── immunizationrecommendation.py │ ├── implementationguide.py │ ├── ingredient.py │ ├── insuranceplan.py │ ├── integer64.py │ ├── inventoryitem.py │ ├── inventoryreport.py │ ├── invoice.py │ ├── library.py │ ├── linkage.py │ ├── list.py │ ├── location.py │ ├── manufactureditemdefinition.py │ ├── marketingstatus.py │ ├── measure.py │ ├── measurereport.py │ ├── medication.py │ ├── medicationadministration.py │ ├── medicationdispense.py │ ├── medicationknowledge.py │ ├── medicationrequest.py │ ├── medicationstatement.py │ ├── medicinalproductdefinition.py │ ├── messagedefinition.py │ ├── messageheader.py │ ├── meta.py │ ├── metadataresource.py │ ├── molecularsequence.py │ ├── monetarycomponent.py │ ├── money.py │ ├── namingsystem.py │ ├── narrative.py │ ├── nutritionintake.py │ ├── nutritionorder.py │ ├── nutritionproduct.py │ ├── observation.py │ ├── observationdefinition.py │ ├── operationdefinition.py │ ├── operationoutcome.py │ ├── organization.py │ ├── organizationaffiliation.py │ ├── packagedproductdefinition.py │ ├── parameterdefinition.py │ ├── parameters.py │ ├── patient.py │ ├── paymentnotice.py │ ├── paymentreconciliation.py │ ├── period.py │ ├── permission.py │ ├── person.py │ ├── plandefinition.py │ ├── practitioner.py │ ├── practitionerrole.py │ ├── primitivetype.py │ ├── procedure.py │ ├── productshelflife.py │ ├── provenance.py │ ├── py.typed │ ├── quantity.py │ ├── questionnaire.py │ ├── questionnaireresponse.py │ ├── range.py │ ├── ratio.py │ ├── ratiorange.py │ ├── reference.py │ ├── regulatedauthorization.py │ ├── relatedartifact.py │ ├── relatedperson.py │ ├── requestorchestration.py │ ├── requirements.py │ ├── researchstudy.py │ ├── researchsubject.py │ ├── resource.py │ ├── riskassessment.py │ ├── sampleddata.py │ ├── schedule.py │ ├── searchparameter.py │ ├── servicerequest.py │ ├── signature.py │ ├── slot.py │ ├── specimen.py │ ├── specimendefinition.py │ ├── structuredefinition.py │ ├── structuremap.py │ ├── subscription.py │ ├── subscriptionstatus.py │ ├── subscriptiontopic.py │ ├── substance.py │ ├── substancedefinition.py │ ├── substancenucleicacid.py │ ├── substancepolymer.py │ ├── substanceprotein.py │ ├── substancereferenceinformation.py │ ├── substancesourcematerial.py │ ├── supplydelivery.py │ ├── supplyrequest.py │ ├── task.py │ ├── terminologycapabilities.py │ ├── testplan.py │ ├── testreport.py │ ├── tests/ │ │ ├── __init__.py │ │ ├── conftest.py │ │ ├── test_account.py │ │ ├── test_activitydefinition.py │ │ ├── test_actordefinition.py │ │ ├── test_administrableproductdefinition.py │ │ ├── test_allergyintolerance.py │ │ ├── test_appointment.py │ │ ├── test_appointmentresponse.py │ │ ├── test_artifactassessment.py │ │ ├── test_auditevent.py │ │ ├── test_basic.py │ │ ├── test_binary.py │ │ ├── test_biologicallyderivedproduct.py │ │ ├── test_biologicallyderivedproductdispense.py │ │ ├── test_bodystructure.py │ │ ├── test_bundle.py │ │ ├── test_capabilitystatement.py │ │ ├── test_careplan.py │ │ ├── test_careteam.py │ │ ├── test_chargeitem.py │ │ ├── test_chargeitemdefinition.py │ │ ├── test_citation.py │ │ ├── test_claim.py │ │ ├── test_claimresponse.py │ │ ├── test_clinicalimpression.py │ │ ├── test_clinicalusedefinition.py │ │ ├── test_codesystem.py │ │ ├── test_communication.py │ │ ├── test_communicationrequest.py │ │ ├── test_compartmentdefinition.py │ │ ├── test_composition.py │ │ ├── test_conceptmap.py │ │ ├── test_condition.py │ │ ├── test_conditiondefinition.py │ │ ├── test_consent.py │ │ ├── test_contract.py │ │ ├── test_coverage.py │ │ ├── test_coverageeligibilityrequest.py │ │ ├── test_coverageeligibilityresponse.py │ │ ├── test_detectedissue.py │ │ ├── test_device.py │ │ ├── test_deviceassociation.py │ │ ├── test_devicedefinition.py │ │ ├── test_devicedispense.py │ │ ├── test_devicemetric.py │ │ ├── test_devicerequest.py │ │ ├── test_deviceusage.py │ │ ├── test_diagnosticreport.py │ │ ├── test_documentreference.py │ │ ├── test_encounter.py │ │ ├── test_encounterhistory.py │ │ ├── test_endpoint.py │ │ ├── test_enrollmentrequest.py │ │ ├── test_enrollmentresponse.py │ │ ├── test_episodeofcare.py │ │ ├── test_eventdefinition.py │ │ ├── test_evidence.py │ │ ├── test_evidencereport.py │ │ ├── test_evidencevariable.py │ │ ├── test_examplescenario.py │ │ ├── test_explanationofbenefit.py │ │ ├── test_familymemberhistory.py │ │ ├── test_flag.py │ │ ├── test_formularyitem.py │ │ ├── test_genomicstudy.py │ │ ├── test_goal.py │ │ ├── test_graphdefinition.py │ │ ├── test_group.py │ │ ├── test_guidanceresponse.py │ │ ├── test_healthcareservice.py │ │ ├── test_imagingselection.py │ │ ├── test_imagingstudy.py │ │ ├── test_immunization.py │ │ ├── test_immunizationevaluation.py │ │ ├── test_immunizationrecommendation.py │ │ ├── test_implementationguide.py │ │ ├── test_ingredient.py │ │ ├── test_insuranceplan.py │ │ ├── test_inventoryitem.py │ │ ├── test_inventoryreport.py │ │ ├── test_invoice.py │ │ ├── test_library.py │ │ ├── test_linkage.py │ │ ├── test_list.py │ │ ├── test_location.py │ │ ├── test_manufactureditemdefinition.py │ │ ├── test_measure.py │ │ ├── test_measurereport.py │ │ ├── test_medication.py │ │ ├── test_medicationadministration.py │ │ ├── test_medicationdispense.py │ │ ├── test_medicationknowledge.py │ │ ├── test_medicationrequest.py │ │ ├── test_medicationstatement.py │ │ ├── test_medicinalproductdefinition.py │ │ ├── test_messagedefinition.py │ │ ├── test_messageheader.py │ │ ├── test_molecularsequence.py │ │ ├── test_namingsystem.py │ │ ├── test_nutritionintake.py │ │ ├── test_nutritionorder.py │ │ ├── test_nutritionproduct.py │ │ ├── test_observation.py │ │ ├── test_observationdefinition.py │ │ ├── test_operationdefinition.py │ │ ├── test_operationoutcome.py │ │ ├── test_organization.py │ │ ├── test_organizationaffiliation.py │ │ ├── test_packagedproductdefinition.py │ │ ├── test_parameters.py │ │ ├── test_patient.py │ │ ├── test_paymentnotice.py │ │ ├── test_paymentreconciliation.py │ │ ├── test_permission.py │ │ ├── test_person.py │ │ ├── test_plandefinition.py │ │ ├── test_practitioner.py │ │ ├── test_practitionerrole.py │ │ ├── test_procedure.py │ │ ├── test_provenance.py │ │ ├── test_questionnaire.py │ │ ├── test_questionnaireresponse.py │ │ ├── test_regulatedauthorization.py │ │ ├── test_relatedperson.py │ │ ├── test_requestorchestration.py │ │ ├── test_requirements.py │ │ ├── test_researchstudy.py │ │ ├── test_researchsubject.py │ │ ├── test_riskassessment.py │ │ ├── test_schedule.py │ │ ├── test_searchparameter.py │ │ ├── test_servicerequest.py │ │ ├── test_slot.py │ │ ├── test_specimen.py │ │ ├── test_specimendefinition.py │ │ ├── test_structuremap.py │ │ ├── test_subscription.py │ │ ├── test_subscriptionstatus.py │ │ ├── test_subscriptiontopic.py │ │ ├── test_substance.py │ │ ├── test_substancedefinition.py │ │ ├── test_substancenucleicacid.py │ │ ├── test_substancepolymer.py │ │ ├── test_substanceprotein.py │ │ ├── test_substancereferenceinformation.py │ │ ├── test_substancesourcematerial.py │ │ ├── test_supplydelivery.py │ │ ├── test_supplyrequest.py │ │ ├── test_task.py │ │ ├── test_terminologycapabilities.py │ │ ├── test_testplan.py │ │ ├── test_testreport.py │ │ ├── test_testscript.py │ │ ├── test_transport.py │ │ ├── test_valueset.py │ │ ├── test_verificationresult.py │ │ └── test_visionprescription.py │ ├── testscript.py │ ├── timing.py │ ├── transport.py │ ├── triggerdefinition.py │ ├── usagecontext.py │ ├── valueset.py │ ├── verificationresult.py │ ├── virtualservicedetail.py │ └── visionprescription.py ├── pyproject.toml ├── script/ │ ├── base_local.py │ ├── generate.py │ └── static/ │ └── .gitignore ├── setup.cfg ├── setup.py ├── tests/ │ ├── __init__.py │ ├── conftest.py │ ├── patch_r4b_test.py │ ├── static/ │ │ ├── R4B/ │ │ │ ├── Observation.json │ │ │ ├── Patient-with-ext.json │ │ │ └── Patient-with-ext.xml │ │ ├── STU3-Bundle-Issue-144.xml │ │ ├── example1-Provenance.json │ │ ├── patient-example-animal(animal).xml │ │ └── xsd/ │ │ └── fhir/ │ │ ├── account.sch │ │ ├── account.xsd │ │ ├── activitydefinition.sch │ │ ├── activitydefinition.xsd │ │ ├── adverseevent.sch │ │ ├── adverseevent.xsd │ │ ├── allergyintolerance.sch │ │ ├── allergyintolerance.xsd │ │ ├── appointment.sch │ │ ├── appointment.xsd │ │ ├── appointmentresponse.sch │ │ ├── appointmentresponse.xsd │ │ ├── auditevent.sch │ │ ├── auditevent.xsd │ │ ├── basic.sch │ │ ├── basic.xsd │ │ ├── binary.sch │ │ ├── binary.xsd │ │ ├── biologicallyderivedproduct.sch │ │ ├── biologicallyderivedproduct.xsd │ │ ├── bodystructure.sch │ │ ├── bodystructure.xsd │ │ ├── bundle.sch │ │ ├── bundle.xsd │ │ ├── capabilitystatement.sch │ │ ├── capabilitystatement.xsd │ │ ├── careplan.sch │ │ ├── careplan.xsd │ │ ├── careteam.sch │ │ ├── careteam.xsd │ │ ├── catalogentry.sch │ │ ├── catalogentry.xsd │ │ ├── chargeitem.sch │ │ ├── chargeitem.xsd │ │ ├── chargeitemdefinition.sch │ │ ├── chargeitemdefinition.xsd │ │ ├── claim.sch │ │ ├── claim.xsd │ │ ├── claimresponse.sch │ │ ├── claimresponse.xsd │ │ ├── clinicalimpression.sch │ │ ├── clinicalimpression.xsd │ │ ├── codesystem.sch │ │ ├── codesystem.xsd │ │ ├── communication.sch │ │ ├── communication.xsd │ │ ├── communicationrequest.sch │ │ ├── communicationrequest.xsd │ │ ├── compartmentdefinition.sch │ │ ├── compartmentdefinition.xsd │ │ ├── composition.sch │ │ ├── composition.xsd │ │ ├── conceptmap.sch │ │ ├── conceptmap.xsd │ │ ├── condition.sch │ │ ├── condition.xsd │ │ ├── consent.sch │ │ ├── consent.xsd │ │ ├── contract.sch │ │ ├── contract.xsd │ │ ├── coverage.sch │ │ ├── coverage.xsd │ │ ├── coverageeligibilityrequest.sch │ │ ├── coverageeligibilityrequest.xsd │ │ ├── coverageeligibilityresponse.sch │ │ ├── coverageeligibilityresponse.xsd │ │ ├── detectedissue.sch │ │ ├── detectedissue.xsd │ │ ├── device.sch │ │ ├── device.xsd │ │ ├── devicedefinition.sch │ │ ├── devicedefinition.xsd │ │ ├── devicemetric.sch │ │ ├── devicemetric.xsd │ │ ├── devicerequest.sch │ │ ├── devicerequest.xsd │ │ ├── deviceusestatement.sch │ │ ├── deviceusestatement.xsd │ │ ├── diagnosticreport.sch │ │ ├── diagnosticreport.xsd │ │ ├── documentmanifest.sch │ │ ├── documentmanifest.xsd │ │ ├── documentreference.sch │ │ ├── documentreference.xsd │ │ ├── effectevidencesynthesis.sch │ │ ├── effectevidencesynthesis.xsd │ │ ├── encounter.sch │ │ ├── encounter.xsd │ │ ├── endpoint.sch │ │ ├── endpoint.xsd │ │ ├── enrollmentrequest.sch │ │ ├── enrollmentrequest.xsd │ │ ├── enrollmentresponse.sch │ │ ├── enrollmentresponse.xsd │ │ ├── episodeofcare.sch │ │ ├── episodeofcare.xsd │ │ ├── eventdefinition.sch │ │ ├── eventdefinition.xsd │ │ ├── evidence.sch │ │ ├── evidence.xsd │ │ ├── evidencevariable.sch │ │ ├── evidencevariable.xsd │ │ ├── examplescenario.sch │ │ ├── examplescenario.xsd │ │ ├── explanationofbenefit.sch │ │ ├── explanationofbenefit.xsd │ │ ├── familymemberhistory.sch │ │ ├── familymemberhistory.xsd │ │ ├── fhir-all.xsd │ │ ├── fhir-base.xsd │ │ ├── fhir-invariants.sch │ │ ├── fhir-single.xsd │ │ ├── fhir-xhtml.xsd │ │ ├── flag.sch │ │ ├── flag.xsd │ │ ├── goal.sch │ │ ├── goal.xsd │ │ ├── graphdefinition.sch │ │ ├── graphdefinition.xsd │ │ ├── group.sch │ │ ├── group.xsd │ │ ├── guidanceresponse.sch │ │ ├── guidanceresponse.xsd │ │ ├── healthcareservice.sch │ │ ├── healthcareservice.xsd │ │ ├── imagingstudy.sch │ │ ├── imagingstudy.xsd │ │ ├── immunization.sch │ │ ├── immunization.xsd │ │ ├── immunizationevaluation.sch │ │ ├── immunizationevaluation.xsd │ │ ├── immunizationrecommendation.sch │ │ ├── immunizationrecommendation.xsd │ │ ├── implementationguide.sch │ │ ├── implementationguide.xsd │ │ ├── insuranceplan.sch │ │ ├── insuranceplan.xsd │ │ ├── invoice.sch │ │ ├── invoice.xsd │ │ ├── library.sch │ │ ├── library.xsd │ │ ├── linkage.sch │ │ ├── linkage.xsd │ │ ├── list.sch │ │ ├── list.xsd │ │ ├── location.sch │ │ ├── location.xsd │ │ ├── measure.sch │ │ ├── measure.xsd │ │ ├── measurereport.sch │ │ ├── measurereport.xsd │ │ ├── media.sch │ │ ├── media.xsd │ │ ├── medication.sch │ │ ├── medication.xsd │ │ ├── medicationadministration.sch │ │ ├── medicationadministration.xsd │ │ ├── medicationdispense.sch │ │ ├── medicationdispense.xsd │ │ ├── medicationknowledge.sch │ │ ├── medicationknowledge.xsd │ │ ├── medicationrequest.sch │ │ ├── medicationrequest.xsd │ │ ├── medicationstatement.sch │ │ ├── medicationstatement.xsd │ │ ├── medicinalproduct.sch │ │ ├── medicinalproduct.xsd │ │ ├── medicinalproductauthorization.sch │ │ ├── medicinalproductauthorization.xsd │ │ ├── medicinalproductcontraindication.sch │ │ ├── medicinalproductcontraindication.xsd │ │ ├── medicinalproductindication.sch │ │ ├── medicinalproductindication.xsd │ │ ├── medicinalproductingredient.sch │ │ ├── medicinalproductingredient.xsd │ │ ├── medicinalproductinteraction.sch │ │ ├── medicinalproductinteraction.xsd │ │ ├── medicinalproductmanufactured.sch │ │ ├── medicinalproductmanufactured.xsd │ │ ├── medicinalproductpackaged.sch │ │ ├── medicinalproductpackaged.xsd │ │ ├── medicinalproductpharmaceutical.sch │ │ ├── medicinalproductpharmaceutical.xsd │ │ ├── medicinalproductundesirableeffect.sch │ │ ├── medicinalproductundesirableeffect.xsd │ │ ├── messagedefinition.sch │ │ ├── messagedefinition.xsd │ │ ├── messageheader.sch │ │ ├── messageheader.xsd │ │ ├── molecularsequence.sch │ │ ├── molecularsequence.xsd │ │ ├── namingsystem.sch │ │ ├── namingsystem.xsd │ │ ├── nutritionorder.sch │ │ ├── nutritionorder.xsd │ │ ├── observation.sch │ │ ├── observation.xsd │ │ ├── observationdefinition.sch │ │ ├── observationdefinition.xsd │ │ ├── operationdefinition.sch │ │ ├── operationdefinition.xsd │ │ ├── operationoutcome.sch │ │ ├── operationoutcome.xsd │ │ ├── organization.sch │ │ ├── organization.xsd │ │ ├── organizationaffiliation.sch │ │ ├── organizationaffiliation.xsd │ │ ├── parameters.sch │ │ ├── parameters.xsd │ │ ├── patient.sch │ │ ├── patient.xsd │ │ ├── paymentnotice.sch │ │ ├── paymentnotice.xsd │ │ ├── paymentreconciliation.sch │ │ ├── paymentreconciliation.xsd │ │ ├── person.sch │ │ ├── person.xsd │ │ ├── plandefinition.sch │ │ ├── plandefinition.xsd │ │ ├── practitioner.sch │ │ ├── practitioner.xsd │ │ ├── practitionerrole.sch │ │ ├── practitionerrole.xsd │ │ ├── procedure.sch │ │ ├── procedure.xsd │ │ ├── provenance.sch │ │ ├── provenance.xsd │ │ ├── questionnaire.sch │ │ ├── questionnaire.xsd │ │ ├── questionnaireresponse.sch │ │ ├── questionnaireresponse.xsd │ │ ├── relatedperson.sch │ │ ├── relatedperson.xsd │ │ ├── requestgroup.sch │ │ ├── requestgroup.xsd │ │ ├── researchdefinition.sch │ │ ├── researchdefinition.xsd │ │ ├── researchelementdefinition.sch │ │ ├── researchelementdefinition.xsd │ │ ├── researchstudy.sch │ │ ├── researchstudy.xsd │ │ ├── researchsubject.sch │ │ ├── researchsubject.xsd │ │ ├── riskassessment.sch │ │ ├── riskassessment.xsd │ │ ├── riskevidencesynthesis.sch │ │ ├── riskevidencesynthesis.xsd │ │ ├── schedule.sch │ │ ├── schedule.xsd │ │ ├── searchparameter.sch │ │ ├── searchparameter.xsd │ │ ├── servicerequest.sch │ │ ├── servicerequest.xsd │ │ ├── slot.sch │ │ ├── slot.xsd │ │ ├── specimen.sch │ │ ├── specimen.xsd │ │ ├── specimendefinition.sch │ │ ├── specimendefinition.xsd │ │ ├── structuredefinition.sch │ │ ├── structuredefinition.xsd │ │ ├── structuremap.sch │ │ ├── structuremap.xsd │ │ ├── subscription.sch │ │ ├── subscription.xsd │ │ ├── substance.sch │ │ ├── substance.xsd │ │ ├── substancenucleicacid.sch │ │ ├── substancenucleicacid.xsd │ │ ├── substancepolymer.sch │ │ ├── substancepolymer.xsd │ │ ├── substanceprotein.sch │ │ ├── substanceprotein.xsd │ │ ├── substancereferenceinformation.sch │ │ ├── substancereferenceinformation.xsd │ │ ├── substancesourcematerial.sch │ │ ├── substancesourcematerial.xsd │ │ ├── substancespecification.sch │ │ ├── substancespecification.xsd │ │ ├── supplydelivery.sch │ │ ├── supplydelivery.xsd │ │ ├── supplyrequest.sch │ │ ├── supplyrequest.xsd │ │ ├── task.sch │ │ ├── task.xsd │ │ ├── terminologycapabilities.sch │ │ ├── terminologycapabilities.xsd │ │ ├── testreport.sch │ │ ├── testreport.xsd │ │ ├── testscript.sch │ │ ├── testscript.xsd │ │ ├── valueset.sch │ │ ├── valueset.xsd │ │ ├── verificationresult.sch │ │ ├── verificationresult.xsd │ │ ├── visionprescription.sch │ │ ├── visionprescription.xsd │ │ ├── xml.xsd │ │ └── xmldsig-core-schema.xsd │ ├── test_summary_mode_serialization.py │ ├── test_xml_validate_and_dump.py │ ├── test_yaml_validate_and_dump.py │ └── utils.py └── tox.ini