├── .devcontainer ├── Dockerfile ├── devcontainer.json ├── docker-compose.yml ├── library-scripts │ ├── common-debian.sh │ ├── docker-debian.sh │ └── fix-cert.sh └── readme.md ├── .dockerignore ├── .editorconfig ├── .gitattributes ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── question.md │ └── user-story.md ├── copilot-instructions.md ├── dependabot.yml ├── labeler.yml ├── prompts │ └── releasenotesSummarizer.prompt.md ├── pull_request_template.md ├── release.yml └── workflows │ ├── codeql.yml │ ├── sync-to-devops.yml │ └── validate-prs.yml ├── .gitignore ├── .vscode ├── launch.json └── tasks.json ├── CONTRIBUTING.md ├── CodeCoverage.runsettings ├── CredScanSuppressions.json ├── CustomAnalysisRules.Test.ruleset ├── CustomAnalysisRules.ruleset ├── Directory.Build.props ├── Directory.Packages.props ├── GeoPol.xml ├── GitVersion.yml ├── LICENSE ├── Microsoft.Health.Fhir.sln ├── R4.slnf ├── R5.slnf ├── README.md ├── SECURITY.md ├── SquashMergeRequirements.md ├── THIRDPARTYNOTICES.md ├── docs ├── Authentication.md ├── BashDeployment.md ├── BulkExport.md ├── BulkImport.md ├── CodeReviewRulesOfThumb.md ├── ConvertDataOperation.md ├── CrucibleTests.md ├── DefaultDeployment.md ├── FhirServerInstanceConfiguration.md ├── HowToConnectSQLDatabase.md ├── HowToDebug.md ├── QuickstartDeployCLI.md ├── QuickstartDeployPortal.md ├── QuickstartDeployPowershell.md ├── Register-Client-Application.md ├── Register-Resource-Application.md ├── Roles.md ├── RunningTheProject.md ├── SMARTonFHIR.md ├── SchemaMigrationGuide.md ├── SchemaMigrationTool.md ├── SchemaVersioning.md ├── SearchArchitecture.md ├── SearchParameterCacheRefreshBackgroundService.md ├── TelemetryLogging.md ├── Testing-Releases.md ├── Versioning.md ├── arch │ ├── Proposals │ │ ├── adr-2502-Resource-table-refactor.md │ │ ├── adr-2502-ResourceIdIntMap.md │ │ ├── adr-2502-_include-on-delete.md │ │ └── images │ │ │ └── adr-2502-Resource-table-refactor │ │ │ ├── ResourceTableIndices.png │ │ │ └── ResourceTableSplit.png │ ├── Readme.md │ ├── adr-2503-Bundle-include-operation.md │ ├── adr-2503-Not-referenced-search.md │ ├── adr-2504-bulkupdate.md │ ├── adr-2504-limit-concurrent-merge-resources.md │ ├── adr-2505-eventual-consistency.md │ ├── adr-2509-not-referenced-search-specific.md │ ├── adr-2510-meta-history.md │ ├── adr-2512-searchparameter-concurrency-management.md │ └── adr-fhir-resource-duplication-design.md ├── flow diagrams │ ├── bulk-delete.md │ ├── bulk-update.md │ ├── create-resource.md │ ├── read-resource.md │ ├── search-api.md │ ├── search-compartment-sql.md │ ├── search-cosmos-db.md │ ├── search-sql-server.md │ └── searchindexer.md ├── images │ ├── HowToConnectSQLDatabase │ │ ├── choose-user-account.png │ │ ├── entraid-admin.png │ │ └── save-user-admin-account.png │ ├── HowToDebug │ │ ├── DebuggingOptions.png │ │ └── DownloadSource.png │ ├── SMARTonFHIR │ │ ├── CORS.png │ │ └── app-service-settings.png │ ├── SchemaVersioning │ │ ├── migration-steps.png │ │ └── upgrade-steps.png │ ├── Search │ │ └── extraction-process.png │ ├── bulk-import │ │ ├── arm-template-portal.png │ │ └── set-initial-import-mode.png │ ├── client-application │ │ └── requestapipermission.png │ ├── container-logo.svg │ ├── convert-data │ │ ├── acr-rbac.png │ │ └── acr-registration.png │ ├── devcontainers │ │ ├── devcontainer1.png │ │ ├── devcontainer2.png │ │ ├── devcontainer3.png │ │ └── devcontainer4.png │ ├── quickstart-oss-portal │ │ ├── deployment-custom-parameters.png │ │ └── deployment-page-oss.png │ └── resource-application │ │ ├── approles.png │ │ ├── portal-aad-new-app-registration.png │ │ ├── portal-aad-register-new-app-registration-APP-ROLES.png │ │ ├── portal-aad-register-new-app-registration-AUD-SCOPE.png │ │ └── portal-aad-register-new-app-registration-NAME.png ├── rest │ ├── Bug Repros │ │ └── Pagination Bug - 8-2024 │ │ │ ├── PaginationBug.http │ │ │ ├── PaginationBugData.json │ │ │ └── PaginationBugData2.json │ ├── BulkDelete.http │ ├── BulkUpdate.http │ ├── C4BB │ │ ├── C4BB.http │ │ ├── C4BBOverview.md │ │ ├── C4BB_Sample_Resources.http │ │ ├── Profiles │ │ │ ├── C4BBCoverage.json │ │ │ ├── C4BBEOBInpatientInstitutional.json │ │ │ ├── C4BBEOBOutpatientInstitutional.json │ │ │ ├── C4BBEOBPharmacy.json │ │ │ ├── C4BBEOBProfessional.json │ │ │ ├── C4BBOrganization.json │ │ │ ├── C4BBPatient.json │ │ │ └── C4BBPractitioner.json │ │ └── SearchParameters │ │ │ ├── EOBInsurer.json │ │ │ ├── EOBServiceDate.json │ │ │ └── EOBType.json │ ├── CompartmentSearchExamples.http │ ├── ComplexSQLQueryServiceRequest.http │ ├── ConditionalDeleteRequests.http │ ├── DaVinciFormulary │ │ ├── DaVinciFormulary.http │ │ ├── DaVinciFormulary_Overview.md │ │ ├── DaVinciFormulary_Sample_Resources.http │ │ ├── Profiles │ │ │ ├── DavinciCoveragePlan.json │ │ │ └── DavinciFormularyDrug.json │ │ └── SearchParameters │ │ │ ├── DaVinciDrugName.json │ │ │ ├── DaVinciDrugPlan.json │ │ │ └── DaVinciDrugTier.json │ ├── DaVinciPlanNet │ │ ├── DaVinci_PlanNet.http │ │ ├── DaVinci_PlanNet_Overview.md │ │ ├── DaVinci_PlanNet_Sample_Resources.http │ │ ├── Extensions │ │ │ ├── Accessibility.json │ │ │ ├── CommunicationProficiency.json │ │ │ ├── ContactPointAvailableTime.json │ │ │ ├── DeliveryMethod.json │ │ │ ├── EndpointUsecase.json │ │ │ ├── LocationReference.json │ │ │ ├── NetworkReference.json │ │ │ ├── NewPatients.json │ │ │ ├── OrgDescription.json │ │ │ ├── PractitionerQualification.json │ │ │ ├── Qualification.json │ │ │ └── ViaIntermediary.json │ │ ├── Profiles │ │ │ ├── Location.json │ │ │ └── Network.json │ │ └── SearchParameters │ │ │ ├── HealthcareServiceCoverageArea.json │ │ │ ├── InsurancePlanCoverageArea.json │ │ │ ├── InsurancePlanPlanType.json │ │ │ ├── OrganizationAffiliationNetwork.json │ │ │ ├── OrganizationCoverageArea.json │ │ │ └── PractitionerRoleNetwork.json │ ├── Data │ │ ├── BulkUpdateSampleData.json │ │ ├── BundleBatch.json │ │ ├── BundleForGets.json │ │ ├── BundleTransaction.json │ │ ├── CompositeCustomSearchParameter.json │ │ ├── CompositeCustomTokenStringSearchParameter.json │ │ ├── CustomSearchPatient.json │ │ ├── CustomSearchPatientsAdditional.json │ │ ├── CustomSearchSearchParameter.json │ │ ├── CustomSearchSearchParameter2.json │ │ ├── DateCustomSearchSearchParameter.json │ │ ├── DateCustomSearchSearchParameter2.json │ │ ├── ExportDataBatch.json │ │ ├── PatientAWithTokenOverflow.json │ │ ├── PatientBWithTokenOverflow.json │ │ ├── PatientCWithMaxNoTokenOverflow.json │ │ ├── PatientDWithShortNoTokenOverflow.json │ │ ├── R4ExamplePatient.json │ │ ├── ReindexObservation.json │ │ ├── ReindexPatient.json │ │ ├── ReindexSearchParameter.json │ │ ├── SMARTv2ScopesBundleTransaction.json │ │ ├── SearchDataBatch.json │ │ ├── SmartCompartmentResources.json │ │ └── StatusUpdateOperationData.json │ ├── ExportRequests.http │ ├── FhirPatchRequests.http │ ├── Import.http │ ├── Inferno │ │ ├── Inferno.http │ │ └── V3.1.1_USCoreCompliantResources.json │ ├── InvalidCustomSearchParameterHandling.http │ ├── JsonPatchRequests.http │ ├── PatientEverythingLinks.http │ ├── PayerDataExchange │ │ ├── PDex_Sample_Data.http │ │ ├── PayerDataExchangeOverview.md │ │ ├── USCore.http │ │ ├── US_Core_Profiles │ │ │ ├── AllergyIntolerance.json │ │ │ ├── CarePlan.json │ │ │ ├── CareTeam.json │ │ │ ├── Condition.json │ │ │ ├── DiagnosticReport-Lab.json │ │ │ ├── DiagnosticReport-Note.json │ │ │ ├── DocumentReference.json │ │ │ ├── Encounter.json │ │ │ ├── Goal.json │ │ │ ├── Immunization.json │ │ │ ├── Implantable-Device.json │ │ │ ├── Location.json │ │ │ ├── Medication.json │ │ │ ├── MedicationRequest.json │ │ │ ├── Observation-Lab.json │ │ │ ├── Organization.json │ │ │ ├── Patient.json │ │ │ ├── Practitioner.json │ │ │ ├── PractitionerRole.json │ │ │ ├── Procedure.json │ │ │ ├── Provenance.json │ │ │ ├── bodyheight.json │ │ │ ├── bodytemp.json │ │ │ ├── bodyweight.json │ │ │ ├── bp.json │ │ │ ├── headcircum.json │ │ │ ├── heartrate.json │ │ │ ├── pediatric-bmi-for-age.json │ │ │ ├── pediatric-weight-for-height.json │ │ │ ├── pulse-oximetry.json │ │ │ ├── resprate.json │ │ │ ├── smokingstatus.json │ │ │ └── vitalsign.json │ │ └── membermatch.http │ ├── Readme.md │ ├── ReindexFlowResourceBase.http │ ├── ReindexFlowTargettingResourceExtensions.http │ ├── ResourceSpecificDisableHistory.http │ ├── SMARTScopesExample.http │ ├── SMARTv2ScopesExample.http │ ├── SMARTv2ScopesWithSearchParametersExample.http │ ├── SearchExamples.http │ ├── SmartCompartmentRequests.http │ ├── TokenOverflowSearchExample.http │ ├── USCoreExamples.http │ ├── VersionedUpdateExample.http │ ├── binary-example.json │ ├── complexQueries.http │ ├── customSearchExample.http │ └── selectableSearchParameterExamples.http └── schema-manager.md ├── global.json ├── nuget.config ├── release ├── docker-compose.yaml └── scripts │ └── PowerShell │ ├── ConvertTo-FlattenedConfigurationHashtable.ps1 │ └── FhirServerRelease │ ├── FhirServerRelease.psd1 │ ├── FhirServerRelease.psm1 │ ├── Private │ ├── Grant-ClientAppDelegatedPermissions.ps1 │ ├── Set-FhirServerApiUsers.ps1 │ └── SharedModuleFunctions.ps1 │ └── Public │ ├── Add-AadTestAuthEnvironment.ps1 │ └── Remove-AadTestAuthEnvironment.ps1 ├── samples ├── apps │ └── SmartLauncher │ │ ├── Models │ │ └── SmartLauncherConfig.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── SmartLauncher.csproj │ │ ├── Startup.cs │ │ ├── appsettings.json │ │ └── wwwroot │ │ ├── index.html │ │ └── sampleapp │ │ ├── index.html │ │ └── launch.html ├── docker │ ├── README.md │ └── docker-compose.yaml ├── kubernetes │ ├── README.md │ ├── deploy-aks.sh │ └── helm │ │ └── fhir-server │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── azureidentity.yaml │ │ ├── azureidentitybinding.yaml │ │ ├── azuresqldatabase.yaml │ │ ├── azuresqlfirewallrule.yaml │ │ ├── azuresqlserver.yaml │ │ ├── cosmosdb.yaml │ │ ├── deployment.yaml │ │ ├── existingsqlserversecret.yaml │ │ ├── ingress.yaml │ │ ├── metricsservice.yaml │ │ ├── service.yaml │ │ ├── servicemonitor.yaml │ │ ├── sqlcontainerdeployment.yaml │ │ ├── sqlcontainerpvc.yaml │ │ ├── sqlcontainersecret.yaml │ │ └── sqlcontainerservice.yaml │ │ └── values.yaml ├── scripts │ ├── PowerShell │ │ └── FhirServer │ │ │ ├── FhirServer.psd1 │ │ │ ├── FhirServer.psm1 │ │ │ ├── Private │ │ │ └── .gitkeep │ │ │ └── Public │ │ │ ├── New-FhirServerApiApplicationRegistration.ps1 │ │ │ ├── New-FhirServerClientApplicationRegistration.ps1 │ │ │ ├── New-FhirServerSmartClientReplyUrl.ps1 │ │ │ ├── Remove-FhirServerApplicationRegistration.ps1 │ │ │ ├── Set-FhirServerApiApplicationRoles.ps1 │ │ │ ├── Set-FhirServerClientAppRoleAssignments.ps1 │ │ │ └── Set-FhirServerUserAppRoleAssignments.ps1 │ └── bash │ │ ├── create-aad-api-application-registration.sh │ │ └── create-aad-client-application-registration.sh └── templates │ ├── default-azuredeploy-docker.json │ ├── default-sqlServer.json │ ├── nsp-resource-association.json │ └── nsp-template.json ├── src ├── Microsoft.Health.Extensions.Xunit │ ├── AssemblyFixtureAttribute.cs │ ├── CustomXunitTestFramework.cs │ ├── CustomXunitTestFrameworkDiscoverer.cs │ ├── CustomXunitTestFrameworkExecutor.cs │ ├── FixtureArgumentSetsAttribute.cs │ ├── IClassFixtureExtensions.cs │ ├── Microsoft.Health.Extensions.Xunit.csproj │ ├── NotTest.cs │ ├── RetryFactAttribute.cs │ ├── RetryFactDiscoverer.cs │ ├── RetryTestCase.cs │ ├── RetryTheoryAttribute.cs │ ├── RetryTheoryDiscoverer.cs │ ├── SingleFlag.cs │ ├── TestClassWithFixtureArguments.cs │ └── TestClassWithFixtureArgumentsTypeInfo.cs ├── Microsoft.Health.Fhir.Api.OpenIddict │ ├── Configuration │ │ ├── DevelopmentIdentityProviderApplicationConfiguration.cs │ │ ├── DevelopmentIdentityProviderConfiguration.cs │ │ └── DevelopmentIdentityProviderUserConfiguration.cs │ ├── Controllers │ │ └── OpenIddictAuthorizationController.cs │ ├── Data │ │ └── ApplicationAuthDbContext.cs │ ├── Extensions │ │ └── DevelopmentIdentityProviderRegistrationExtensions.cs │ ├── FeatureProviders │ │ └── FhirControllerFeatureProvider.cs │ ├── Microsoft.Health.Fhir.Api.OpenIddict.csproj │ └── Services │ │ └── OpenIddictApplicationCreater.cs ├── Microsoft.Health.Fhir.Api.UnitTests │ └── Microsoft.Health.Fhir.R4.Api.UnitTests.csproj ├── Microsoft.Health.Fhir.Api │ ├── AssemblyInfo.cs │ ├── Configs │ │ ├── FeatureConfiguration.cs │ │ ├── FhirServerConfiguration.cs │ │ └── ThrottlingConfiguration.cs │ ├── Controllers │ │ ├── AadSmartOnFhirClaimsExtractor.cs │ │ ├── AadSmartOnFhirProxyAuditLoggingFilterAttribute.cs │ │ └── AadSmartOnFhirProxyController.cs │ ├── Extensions │ │ ├── ExceptionExtensions.cs │ │ └── HttpRequestExtensions.cs │ ├── Features │ │ ├── ActionResults │ │ │ ├── AadSmartOnFhirProxyFeatureFilterAttribute.cs │ │ │ ├── ExportResult.cs │ │ │ ├── IResourceActionResult.cs │ │ │ ├── ImportResult.cs │ │ │ ├── JobResult.cs │ │ │ ├── OperationOutcomeResult.cs │ │ │ ├── ResourceActionResult.cs │ │ │ └── TooManyRequestsActionResult.cs │ │ ├── AnonymousOperations │ │ │ └── FhirAnonymousOperationType.cs │ │ ├── ApiNotifications │ │ │ ├── ApiNotificationMiddleware.cs │ │ │ ├── ApiNotificationMiddlewareExtensions.cs │ │ │ └── ApiResponseNotification.cs │ │ ├── Audit │ │ │ └── AuditHelper.cs │ │ ├── BackgroundJobService │ │ │ ├── HostingBackgroundService.cs │ │ │ └── JobFactory.cs │ │ ├── Binders │ │ │ ├── DictionaryExpansionConfigurationProvider.cs │ │ │ ├── GenericConfigurationSource.cs │ │ │ ├── PartialDateTimeBinder.cs │ │ │ └── PartialDateTimeBinderProvider.cs │ │ ├── Bundle │ │ │ ├── BaseFhirTransactionException.cs │ │ │ ├── BundleHttpContextAccessor.cs │ │ │ ├── FhirTransactionCancelledException.cs │ │ │ ├── FhirTransactionFailedException.cs │ │ │ └── IBundleHttpContextAccessor.cs │ │ ├── ContentTypes │ │ │ └── KnownContentTypes.cs │ │ ├── Context │ │ │ ├── CorrelationIdProvider.cs │ │ │ ├── FhirAuthenticationExceptionHandlerMiddleware.cs │ │ │ ├── FhirRequestContextAfterAuthenticationMiddleware.cs │ │ │ ├── FhirRequestContextAuthenticationMiddlewareExtensions.cs │ │ │ ├── FhirRequestContextBeforeAuthenticationMiddleware.cs │ │ │ ├── FhirRequestContextMiddleware.cs │ │ │ └── FhirRequestContextMiddlewareExtensions.cs │ │ ├── ExceptionNotifications │ │ │ ├── ExceptionNotification.cs │ │ │ ├── ExceptionNotificationMiddleware.cs │ │ │ └── ExceptionNotificationMiddlewareExtensions.cs │ │ ├── Exceptions │ │ │ ├── AadSmartOnFhirProxyBadRequestException.cs │ │ │ ├── BundleEntryLimitExceededException.cs │ │ │ └── ProvenanceHeaderException.cs │ │ ├── Filters │ │ │ ├── AadSmartOnFhirProxyExceptionFilterAttribute.cs │ │ │ ├── QueryCacheFilterAttribute.cs │ │ │ ├── ValidateAsyncRequestFilterAttribute.cs │ │ │ ├── ValidateExportRequestFilterAttribute.cs │ │ │ ├── ValidateFormatParametersAttribute.cs │ │ │ ├── ValidateImportRequestFilterAttribute.cs │ │ │ ├── ValidateModelStateAttribute.cs │ │ │ ├── ValidateParametersResourceAttribute.cs │ │ │ ├── ValidateReindexRequestFilterAttribute.cs │ │ │ └── ValidateSearchParameterStateRequestAtrribute.cs │ │ ├── Formatters │ │ │ ├── IFormatParametersValidator.cs │ │ │ └── KnownMediaTypeHeaderValues.cs │ │ ├── Headers │ │ │ ├── HeaderDictionaryExtensions.cs │ │ │ ├── HttpContextExtensions.cs │ │ │ └── ResourceActionResultExtensions.cs │ │ ├── Health │ │ │ ├── IDatabaseStatusReporter.cs │ │ │ ├── ImproperBehaviorHealthCheck.cs │ │ │ └── StorageInitializedHealthCheck.cs │ │ ├── Operations │ │ │ └── Import │ │ │ │ ├── InitialImportLockMiddleware.cs │ │ │ │ └── InitialImportLockMiddlewareExtensions.cs │ │ ├── Resources │ │ │ └── ConditionalQueryProcessingLogic.cs │ │ ├── Routing │ │ │ ├── CompartmentResourceTypesRouteConstraint.cs │ │ │ ├── CompartmentTypesRouteConstraint.cs │ │ │ ├── ResourceTypesRouteConstraint.cs │ │ │ ├── SearchPostReroutingMiddleware.cs │ │ │ ├── ServerSideRequestForgeryException.cs │ │ │ └── UrlResolver.cs │ │ ├── SMART │ │ │ └── SmartClinicalScopesMiddleware.cs │ │ └── Throttling │ │ │ ├── ExcludedEndpoint.cs │ │ │ ├── ThrottlingMiddleware.cs │ │ │ └── ThrottlingMiddlewareExtensions.cs │ ├── Microsoft.Health.Fhir.Api.csproj │ ├── Models │ │ ├── CodePreviewModel.cs │ │ ├── HardDeleteModel.cs │ │ └── HistoryModel.cs │ ├── Modules │ │ ├── ApiNotificationModule.cs │ │ ├── AuditModule.cs │ │ └── SecurityModule.cs │ ├── Registration │ │ ├── FhirServerApplicationBuilderExtensions.cs │ │ └── FhirServerServiceCollectionExtensions.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ └── Views │ │ ├── Shared │ │ ├── ViewJson.cshtml │ │ └── _Layout.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml ├── Microsoft.Health.Fhir.Azure.UnitTests │ ├── AnonymizationConfigurationArtifactProviderTests.cs │ ├── Api │ │ └── SearchPostReroutingMiddlewareTests.cs │ ├── AssemblyValidationsTests.cs │ ├── ContainerRegistry │ │ └── AzureContainerRegistryAccessTokenProviderTests.cs │ ├── ExportDestinationClient │ │ ├── AzureAccessTokenClientInitializerTests.cs │ │ ├── AzureConnectionStringClientInitializerTests.cs │ │ └── AzureExportDestinationClientTests.cs │ ├── IntegrationDataStore │ │ └── AzureBlobIntegrationDataStoreClientTests.cs │ └── Microsoft.Health.Fhir.Azure.UnitTests.csproj ├── Microsoft.Health.Fhir.Azure │ ├── AnonymizationConfigurationArtifactProvider.cs │ ├── AssemblyInfo.cs │ ├── ContainerRegistry │ │ └── AzureContainerRegistryAccessTokenProvider.cs │ ├── ExportDestinationClient │ │ ├── AzureAccessTokenClientInitializer.cs │ │ ├── AzureConnectionStringClientInitializer.cs │ │ └── AzureExportDestinationClient.cs │ ├── FhirServerBuilderAzureRegistrationExtensions.cs │ ├── IntegrationDataStore │ │ ├── AzureAccessTokenClientInitializerV2.cs │ │ ├── AzureBlobIntegrationDataStoreClient.cs │ │ ├── AzureBlobSourceStream.cs │ │ ├── AzureConnectionStringClientInitializerV2.cs │ │ ├── IIntegrationDataStoreClientInitializer.cs │ │ └── IntegrationStoreRetryExceptionPolicyFactory.cs │ ├── Microsoft.Health.Fhir.Azure.csproj │ ├── Resources.Designer.cs │ └── Resources.resx ├── Microsoft.Health.Fhir.Core.UnitTests │ ├── AssemblyValidationsTests.cs │ ├── Config │ │ └── EncryptionConfigurationTests.cs │ ├── Extensions │ │ ├── CreateMockedScopeExtensions.cs │ │ ├── ElementValueExtensionsTests.cs │ │ ├── PreferHeaderExtensionsTests.cs │ │ └── XUnitLogger.cs │ ├── Features │ │ ├── Context │ │ │ ├── FhirRequestContextAccessorTests.cs │ │ │ ├── FhirServerInstanceConfigurationTests.cs │ │ │ └── FhirUserClaimParserTests.cs │ │ ├── Operations │ │ │ ├── BulkDelete │ │ │ │ ├── BulkDeleteOrchestratorJobTests.cs │ │ │ │ ├── BulkDeleteProcessingJobTests.cs │ │ │ │ ├── CancelBulkDeleteHandlerTests.cs │ │ │ │ ├── CreateBulkDeleteHandlerTests.cs │ │ │ │ └── GetBulkDeleteHandlerTests.cs │ │ │ ├── BulkUpdate │ │ │ │ ├── BulkUpdateOrchestratorJobTests.cs │ │ │ │ ├── BulkUpdateProcessingJobTests.cs │ │ │ │ ├── CancelBulkUpdateHandlerTests.cs │ │ │ │ ├── CreateBulkUpdateHandlerTests.cs │ │ │ │ ├── GetBulkUpdateHandlerTests.cs │ │ │ │ └── TestBulkUpdateOrchestratorJob.cs │ │ │ ├── Export │ │ │ │ ├── CancelExportRequestHandlerTests.cs │ │ │ │ ├── ExportFileManagerTests.cs │ │ │ │ ├── ExportJobRecordOutputConverterTests.cs │ │ │ │ ├── ExportJobTaskTests.cs │ │ │ │ ├── ExportProcessingJobTests.cs │ │ │ │ ├── GetExportRequestHandlerTests.cs │ │ │ │ └── InMemoryExportDestinationClient.cs │ │ │ ├── Import │ │ │ │ ├── CancelImportRequestHandlerTests.cs │ │ │ │ ├── GetImportRequestHandlerTests.cs │ │ │ │ └── ImportResourceLoaderTests.cs │ │ │ └── Reindex │ │ │ │ └── ReindexHandlerTests.cs │ │ ├── Persistence │ │ │ ├── DataStoreOperationIdentifierTests.cs │ │ │ └── WeakETagTests.cs │ │ ├── Search │ │ │ ├── ContinuationTokenEncoderTests.cs │ │ │ ├── DateTimeEqualityRewriterTests.cs │ │ │ ├── Expressions │ │ │ │ └── UnionExpressionTests.cs │ │ │ ├── InvalidSearchOperationExceptionTests.cs │ │ │ ├── Registry │ │ │ │ ├── SearchParameterCacheRefreshBackgroundServiceTests.cs │ │ │ │ ├── SearchParameterConcurrencyManagerTests.cs │ │ │ │ └── SearchParameterStatusManagerTests.cs │ │ │ ├── SearchOptionsTests.cs │ │ │ ├── SearchParameterInfoExtensionsTests.cs │ │ │ ├── SearchResultTests.cs │ │ │ ├── SearchValues │ │ │ │ ├── CompositeSearchValueTests.cs │ │ │ │ ├── DateTimeSearchValueTests.cs │ │ │ │ ├── NumberSearchValueTests.cs │ │ │ │ ├── QuantitySearchValueTests.cs │ │ │ │ ├── StringSearchValueTests.cs │ │ │ │ ├── TokenSearchValueTests.cs │ │ │ │ └── UriSearchValueTests.cs │ │ │ └── StringExtensionsTests.cs │ │ ├── Security │ │ │ ├── Authorization │ │ │ │ └── AuthorizationServiceExtensionsTests.cs │ │ │ ├── PrincipalClaimsExtractorTests.cs │ │ │ └── RoleLoaderTests.cs │ │ └── Storage │ │ │ └── FhirMemoryCacheTests.cs │ ├── Logging │ │ └── LongRunningOperationStatisticsTests.cs │ ├── Microsoft.Health.Fhir.Core.UnitTests.csproj │ ├── Models │ │ └── PartialDateTimeTests.cs │ ├── Registration │ │ └── FhirRuntimeConfigurationTests.cs │ └── TestFiles │ │ ├── ExportJobRecordV1.json │ │ └── ExportJobRecordV2.json ├── Microsoft.Health.Fhir.Core │ ├── Configs │ │ ├── ArtifactStoreConfiguration.cs │ │ ├── AuthenticationConfiguration.cs │ │ ├── AuthorizationConfiguration.cs │ │ ├── BulkDeleteJobConfiguration.cs │ │ ├── BulkUpdateJobConfiguration.cs │ │ ├── BundleConfiguration.cs │ │ ├── ConvertDataConfiguration.cs │ │ ├── CoreFeatureConfiguration.cs │ │ ├── CustomerManagedKeyEncryption.cs │ │ ├── EncryptionConfiguration.cs │ │ ├── EncryptionKeyIdentity.cs │ │ ├── ExportJobConfiguration.cs │ │ ├── ExportJobFormatConfiguration.cs │ │ ├── HostingBackgroundServiceQueueItem.cs │ │ ├── ImplementationGuidesConfiguration.cs │ │ ├── ImportJobConfiguration.cs │ │ ├── IntegrationDataStoreConfiguration.cs │ │ ├── OperationsConfiguration.cs │ │ ├── ReindexJobConfiguration.cs │ │ ├── ResourceManagerConfig.cs │ │ ├── SecurityConfiguration.cs │ │ ├── TaskHostingConfiguration.cs │ │ ├── TelemetryConfiguration.cs │ │ ├── TerminologyConfiguration.cs │ │ ├── USCoreConfiguration.cs │ │ ├── ValidateOperationConfiguration.cs │ │ └── VersioningConfiguration.cs │ ├── Data │ │ ├── DataLoader.cs │ │ ├── OperationDefinition │ │ │ ├── anonymized-export.json │ │ │ ├── bulk-delete-soft-deleted.json │ │ │ ├── bulk-delete.json │ │ │ ├── bulk-update.json │ │ │ ├── convert-data.json │ │ │ ├── docref.json │ │ │ ├── export.json │ │ │ ├── group-export.json │ │ │ ├── includes.json │ │ │ ├── member-match.json │ │ │ ├── patient-export.json │ │ │ ├── purge-history.json │ │ │ ├── reindex.json │ │ │ ├── resource-reindex.json │ │ │ ├── search-parameter-status.json │ │ │ └── valueset-expand.json │ │ ├── R4 │ │ │ ├── BaseCapabilities.json │ │ │ ├── compartment.json │ │ │ ├── resourcepath-codesystem-mappings.json │ │ │ ├── search-parameters.json │ │ │ └── unsupported-search-parameters.json │ │ ├── R4B │ │ │ ├── BaseCapabilities.json │ │ │ ├── compartment.json │ │ │ ├── resourcepath-codesystem-mappings.json │ │ │ ├── search-parameters.json │ │ │ └── unsupported-search-parameters.json │ │ ├── R5 │ │ │ ├── BaseCapabilities.json │ │ │ ├── compartment.json │ │ │ ├── resourcepath-codesystem-mappings.json │ │ │ ├── search-parameters.json │ │ │ └── unsupported-search-parameters.json │ │ └── Stu3 │ │ │ ├── BaseCapabilities.json │ │ │ ├── compartment.json │ │ │ ├── resourcepath-codesystem-mappings.json │ │ │ ├── search-parameters.json │ │ │ └── unsupported-search-parameters.json │ ├── Exceptions │ │ ├── CosmosDbRequestTimeoutException.cs │ │ ├── CustomerManagedKeyException.cs │ │ ├── EverythingOperationException.cs │ │ ├── FhirException.cs │ │ ├── IncompleteDeleteException.cs │ │ ├── IncompleteOperationException.cs │ │ ├── InitializationException.cs │ │ ├── InsufficientAccessException.cs │ │ ├── InvalidDefinitionException.cs │ │ ├── LoginFailedForUserException.cs │ │ ├── MemberMatchMatchingException.cs │ │ ├── MethodNotAllowedException.cs │ │ ├── MissingSearchIndicesException.cs │ │ ├── NotAcceptableException.cs │ │ ├── OpenIdConfigurationException.cs │ │ ├── PreconditionFailedException.cs │ │ ├── RequestEntityTooLargeException.cs │ │ ├── RequestNotValidException.cs │ │ ├── RequestTimeoutException.cs │ │ ├── RequestTooCostlyException.cs │ │ ├── ResourceGoneException.cs │ │ ├── ResourceNotFoundException.cs │ │ ├── ResourceSqlException.cs │ │ ├── ResourceSqlTruncateException.cs │ │ ├── SearchParameterTooComplexException.cs │ │ ├── SqlQueryPlanException.cs │ │ ├── TransactionDeadlockException.cs │ │ ├── TransactionFailureException.cs │ │ ├── UnauthorizedFhirActionException.cs │ │ └── UnsupportedConfigurationException.cs │ ├── Extensions │ │ ├── Clock.cs │ │ ├── ClockResolver.cs │ │ ├── CommonModelExtensions.cs │ │ ├── DateTimeOffsetExtensions.cs │ │ ├── ElementValueExtensions.cs │ │ ├── EnumExtensions.cs │ │ ├── EnumerableExtensions.cs │ │ ├── ExceptionExtensions.cs │ │ ├── ExportMediatorExtensions.cs │ │ ├── ExpressionExtensions.cs │ │ ├── IdHelper.cs │ │ ├── ImportMediatorExtensions.cs │ │ ├── PreferHeaderExtensions.cs │ │ ├── RawResourceElementExtensions.cs │ │ ├── RawResourceExtensions.cs │ │ ├── ResourceTypeExtensions.cs │ │ ├── SearchServiceExtensions.cs │ │ ├── ServiceCollectionExtensions.cs │ │ └── TypedElementExtensions.cs │ ├── Features │ │ ├── ArtifactStore │ │ │ └── OciArtifactInfo.cs │ │ ├── Audit │ │ │ ├── AuditLogger.cs │ │ │ └── IAuditLogger.cs │ │ ├── Compartment │ │ │ ├── ICompartmentIndexer.cs │ │ │ └── SearchCompartmentHandler.cs │ │ ├── Conformance │ │ │ ├── CapabilityQuery.cs │ │ │ ├── CapabilityStatementBuilder.cs │ │ │ ├── ConformanceProviderBase.cs │ │ │ ├── ConformanceProviderExtensions.cs │ │ │ ├── GetCapabilitiesHandler.cs │ │ │ ├── GetOperationVersionsHandler.cs │ │ │ ├── GetSmartConfigurationHandler.cs │ │ │ ├── ICapabilityStatementBuilder.cs │ │ │ ├── IConfiguredConformanceProvider.cs │ │ │ ├── IConformanceProvider.cs │ │ │ ├── IProvideCapability.cs │ │ │ ├── IRequireCapability.cs │ │ │ ├── ITerminologyServiceProxy.cs │ │ │ ├── ListedConformanceStatementExtensions.cs │ │ │ ├── Models │ │ │ │ ├── DefaultOptionHashSet.cs │ │ │ │ ├── IDefaultOption.cs │ │ │ │ ├── ListedCapabilityStatement.cs │ │ │ │ ├── ListedResourceComponent.cs │ │ │ │ ├── ListedRestComponent.cs │ │ │ │ ├── OperationComponent.cs │ │ │ │ ├── PropertyEqualityComparer.cs │ │ │ │ ├── ResourceInteractionComponent.cs │ │ │ │ ├── SearchParamComponent.cs │ │ │ │ ├── SecurityComponent.cs │ │ │ │ └── SoftwareComponent.cs │ │ │ ├── Serialization │ │ │ │ ├── CodingJsonConverter.cs │ │ │ │ ├── DefaultOptionHashSetJsonConverter.cs │ │ │ │ ├── EnumLiteralJsonConverter.cs │ │ │ │ └── ReferenceComponentConverter.cs │ │ │ ├── SystemConformanceProvider.cs │ │ │ └── TerminologyOperationParameterNames.cs │ │ ├── Context │ │ │ ├── AccessControlContext.cs │ │ │ ├── FhirRequestContext.cs │ │ │ ├── FhirRequestContextAccessor.cs │ │ │ ├── FhirServerInstanceConfiguration.cs │ │ │ ├── FhirUserClaimParser.cs │ │ │ ├── IFhirRequestContext.cs │ │ │ ├── IFhirServerInstanceConfiguration.cs │ │ │ ├── KeyValuePairComparer.cs │ │ │ └── ScopeRestriction.cs │ │ ├── Cors │ │ │ └── Constants.cs │ │ ├── Definition │ │ │ ├── BundleWrappers │ │ │ │ ├── BundleEntryWrapper.cs │ │ │ │ ├── BundleWrapper.cs │ │ │ │ └── SearchParameterWrapper.cs │ │ │ ├── CompartmentDefinitionManager.cs │ │ │ ├── CompartmentIndexer.cs │ │ │ ├── ICompartmentDefinitionManager.cs │ │ │ ├── ISearchParameterDefinitionManager.cs │ │ │ ├── ISupportedSearchParameterDefinitionManager.cs │ │ │ ├── SearchParameterDefinitionBuilder.cs │ │ │ ├── SearchParameterDefinitionManager.cs │ │ │ ├── SearchParameterDefinitionManagerExtensions.cs │ │ │ ├── SearchableSearchParameterDefinitionManager.cs │ │ │ ├── SupportedSearchParameterDefinitionManager.cs │ │ │ └── UnsupportedSearchParameters.cs │ │ ├── Health │ │ │ ├── FhirHealthErrorCode.cs │ │ │ └── ImproperBehaviorNotification.cs │ │ ├── KnownDataStores.cs │ │ ├── KnownHeaders.cs │ │ ├── KnownQueryParameterNames.cs │ │ ├── KnownUriSchemes.cs │ │ ├── Metrics │ │ │ ├── GeoReplicationLagNotification.cs │ │ │ └── IMetricsNotification.cs │ │ ├── Operations │ │ │ ├── AccessTokenProviderException.cs │ │ │ ├── AzureAccessTokenProvider.cs │ │ │ ├── BulkDelete │ │ │ │ ├── BulkDeleteDefinition.cs │ │ │ │ ├── BulkDeleteMediatorExtensions.cs │ │ │ │ ├── BulkDeleteOrchestratorJob.cs │ │ │ │ ├── BulkDeleteProcessingJob.cs │ │ │ │ ├── BulkDeleteResult.cs │ │ │ │ ├── Handlers │ │ │ │ │ ├── CancelBulkDeleteHandler.cs │ │ │ │ │ ├── CreateBulkDeleteHandler.cs │ │ │ │ │ └── GetBulkDeleteHandler.cs │ │ │ │ └── Messages │ │ │ │ │ ├── BulkDeleteMetricsNotification.cs │ │ │ │ │ ├── CancelBulkDeleteRequest.cs │ │ │ │ │ ├── CancelBulkDeleteResponse.cs │ │ │ │ │ ├── CreateBulkDeleteRequest.cs │ │ │ │ │ ├── CreateBulkDeleteResponse.cs │ │ │ │ │ ├── GetBulkDeleteRequest.cs │ │ │ │ │ └── GetBulkDeleteResponse.cs │ │ │ ├── BulkUpdate │ │ │ │ ├── BulkUpdateDefinition.cs │ │ │ │ ├── BulkUpdateMediatorExtensions.cs │ │ │ │ ├── BulkUpdateOrchestratorJob.cs │ │ │ │ ├── BulkUpdateProcessingJob.cs │ │ │ │ ├── BulkUpdateResult.cs │ │ │ │ ├── Handlers │ │ │ │ │ ├── CancelBulkUpdateHandler.cs │ │ │ │ │ ├── CreateBulkUpdateHandler.cs │ │ │ │ │ └── GetBulkUpdateHandler.cs │ │ │ │ └── Messages │ │ │ │ │ ├── BulkUpdateMetricsNotification.cs │ │ │ │ │ ├── CancelBulkUpdateRequest.cs │ │ │ │ │ ├── CancelBulkUpdateResponse.cs │ │ │ │ │ ├── CreateBulkUpdateRequest.cs │ │ │ │ │ ├── CreateBulkUpdateResponse.cs │ │ │ │ │ ├── GetBulkUpdateRequest.cs │ │ │ │ │ └── GetBulkUpdateResponse.cs │ │ │ ├── ConvertData │ │ │ │ ├── BaseContainerRegistryAccessValidator.cs │ │ │ │ ├── ContainerRegistryTemplateProvider.cs │ │ │ │ ├── ConvertDataEngine.cs │ │ │ │ ├── ConvertDataRequestHandler.cs │ │ │ │ ├── DefaultTemplateProvider.cs │ │ │ │ ├── FhirServerBuilderConvertDataRegistrationExtensions.cs │ │ │ │ ├── IContainerRegistryAccessValidator.cs │ │ │ │ ├── IContainerRegistryTokenProvider.cs │ │ │ │ ├── IConvertDataEngine.cs │ │ │ │ ├── IConvertDataTemplateProvider.cs │ │ │ │ ├── ITemplateProviderFactory.cs │ │ │ │ ├── Models │ │ │ │ │ ├── AzureContainerRegistryTokenException.cs │ │ │ │ │ ├── ContainerRegistryNotAuthorizedException.cs │ │ │ │ │ ├── ContainerRegistryNotConfiguredException.cs │ │ │ │ │ ├── ContainerRegistryNotFoundException.cs │ │ │ │ │ ├── ConvertDataFailedException.cs │ │ │ │ │ ├── ConvertDataProperties.cs │ │ │ │ │ ├── ConvertDataTimeoutException.cs │ │ │ │ │ ├── ConvertDataUnhandledException.cs │ │ │ │ │ ├── FetchTemplateCollectionFailedException.cs │ │ │ │ │ └── TemplateCollectionErrorException.cs │ │ │ │ └── TemplateProviderFactory.cs │ │ │ ├── Export │ │ │ │ ├── AnonymizationConfigurationFetchException.cs │ │ │ │ ├── AnonymizationConfigurationNotFoundException.cs │ │ │ │ ├── CancelExportRequestHandler.cs │ │ │ │ ├── CreateExportRequestHandler.cs │ │ │ │ ├── ExportDestinationClient │ │ │ │ │ ├── DestinationConnectionException.cs │ │ │ │ │ ├── ExportClientInitializerException.cs │ │ │ │ │ ├── IExportClientInitializer.cs │ │ │ │ │ └── IExportDestinationClient.cs │ │ │ │ ├── ExportFileManager.cs │ │ │ │ ├── ExportFormatTags.cs │ │ │ │ ├── ExportJobTask.cs │ │ │ │ ├── ExportJobType.cs │ │ │ │ ├── ExportProcessingJob.cs │ │ │ │ ├── ExportTaskMetricsNotification.cs │ │ │ │ ├── FailedToAnonymizeResourceException.cs │ │ │ │ ├── FailedToParseAnonymizationConfigurationException.cs │ │ │ │ ├── GetExportRequestHandler.cs │ │ │ │ ├── IAnonymizer.cs │ │ │ │ ├── IAnonymizerFactory.cs │ │ │ │ ├── IExportJobTask.cs │ │ │ │ ├── IGroupMemberExtractor.cs │ │ │ │ ├── ILegacyExportOperationDataStore.cs │ │ │ │ ├── IResourceToByteArraySerializer.cs │ │ │ │ ├── JobSegmentCompletedException.cs │ │ │ │ └── Models │ │ │ │ │ ├── ExportFileInfo.cs │ │ │ │ │ ├── ExportJobFilter.cs │ │ │ │ │ ├── ExportJobOutcome.cs │ │ │ │ │ ├── ExportJobProgress.cs │ │ │ │ │ ├── ExportJobRecord.cs │ │ │ │ │ ├── ExportJobRecordOutputConverter.cs │ │ │ │ │ ├── ExportJobResult.cs │ │ │ │ │ └── ExportOutputResponse.cs │ │ │ ├── FhirOperationDataStoreBase.cs │ │ │ ├── IAccessTokenProvider.cs │ │ │ ├── IArtifactProvider.cs │ │ │ ├── ICompressedRawResourceConverter.cs │ │ │ ├── IFhirOperationDataStore.cs │ │ │ ├── IIntegrationDataStoreClient.cs │ │ │ ├── IIntegrationDataStoreClientInitilizer.cs │ │ │ ├── IScopeProvider.cs │ │ │ ├── Import │ │ │ │ ├── CancelImportRequestHandler.cs │ │ │ │ ├── CreateImportRequestHandler.cs │ │ │ │ ├── GetImportRequestHandler.cs │ │ │ │ ├── IImportErrorSerializer.cs │ │ │ │ ├── IImportErrorStore.cs │ │ │ │ ├── IImportErrorStoreFactory.cs │ │ │ │ ├── IImportResourceLoader.cs │ │ │ │ ├── IImportResourceParser.cs │ │ │ │ ├── IImporter.cs │ │ │ │ ├── ImportError.cs │ │ │ │ ├── ImportErrorStore.cs │ │ │ │ ├── ImportErrorStoreFactory.cs │ │ │ │ ├── ImportFailedOperationOutcome.cs │ │ │ │ ├── ImportJobErrorResult.cs │ │ │ │ ├── ImportJobMetricsNotification.cs │ │ │ │ ├── ImportJobResult.cs │ │ │ │ ├── ImportMode.cs │ │ │ │ ├── ImportOperationOutcome.cs │ │ │ │ ├── ImportOrchestratorJobDefinition.cs │ │ │ │ ├── ImportOrchestratorJobResult.cs │ │ │ │ ├── ImportProcessingJobDefinition.cs │ │ │ │ ├── ImportProcessingJobResult.cs │ │ │ │ ├── ImportProcessingProgress.cs │ │ │ │ ├── ImportResource.cs │ │ │ │ ├── ImportResourceLoader.cs │ │ │ │ └── Models │ │ │ │ │ ├── ImportRequest.cs │ │ │ │ │ ├── ImportRequestStorageDetail.cs │ │ │ │ │ └── InputResource.cs │ │ │ ├── IntegrationDataStoreClientConstants.cs │ │ │ ├── IntegrationDataStoreClientInitializerException.cs │ │ │ ├── IntegrationDataStoreException.cs │ │ │ ├── JobConflictException.cs │ │ │ ├── JobFailureDetails.cs │ │ │ ├── JobNotFoundException.cs │ │ │ ├── JobRecord.cs │ │ │ ├── JobRecordProperties.cs │ │ │ ├── JobType.cs │ │ │ ├── OperationDefinitionRequestHandler.cs │ │ │ ├── OperationFailedException.cs │ │ │ ├── OperationNotImplementedException.cs │ │ │ ├── OperationStatus.cs │ │ │ ├── OperationStatusExtensions.cs │ │ │ ├── OperationsConstants.cs │ │ │ ├── QueueClientExtensions.cs │ │ │ ├── QueueType.cs │ │ │ ├── Reindex │ │ │ │ ├── CancelReindexRequestHandler.cs │ │ │ │ ├── CreateReindexRequestHandler.cs │ │ │ │ ├── GetReindexRequestHandler.cs │ │ │ │ ├── ILegacyReindexOperationDataStore.cs │ │ │ │ ├── Models │ │ │ │ │ ├── ReindexJobQueryResourceCountsConverter.cs │ │ │ │ │ ├── ReindexJobQueryStatus.cs │ │ │ │ │ ├── ReindexJobQueryStatusConverter.cs │ │ │ │ │ ├── ReindexJobRecord.cs │ │ │ │ │ └── ReindexJobWrapper.cs │ │ │ │ ├── ReindexJobException.cs │ │ │ │ ├── ReindexOrchestratorJob.cs │ │ │ │ ├── ReindexOrchestratorJobDefinition.cs │ │ │ │ ├── ReindexOrchestratorJobResult.cs │ │ │ │ ├── ReindexProcessingJob.cs │ │ │ │ ├── ReindexProcessingJobDefinition.cs │ │ │ │ ├── ReindexProcessingJobErrorResult.cs │ │ │ │ ├── ReindexProcessingJobResult.cs │ │ │ │ └── ReindexProcessingJobSoftException.cs │ │ │ ├── Resources │ │ │ │ └── Patch │ │ │ │ │ └── PatchPayload.cs │ │ │ ├── ScopeProvider.cs │ │ │ ├── ScopedComponent.cs │ │ │ ├── SearchParameterState │ │ │ │ └── SearchParameterStateProperties.cs │ │ │ ├── SmartConfigurationResult.cs │ │ │ ├── ThrottlingLimitDefault.cs │ │ │ ├── Validate │ │ │ │ ├── ValidateOperationHandler.cs │ │ │ │ └── ValidateResourceOperationValidator.cs │ │ │ └── Versions │ │ │ │ └── VersionsResult.cs │ │ ├── Parameters │ │ │ ├── IParameterStore.cs │ │ │ └── Parameter.cs │ │ ├── Persistence │ │ │ ├── BadRequestException.cs │ │ │ ├── CompartmentIndices.cs │ │ │ ├── DataStoreOperationIdentifier.cs │ │ │ ├── DataStoreOperationOutcome.cs │ │ │ ├── IBulkUpdateService.cs │ │ │ ├── IDeletionService.cs │ │ │ ├── IFhirDataStore.cs │ │ │ ├── IRawResourceFactory.cs │ │ │ ├── IResourceDeserializer.cs │ │ │ ├── IResourceSerializer.cs │ │ │ ├── IResourceWrapperFactory.cs │ │ │ ├── KnownResourceWrapperProperties.cs │ │ │ ├── MergeOptions.cs │ │ │ ├── Orchestration │ │ │ │ ├── BundleOrchestrator.cs │ │ │ │ ├── BundleOrchestratorException.cs │ │ │ │ ├── BundleOrchestratorNamingConventions.cs │ │ │ │ ├── BundleOrchestratorOperation.cs │ │ │ │ ├── BundleOrchestratorOperationStatus.cs │ │ │ │ ├── BundleOrchestratorOperationType.cs │ │ │ │ ├── IBundleOrchestrator.cs │ │ │ │ └── IBundleOrchestratorOperation.cs │ │ │ ├── PartialDataExtensions.cs │ │ │ ├── RawResource.cs │ │ │ ├── ResourceConflictException.cs │ │ │ ├── ResourceDeserializer.cs │ │ │ ├── ResourceIdProvider.cs │ │ │ ├── ResourceKey.cs │ │ │ ├── ResourceKey{T}.cs │ │ │ ├── ResourceRequest.cs │ │ │ ├── ResourceSerializer.cs │ │ │ ├── ResourceWrapper.cs │ │ │ ├── ResourceWrapperFactory.cs │ │ │ ├── ResourceWrapperOperation.cs │ │ │ ├── SaveOutcome.cs │ │ │ ├── SaveOutcomeType.cs │ │ │ ├── SoftDeletedFhirPathExtension.cs │ │ │ ├── UpsertOutcome.cs │ │ │ └── WeakETag.cs │ │ ├── ResourceNotSupportedException.cs │ │ ├── Resources │ │ │ └── Bundle │ │ │ │ ├── BundleMetricsNotification.cs │ │ │ │ └── BundleSubCallMetricData.cs │ │ ├── Routing │ │ │ ├── IQueryStringParser.cs │ │ │ ├── IUrlResolver.cs │ │ │ ├── KnownActionParameterNames.cs │ │ │ ├── KnownRoutes.cs │ │ │ └── RouteNames.cs │ │ ├── Search │ │ │ ├── Access │ │ │ │ └── ExpressionAccessControl.cs │ │ │ ├── CodeSystemResolver.cs │ │ │ ├── ConfigureCustomSearchException.cs │ │ │ ├── ContinuationTokenEncoder.cs │ │ │ ├── Converters │ │ │ │ ├── AddressToStringSearchValueConverter.cs │ │ │ │ ├── BooleanToTokenSearchValueConverter.cs │ │ │ │ ├── CanonicalToReferenceSearchValueConverter.cs │ │ │ │ ├── CanonicalToUriSearchValueConverter.cs │ │ │ │ ├── CodeToTokenSearchValueConverter.cs │ │ │ │ ├── CodeableConceptToTokenSearchValueConverter.cs │ │ │ │ ├── CodeableReferenceToReferenceSearchValueConverter.cs │ │ │ │ ├── CodeableReferenceToTokenSearchValueConverter.cs │ │ │ │ ├── CodingToTokenSearchValueConverter.cs │ │ │ │ ├── ContactPointToTokenSearchValueConverter.cs │ │ │ │ ├── DateToDateTimeSearchValueConverter.cs │ │ │ │ ├── DecimalToNumberSearchValueConverter.cs │ │ │ │ ├── FhirTypedElementToSearchValueConverterManager.cs │ │ │ │ ├── FhirTypedElementToSearchValueConverter{T}.cs │ │ │ │ ├── HumanNameToStringSearchValueConverter.cs │ │ │ │ ├── ITypedElementToSearchValueConverter.cs │ │ │ │ ├── ITypedElementToSearchValueConverterManager.cs │ │ │ │ ├── IdToReferenceSearchValueConverter.cs │ │ │ │ ├── IdToTokenSearchValueConverter.cs │ │ │ │ ├── IdentifierToStringSearchValueConverter.cs │ │ │ │ ├── IdentifierToTokenSearchValueConverter.cs │ │ │ │ ├── InstantToDateTimeSearchValueConverter.cs │ │ │ │ ├── IntegerToNumberSearchValueConverter.cs │ │ │ │ ├── MarkdownToStringSearchValueConverter.cs │ │ │ │ ├── MoneyToQuantitySearchValueConverter.cs │ │ │ │ ├── OidToUriSearchValueConverter.cs │ │ │ │ ├── PeriodToDateTimeSearchValueConverter.cs │ │ │ │ ├── QuantityToQuantitySearchValueConverter.cs │ │ │ │ ├── RangeToNumberSearchValueConverter.cs │ │ │ │ ├── RangeToQuantitySearchValueConverter.cs │ │ │ │ ├── ReferenceToUriSearchValueConverter.cs │ │ │ │ ├── ResourceReferenceToReferenceSearchValueConverter.cs │ │ │ │ ├── StringToStringSearchValueConverter.cs │ │ │ │ ├── StringToTokenSearchValueConverter.cs │ │ │ │ ├── TypedElementExtensions.cs │ │ │ │ ├── UriToReferenceSearchValueConverter.cs │ │ │ │ └── UriToUriSearchValueConverter.cs │ │ │ ├── DataResourceFilter.cs │ │ │ ├── Expressions │ │ │ │ ├── BinaryExpression.cs │ │ │ │ ├── BinaryOperator.cs │ │ │ │ ├── ChainedExpression.cs │ │ │ │ ├── CompartmentSearchExpression.cs │ │ │ │ ├── CompartmentSearchRewriter.cs │ │ │ │ ├── CosmosCompartmentSearchRewriter.cs │ │ │ │ ├── DateTimeEqualityRewriter.cs │ │ │ │ ├── DefaultExpressionVisitor.cs │ │ │ │ ├── Expression.cs │ │ │ │ ├── ExpressionExtensions.cs │ │ │ │ ├── ExpressionRewriter.cs │ │ │ │ ├── ExpressionRewriterWithInitialContext.cs │ │ │ │ ├── FieldName.cs │ │ │ │ ├── IExpressionVisitor.cs │ │ │ │ ├── IExpressionVisitorWithInitialContext.cs │ │ │ │ ├── IExpressionsContainer.cs │ │ │ │ ├── IFieldExpression.cs │ │ │ │ ├── InExpression.cs │ │ │ │ ├── IncludeExpression.cs │ │ │ │ ├── MissingFieldExpression.cs │ │ │ │ ├── MissingSearchParameterExpression.cs │ │ │ │ ├── MultiaryExpression.cs │ │ │ │ ├── MultiaryOperator.cs │ │ │ │ ├── NotExpression.cs │ │ │ │ ├── NotReferencedExpression.cs │ │ │ │ ├── Parsers │ │ │ │ │ ├── ExpressionParser.cs │ │ │ │ │ ├── IExpressionParser.cs │ │ │ │ │ ├── ISearchParameterExpressionParser.cs │ │ │ │ │ ├── SearchParameterExpressionParser.cs │ │ │ │ │ └── SearchValueExpressionBuilderHelper.cs │ │ │ │ ├── SearchParameterExpression.cs │ │ │ │ ├── SearchParameterExpressionBase.cs │ │ │ │ ├── SmartCompartmentSearchExpression.cs │ │ │ │ ├── SmartCompartmentSearchRewriter.cs │ │ │ │ ├── SortExpression.cs │ │ │ │ ├── SqlCompartmentSearchRewriter.cs │ │ │ │ ├── StringExpression.cs │ │ │ │ ├── StringOperator.cs │ │ │ │ ├── UnionExpression.cs │ │ │ │ └── UnionOperator.cs │ │ │ ├── FilterCriteriaException.cs │ │ │ ├── FilterCriteriaOutcome.cs │ │ │ ├── Filters │ │ │ │ ├── IFilterCriteria.cs │ │ │ │ └── MissingDataFilterCriteria.cs │ │ │ ├── IBundleFactory.cs │ │ │ ├── ICodeSystemResolver.cs │ │ │ ├── IDataResourceFilter.cs │ │ │ ├── IDataStoreSearchParameterValidator.cs │ │ │ ├── IReferenceToElementResolver.cs │ │ │ ├── ISearchIndexer.cs │ │ │ ├── ISearchOptionsFactory.cs │ │ │ ├── ISearchService.cs │ │ │ ├── ISortingValidator.cs │ │ │ ├── InvalidSearchOperationException.cs │ │ │ ├── LightweightReferenceToElementResolver.cs │ │ │ ├── Parameters │ │ │ │ ├── CreateOrUpdateSearchParameterBehavior.cs │ │ │ │ ├── DeleteSearchParameterBehavior.cs │ │ │ │ ├── ISearchParameterComparer.cs │ │ │ │ ├── ISearchParameterOperations.cs │ │ │ │ ├── ISearchParameterSupportResolver.cs │ │ │ │ └── SearchParameterOperations.cs │ │ │ ├── Registry │ │ │ │ ├── FilebasedSearchParameterStatusDataStore.cs │ │ │ │ ├── ISearchParameterStatusDataStore.cs │ │ │ │ ├── ISearchParameterStatusManager.cs │ │ │ │ ├── ResourceSearchParameterStatus.cs │ │ │ │ ├── SearchParameterCacheRefreshBackgroundService.cs │ │ │ │ ├── SearchParameterConcurrencyException.cs │ │ │ │ ├── SearchParameterConcurrencyManager.cs │ │ │ │ ├── SearchParameterStatus.cs │ │ │ │ └── SearchParameterStatusManager.cs │ │ │ ├── ResourceVersionType.cs │ │ │ ├── SearchIndexEntry.cs │ │ │ ├── SearchModifier.cs │ │ │ ├── SearchOperationNotSupportedException.cs │ │ │ ├── SearchOptions.cs │ │ │ ├── SearchParameterInfoExtensions.cs │ │ │ ├── SearchParameterNames.cs │ │ │ ├── SearchParameterNotSupportedException.cs │ │ │ ├── SearchResult.cs │ │ │ ├── SearchResultEntry.cs │ │ │ ├── SearchResultReindex.cs │ │ │ ├── SearchService.cs │ │ │ ├── SearchValues │ │ │ │ ├── ComparisonRange.cs │ │ │ │ ├── CompositeSearchValue.cs │ │ │ │ ├── DateTimeSearchValue.cs │ │ │ │ ├── IRangedComparable.cs │ │ │ │ ├── IReferenceSearchValueParser.cs │ │ │ │ ├── ISearchValue.cs │ │ │ │ ├── ISearchValueVisitor.cs │ │ │ │ ├── ISupportSortSearchValue.cs │ │ │ │ ├── NumberSearchValue.cs │ │ │ │ ├── QuantitySearchValue.cs │ │ │ │ ├── ReferenceKind.cs │ │ │ │ ├── ReferenceSearchValue.cs │ │ │ │ ├── ReferenceSearchValueParser.cs │ │ │ │ ├── StringSearchValue.cs │ │ │ │ ├── TokenSearchValue.cs │ │ │ │ └── UriSearchValue.cs │ │ │ ├── SortOrder.cs │ │ │ ├── StringExtensions.cs │ │ │ ├── TotalType.cs │ │ │ ├── TypedElementSearchIndexer.cs │ │ │ └── UnableToUpdateSearchParameterException.cs │ │ ├── Security │ │ │ ├── AuthenticationMode.cs │ │ │ ├── Authorization │ │ │ │ ├── AuthorizationServiceExtensions.cs │ │ │ │ ├── DisabledFhirAuthorizationService.cs │ │ │ │ ├── RoleBasedFhirAuthorizationService.cs │ │ │ │ └── SMARTScopeFhirAuthorizationService.cs │ │ │ ├── Constants.cs │ │ │ ├── DataActions.cs │ │ │ ├── PrincipalClaimsExtractor.cs │ │ │ ├── Role.cs │ │ │ ├── RoleLoader.cs │ │ │ └── roles.schema.json │ │ ├── Storage │ │ │ ├── FhirCacheLimitType.cs │ │ │ ├── FhirMemoryCache.cs │ │ │ ├── FhirMemoryCacheItemPriority.cs │ │ │ └── IFhirMemoryCache.cs │ │ ├── Telemetry │ │ │ ├── KnownApplicationInsightsDimensions.cs │ │ │ ├── KnownHttpRequestProperties.cs │ │ │ └── TelemetryProvider.cs │ │ ├── Validation │ │ │ ├── FhirPrimitiveTypes │ │ │ │ └── IdValidator.cs │ │ │ ├── FhirValidationFailure.cs │ │ │ ├── IModelAttributeValidator.cs │ │ │ ├── IProfileValidator.cs │ │ │ ├── ISupportedProfilesStore.cs │ │ │ ├── NarrativeValidator.cs │ │ │ ├── Narratives │ │ │ │ ├── INarrativeHtmlSanitizer.cs │ │ │ │ └── NarrativeHtmlSanitizer.cs │ │ │ ├── ResourceContentValidator.cs │ │ │ ├── ResourceElementValidator.cs │ │ │ ├── ResourceNotValidException.cs │ │ │ ├── ResourceProfileValidator.cs │ │ │ ├── ValidateBundlePreProcessor.cs │ │ │ ├── ValidateCapabilityPreProcessor.cs │ │ │ └── ValidateRequestPreProcessor.cs │ │ └── Version │ │ │ └── ProductVersionInfo.cs │ ├── Logging │ │ ├── BaseOperationStatistics.cs │ │ ├── LongRunningOperationStatistics.cs │ │ └── Metrics │ │ │ ├── BaseMeterMetricHandler.cs │ │ │ ├── BundleMetricNotification.cs │ │ │ ├── CrudMetricNotification.cs │ │ │ ├── DefaultBundleMetricHandler.cs │ │ │ ├── DefaultCrudMetricHandler.cs │ │ │ ├── DefaultFailureMetricHandler.cs │ │ │ ├── DefaultSearchMetricHandler.cs │ │ │ ├── ExceptionMetricNotification.cs │ │ │ ├── HttpErrorMetricNotification.cs │ │ │ ├── IBundleMetricHandler.cs │ │ │ ├── ICrudMetricHandler.cs │ │ │ ├── IExceptionMetricNotification.cs │ │ │ ├── IFailureMetricHandler.cs │ │ │ ├── IHttpFailureMetricNotification.cs │ │ │ ├── ILatencyMetricHandler.cs │ │ │ ├── ILatencyMetricNotification.cs │ │ │ ├── ISearchMetricHandler.cs │ │ │ └── SearchMetricNotification.cs │ ├── Messages │ │ ├── BulkImport │ │ │ ├── CancelImportRequest.cs │ │ │ ├── CancelImportResponse.cs │ │ │ ├── CreateImportRequest.cs │ │ │ ├── CreateImportResponse.cs │ │ │ ├── GetImportRequest.cs │ │ │ └── GetImportResponse.cs │ │ ├── Bundle │ │ │ ├── BaseBundleInnerRequest.cs │ │ │ ├── BundleRequest.cs │ │ │ ├── BundleResponse.cs │ │ │ ├── BundleResponseInfo.cs │ │ │ └── IBundleInnerRequest.cs │ │ ├── CapabilityStatement │ │ │ ├── RebuildCapabilityStatement.cs │ │ │ └── RebuildPart.cs │ │ ├── Conditional │ │ │ └── ConditionalResourceRequest.cs │ │ ├── Conformance │ │ │ ├── ExpandRequest.cs │ │ │ └── ExpandResponse.cs │ │ ├── ConvertData │ │ │ ├── ConvertDataRequest.cs │ │ │ └── ConvertDataResponse.cs │ │ ├── Create │ │ │ ├── ConditionalCreateResourceRequest.cs │ │ │ └── CreateResourceRequest.cs │ │ ├── Delete │ │ │ ├── ConditionalDeleteResourceRequest.cs │ │ │ ├── DeleteOperation.cs │ │ │ ├── DeleteResourceRequest.cs │ │ │ └── DeleteResourceResponse.cs │ │ ├── Everything │ │ │ ├── EverythingOperationRequest.cs │ │ │ └── EverythingOperationResponse.cs │ │ ├── Export │ │ │ ├── CancelExportRequest.cs │ │ │ ├── CancelExportResponse.cs │ │ │ ├── CreateExportRequest.cs │ │ │ ├── CreateExportResponse.cs │ │ │ ├── GetExportRequest.cs │ │ │ └── GetExportResponse.cs │ │ ├── Get │ │ │ ├── GetCapabilitiesRequest.cs │ │ │ ├── GetCapabilitiesResponse.cs │ │ │ ├── GetOperationVersionsRequest.cs │ │ │ ├── GetOperationVersionsResponse.cs │ │ │ ├── GetResourceRequest.cs │ │ │ ├── GetResourceResponse.cs │ │ │ ├── GetSmartConfigurationRequest.cs │ │ │ └── GetSmartConfigurationResponse.cs │ │ ├── MemberMatch │ │ │ ├── MemberMatchRequest.cs │ │ │ └── MemberMatchResponse.cs │ │ ├── Operation │ │ │ ├── OperationDefinitionRequest.cs │ │ │ ├── OperationDefinitionResponse.cs │ │ │ ├── ValidateOperationRequest.cs │ │ │ └── ValidateOperationResponse.cs │ │ ├── Patch │ │ │ ├── ConditionalPatchResourceRequest.cs │ │ │ └── PatchResourceRequest.cs │ │ ├── Reindex │ │ │ ├── CancelReindexRequest.cs │ │ │ ├── CancelReindexResponse.cs │ │ │ ├── CreateReindexRequest.cs │ │ │ ├── CreateReindexResponse.cs │ │ │ ├── GetReindexRequest.cs │ │ │ ├── GetReindexResponse.cs │ │ │ ├── ReindexSingleResourceRequest.cs │ │ │ ├── ReindexSingleResourceResponse.cs │ │ │ ├── UpdateReindexRequest.cs │ │ │ └── UpdateReindexResponse.cs │ │ ├── Search │ │ │ ├── SearchCompartmentRequest.cs │ │ │ ├── SearchCompartmentResponse.cs │ │ │ ├── SearchParameterDefinitionManagerInitialized.cs │ │ │ ├── SearchParametersInitializedNotification.cs │ │ │ ├── SearchParametersUpdatedNotification.cs │ │ │ ├── SearchResourceHistoryRequest.cs │ │ │ ├── SearchResourceHistoryResponse.cs │ │ │ ├── SearchResourceRequest.cs │ │ │ └── SearchResourceResponse.cs │ │ ├── SearchParameterState │ │ │ ├── SearchParameterStateRequest.cs │ │ │ ├── SearchParameterStateResponse.cs │ │ │ ├── SearchParameterStateUpdateRequest.cs │ │ │ └── SearchParameterStateUpdateResponse.cs │ │ ├── Storage │ │ │ └── StorageInitializedNotification.cs │ │ └── Upsert │ │ │ ├── ConditionalUpsertResourceRequest.cs │ │ │ ├── UpsertResourceRequest.cs │ │ │ └── UpsertResourceResponse.cs │ ├── Microsoft.Health.Fhir.Core.csproj │ ├── Models │ │ ├── BundleProcessingLogic.cs │ │ ├── BundleResourceContext.cs │ │ ├── BundleResourceContextComparer.cs │ │ ├── CodableConceptInfo.cs │ │ ├── FhirResourceFormat.cs │ │ ├── FhirSpecification.cs │ │ ├── IModelInfoProvider.cs │ │ ├── IResourceElement.cs │ │ ├── KnownCompartmentTypes.cs │ │ ├── KnownFhirPaths.cs │ │ ├── KnownResourceTypes.cs │ │ ├── ModelInfoProvider.cs │ │ ├── OperationOutcomeConstants.cs │ │ ├── OperationOutcomeIssue.cs │ │ ├── PartialDateTime.cs │ │ ├── RawResourceElement.cs │ │ ├── ReferenceComponent.cs │ │ ├── ResourceChangeData.cs │ │ ├── ResourceElement.cs │ │ ├── ResourceProperties.cs │ │ ├── SearchParameterComponentInfo.cs │ │ ├── SearchParameterInfo.cs │ │ ├── SortParameterStatus.cs │ │ └── VersionInfo.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Registration │ │ ├── AzureApiForFhirRuntimeConfiguration.cs │ │ ├── AzureHealthDataServicesRuntimeConfiguration.cs │ │ ├── IFhirRuntimeConfiguration.cs │ │ └── IFhirServerBuilder.cs │ ├── Resources.Designer.cs │ └── Resources.resx ├── Microsoft.Health.Fhir.CosmosDb.Core │ ├── Configs │ │ ├── CosmosCollectionConfiguration.cs │ │ ├── CosmosDataStoreConfiguration.cs │ │ ├── CosmosDataStoreParallelQueryOptions.cs │ │ └── CosmosDataStoreRetryOptions.cs │ ├── Constants.cs │ ├── Features │ │ └── Storage │ │ │ ├── CosmosClientExtensions.cs │ │ │ ├── ICollectionDataUpdater.cs │ │ │ ├── ICollectionInitializer.cs │ │ │ ├── ICollectionSetup.cs │ │ │ ├── ICosmosClientInitializer.cs │ │ │ ├── ICosmosClientTestProvider.cs │ │ │ ├── ICosmosDbDistributedLock.cs │ │ │ ├── ICosmosDbDistributedLockFactory.cs │ │ │ ├── KnownDocumentProperties.cs │ │ │ ├── StoreProcedures │ │ │ ├── IStoredProcedure.cs │ │ │ ├── IStoredProcedureInstaller.cs │ │ │ ├── IStoredProcedureMetadata.cs │ │ │ ├── StoredProcedureBase.cs │ │ │ └── StoredProcedureMetadataBase.cs │ │ │ ├── SystemData.cs │ │ │ └── Versioning │ │ │ ├── CollectionUpgradeManager.cs │ │ │ ├── CollectionVersion.cs │ │ │ └── IUpgradeManager.cs │ └── Microsoft.Health.Fhir.CosmosDb.Core.csproj ├── Microsoft.Health.Fhir.CosmosDb.Initialization.UnitTests │ ├── CosmosDbInitializationTests.cs │ └── Microsoft.Health.Fhir.CosmosDb.Initialization.UnitTests.csproj ├── Microsoft.Health.Fhir.CosmosDb.Initialization │ ├── Features │ │ └── Storage │ │ │ ├── CollectionInitializer.cs │ │ │ ├── DataPlaneCollectionSetup.cs │ │ │ ├── DefaultCollectionSetup.cs │ │ │ ├── ResourceManagerCollectionSetup.cs │ │ │ └── StoredProcedures │ │ │ ├── AcquireReindexJobs │ │ │ ├── AcquireReindexJobsMetadata.cs │ │ │ └── acquireReindexJobs.js │ │ │ ├── DataPlaneStoredProcedureInstaller.cs │ │ │ ├── HardDelete │ │ │ ├── HardDeleteMetadata.cs │ │ │ └── hardDelete.js │ │ │ ├── Replace │ │ │ ├── ReplaceSingleResourceMetadata.cs │ │ │ └── replaceSingleResource.js │ │ │ └── UpdateUnsupportedSearchParametersToUnsupported │ │ │ ├── UpdateUnsupportedSearchParameters.cs │ │ │ ├── UpdateUnsupportedSearchParametersMetadata.cs │ │ │ └── updateUnsupportedSearchParameters.js │ ├── Microsoft.Health.Fhir.CosmosDb.Initialization.csproj │ └── Registration │ │ └── DataPlaneCosmosDbRegistrationExtensions.cs ├── Microsoft.Health.Fhir.CosmosDb.UnitTests │ ├── AssemblyInfo.cs │ ├── AssemblyValidationsTests.cs │ ├── Features │ │ ├── Health │ │ │ ├── CosmosDbHealthCheckTests.cs │ │ │ ├── CosmosDbStatusReporterTests.cs │ │ │ └── TestCosmosDbHealthCheck.cs │ │ ├── Operations │ │ │ └── Export │ │ │ │ └── CosmosExportOrchestratorJobTests.cs │ │ └── Storage │ │ │ ├── CosmosFhirDataStoreTests.cs │ │ │ ├── CosmosResponseProcessorTests.cs │ │ │ ├── FhirCosmosClientInitializerTests.cs │ │ │ ├── Queues │ │ │ └── CosmosQueueClientTests.cs │ │ │ ├── Registry │ │ │ └── CosmosDbSearchParameterStatusInitializerTests.cs │ │ │ ├── Search │ │ │ ├── ResourceWrapperTests.cs │ │ │ ├── SearchIndexEntryJObjectGeneratorTests.cs │ │ │ └── SortValueJObjectGeneratorTests.cs │ │ │ ├── TestRequestHandler.cs │ │ │ └── Versioning │ │ │ ├── CollectionUpgradeManagerTests.cs │ │ │ └── DataPlaneCollectionSetupTests.cs │ └── Microsoft.Health.Fhir.CosmosDb.UnitTests.csproj ├── Microsoft.Health.Fhir.CosmosDb │ ├── AssemblyInfo.cs │ ├── Constants.cs │ ├── EventIds.cs │ ├── Features │ │ ├── Health │ │ │ ├── CosmosDbHealthCheck.cs │ │ │ └── CosmosDbStatusReporter.cs │ │ ├── Metrics │ │ │ └── CosmosStorageRequestMetricsNotification.cs │ │ ├── Operations │ │ │ ├── Export │ │ │ │ └── CosmosExportOrchestratorJob.cs │ │ │ └── PurgeOperationCapabilityProvider.cs │ │ ├── Queries │ │ │ ├── CosmosQuery.cs │ │ │ ├── CosmosQueryFactory.cs │ │ │ ├── CosmosQueryLogger.cs │ │ │ ├── ICosmosQuery.cs │ │ │ ├── ICosmosQueryLogger.cs │ │ │ ├── ICosmosResponseProcessor.cs │ │ │ ├── QueryHelper.cs │ │ │ └── QueryParameterManager.cs │ │ ├── Search │ │ │ ├── CosmosDbSearchParameterValidator.cs │ │ │ ├── CosmosDbSortingValidator.cs │ │ │ ├── FhirCosmosSearchService.cs │ │ │ ├── Queries │ │ │ │ ├── ExpressionQueryBuilder.cs │ │ │ │ ├── IQueryBuilder.cs │ │ │ │ ├── QueryBuilder.cs │ │ │ │ ├── QueryBuilderOptions.cs │ │ │ │ └── QueryProjection.cs │ │ │ └── SearchValueConstants.cs │ │ └── Storage │ │ │ ├── CosmosAccessTokenProviderFactory.cs │ │ │ ├── CosmosClientReadWriteTestProvider.cs │ │ │ ├── CosmosContainerProvider.cs │ │ │ ├── CosmosDbCollectionPhysicalPartitionInfo.cs │ │ │ ├── CosmosDbDistributedLock.cs │ │ │ ├── CosmosDbDistributedLockFactory.cs │ │ │ ├── CosmosDbHeaders.cs │ │ │ ├── CosmosDbLocalEmulator.cs │ │ │ ├── CosmosExceptionExtensions.cs │ │ │ ├── CosmosFhirDataStore.cs │ │ │ ├── CosmosParameterStore.cs │ │ │ ├── CosmosQueryContext.cs │ │ │ ├── CosmosResponseMessage.cs │ │ │ ├── CosmosResponseProcessor.cs │ │ │ ├── CosmosTransactionHandler.cs │ │ │ ├── FhirCosmosClientInitializer.cs │ │ │ ├── FhirCosmosResourceWrapper.cs │ │ │ ├── FhirCosmosResponseHandler.cs │ │ │ ├── ICosmosDbCollectionPhysicalPartitionInfo.cs │ │ │ ├── ICosmosQueryContext.cs │ │ │ ├── ICosmosQueryFactory.cs │ │ │ ├── KnownCosmosDbCmkSubStatusValue.cs │ │ │ ├── KnownCosmosDbCmkSubStatusValueClientIssue.cs │ │ │ ├── KnownCosmosDbCmkSubStatusValueServerSideIssue.cs │ │ │ ├── NonDisposingScope.cs │ │ │ ├── Operations │ │ │ ├── CosmosFhirOperationDataStore.cs │ │ │ ├── CosmosJobRecordWrapper.cs │ │ │ ├── LegacyExport │ │ │ │ ├── CosmosDbLegacyExportConstants.cs │ │ │ │ └── CosmosLegacyExportJobRecordWrapper.cs │ │ │ └── Reindex │ │ │ │ ├── CosmosDbReindexConstants.cs │ │ │ │ └── CosmosReindexJobRecordWrapper.cs │ │ │ ├── QueryPartitionStatistics.cs │ │ │ ├── Queues │ │ │ ├── CosmosQueueClient.cs │ │ │ ├── JobDefinitionWrapper.cs │ │ │ ├── JobGroupWrapper.cs │ │ │ └── JobInfoExtensions.cs │ │ │ ├── Registry │ │ │ ├── CosmosDbSearchParameterStatusDataStore.cs │ │ │ ├── CosmosDbSearchParameterStatusInitializer.cs │ │ │ ├── SearchParameterStatusExtensions.cs │ │ │ └── SearchParameterStatusWrapper.cs │ │ │ ├── ResourceKeyExtensions.cs │ │ │ ├── ResourceTypeAndId.cs │ │ │ ├── RetryExceptionPolicyFactory.cs │ │ │ ├── Search │ │ │ ├── SearchIndexEntryConverter.cs │ │ │ ├── SearchIndexEntryJObjectGenerator.cs │ │ │ ├── SortEntryConverter.cs │ │ │ └── SortValueJObjectGenerator.cs │ │ │ ├── SortValue.cs │ │ │ └── StoredProcedures │ │ │ ├── AcquireReindexJobs │ │ │ └── AcquireReindexJobs.cs │ │ │ ├── HardDelete │ │ │ └── HardDelete.cs │ │ │ └── Replace │ │ │ └── ReplaceSingleResource.cs │ ├── Microsoft.Health.Fhir.CosmosDb.csproj │ ├── Registration │ │ └── FhirServerBuilderCosmosDbRegistrationExtensions.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ └── StringExtensions.cs ├── Microsoft.Health.Fhir.R4.Api │ ├── AssemblyInfo.cs │ ├── Features │ │ └── Resources │ │ │ └── Bundle │ │ │ └── BundleHandler.cs │ └── Microsoft.Health.Fhir.R4.Api.csproj ├── Microsoft.Health.Fhir.R4.Client │ ├── AssemblyInfo.cs │ └── Microsoft.Health.Fhir.R4.Client.csproj ├── Microsoft.Health.Fhir.R4.Core.UnitTests │ ├── Features │ │ ├── Conformance │ │ │ └── ConformanceBuilderTests.cs │ │ └── Search │ │ │ └── Converters │ │ │ └── MoneyToQuantitySearchValueConverterTests.cs │ ├── Microsoft.Health.Fhir.R4.Core.UnitTests.csproj │ └── Operations │ │ └── Versions │ │ └── VersionSpecificTests.cs ├── Microsoft.Health.Fhir.R4.Core │ ├── AssemblyInfo.cs │ ├── Features │ │ └── Definition │ │ │ └── ComponentDefinitionExtensions.cs │ ├── Microsoft.Health.Fhir.R4.Core.csproj │ └── VersionSpecificModelInfoProvider.cs ├── Microsoft.Health.Fhir.R4.Web.UnitTests │ └── Microsoft.Health.Fhir.R4.Web.UnitTests.csproj ├── Microsoft.Health.Fhir.R4.Web │ ├── Microsoft.Health.Fhir.R4.Web.csproj │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── launchSettings.json │ └── runtimeconfig.template.json ├── Microsoft.Health.Fhir.R4B.Api.UnitTests │ └── Microsoft.Health.Fhir.R4B.Api.UnitTests.csproj ├── Microsoft.Health.Fhir.R4B.Api │ ├── AssemblyInfo.cs │ ├── Features │ │ └── Resources │ │ │ └── Bundle │ │ │ └── BundleHandler.cs │ └── Microsoft.Health.Fhir.R4B.Api.csproj ├── Microsoft.Health.Fhir.R4B.Client │ ├── AssemblyInfo.cs │ └── Microsoft.Health.Fhir.R4B.Client.csproj ├── Microsoft.Health.Fhir.R4B.Core.UnitTests │ ├── Microsoft.Health.Fhir.R4B.Core.UnitTests.csproj │ └── Operations │ │ └── Versions │ │ └── VersionSpecificTests.cs ├── Microsoft.Health.Fhir.R4B.Core │ ├── AssemblyInfo.cs │ ├── Microsoft.Health.Fhir.R4B.Core.csproj │ └── VersionSpecificModelInfoProvider.cs ├── Microsoft.Health.Fhir.R4B.Web.UnitTests │ └── Microsoft.Health.Fhir.R4B.Web.UnitTests.csproj ├── Microsoft.Health.Fhir.R4B.Web │ ├── Microsoft.Health.Fhir.R4B.Web.csproj │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── launchSettings.json │ └── runtimeconfig.template.json ├── Microsoft.Health.Fhir.R5.Api.UnitTests │ └── Microsoft.Health.Fhir.R5.Api.UnitTests.csproj ├── Microsoft.Health.Fhir.R5.Api │ ├── AssemblyInfo.cs │ ├── Features │ │ └── Resources │ │ │ └── Bundle │ │ │ └── BundleHandler.cs │ └── Microsoft.Health.Fhir.R5.Api.csproj ├── Microsoft.Health.Fhir.R5.Client │ ├── AssemblyInfo.cs │ └── Microsoft.Health.Fhir.R5.Client.csproj ├── Microsoft.Health.Fhir.R5.Core.UnitTests │ ├── Features │ │ ├── Conformance │ │ │ └── ConformanceBuilderTests.cs │ │ └── Search │ │ │ └── Converters │ │ │ └── MoneyToQuantitySearchValueConverterTests.cs │ ├── Microsoft.Health.Fhir.R5.Core.UnitTests.csproj │ └── Operations │ │ └── Versions │ │ └── VersionSpecificTests.cs ├── Microsoft.Health.Fhir.R5.Core │ ├── AssemblyInfo.cs │ ├── Extensions │ │ └── ResourceTypeExtensions.cs │ ├── Features │ │ └── Definition │ │ │ └── ComponentDefinitionExtensions.cs │ ├── Microsoft.Health.Fhir.R5.Core.csproj │ └── VersionSpecificModelInfoProvider.cs ├── Microsoft.Health.Fhir.R5.Web.UnitTests │ └── Microsoft.Health.Fhir.R5.Web.UnitTests.csproj ├── Microsoft.Health.Fhir.R5.Web │ ├── Microsoft.Health.Fhir.R5.Web.csproj │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── launchSettings.json │ └── runtimeconfig.template.json ├── Microsoft.Health.Fhir.SchemaManager.UnitTests │ ├── AssemblyValidationsTests.cs │ ├── FhirSchemaClientTests.cs │ └── Microsoft.Health.Fhir.SchemaManager.UnitTests.csproj ├── Microsoft.Health.Fhir.SchemaManager │ ├── ApplyCommand.cs │ ├── CommandCollectionExtensions.cs │ ├── CommandLineOptions.cs │ ├── CommandNames.cs │ ├── CommandOptions.cs │ ├── FhirBaseSchemaRunner.cs │ ├── FhirSchemaClient.cs │ ├── Microsoft.Health.Fhir.SchemaManager.csproj │ ├── MutuallyExclusiveOptionValidator.cs │ ├── OptionAliases.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ └── Resources.resx │ ├── README.md │ ├── SchemaManagerParserBuilder.cs │ └── SchemaManagerServiceCollectionBuilder.cs ├── Microsoft.Health.Fhir.Shared.Api.UnitTests │ ├── AssemblyInfo.cs │ ├── AssemblyValidationsTests.cs │ ├── Controllers │ │ ├── AadSmartOnFhirClaimsExtractorTests.cs │ │ ├── AadSmartOnFhirProxyControllerTests.cs │ │ ├── ConvertDataControllerTests.cs │ │ ├── DocRefControllerTests.cs │ │ ├── EverythingControllerTests.cs │ │ ├── ExportControllerTests.cs │ │ ├── FhirControllerTests.cs │ │ ├── ImportControllerTests.cs │ │ ├── MemberMatchControllerTests.cs │ │ ├── ReindexControllerTests.cs │ │ ├── SearchParameterControllerTests.cs │ │ ├── TerminologyControllerTests.cs │ │ ├── TestHttpMessageHandler.cs │ │ └── openid-configuration.json │ ├── Extensions │ │ └── HttpRequestExtensionsTests.cs │ ├── Features │ │ ├── ActionResults │ │ │ └── FhirResultTests.cs │ │ ├── ApiNotifications │ │ │ └── ApiNotificationMiddlewareTests.cs │ │ ├── Audit │ │ │ ├── AuditHelperTests.cs │ │ │ └── AuditLoggingFilterAttributeTests.cs │ │ ├── BackgroundJobService │ │ │ └── HostingBackgroundServiceTests.cs │ │ ├── Binders │ │ │ └── DictionaryExpansionConfigurationProviderTests.cs │ │ ├── Bundle │ │ │ └── FhirTransactionFailedExceptionTests.cs │ │ ├── Context │ │ │ ├── FhirAuthenticationExceptionHandlerMiddlewareTests.cs │ │ │ ├── FhirRequestContextAfterAuthenticationMiddlewareTests.cs │ │ │ ├── FhirRequestContextBeforeAuthenticationMiddlewareTests.cs │ │ │ └── FhirRequestContextMiddlewareTests.cs │ │ ├── Exceptions │ │ │ ├── BaseExceptionMiddlewareTests.cs │ │ │ └── ExceptionNotificationMiddlewareTests.cs │ │ ├── Filters │ │ │ ├── FhirRequestContextRouteDataPopulatingFilterAttributeTests.cs │ │ │ ├── FilterTestsHelper.cs │ │ │ ├── Metrics │ │ │ │ └── MetricEmitterAttributeTests.cs │ │ │ ├── OperationOutcomeExceptionFilterTests.cs │ │ │ ├── QueryLatencyOverEfficiencyFilterAttributeTests.cs │ │ │ ├── SearchParameterFilterAttributeTests.cs │ │ │ ├── ValidateBulkImportRequestFilterAttributeTests.cs │ │ │ ├── ValidateContentTypeFilterAttributeTests.cs │ │ │ ├── ValidateExportRequestFilterAttributeTests.cs │ │ │ ├── ValidateIdSegmentAttributeTests.cs │ │ │ ├── ValidateResourceIdFilterTests.cs │ │ │ └── ValidateResourceTypeFilterTests.cs │ │ ├── Formatters │ │ │ ├── FhirJsonInputFormatterTests.cs │ │ │ ├── FhirJsonOutputFormatterTests.cs │ │ │ ├── FhirXmlInputFormatterTests.cs │ │ │ ├── FhirXmlOutputFormatterTests.cs │ │ │ ├── FormatterConfigurationTests.cs │ │ │ ├── HttpContextExtensionsTests.cs │ │ │ └── JsonArrayPoolTests.cs │ │ ├── Headers │ │ │ ├── ExportResultExtensionsTests.cs │ │ │ ├── FhirResultExtensionsTests.cs │ │ │ ├── HttpContextExtensionsTests.cs │ │ │ └── ImportResultExtensionsTests.cs │ │ ├── Health │ │ │ └── StorageInitializedHealthCheckTests.cs │ │ ├── Operations │ │ │ ├── Import │ │ │ │ ├── ImportRequestExtensionsTests.cs │ │ │ │ └── InitialImportLockMiddlewareTests.cs │ │ │ └── OperationsCapabilityProviderTests.cs │ │ ├── Resources │ │ │ ├── Bundle │ │ │ │ ├── BundleHandlerEdgeCaseTests.cs │ │ │ │ ├── BundleHandlerRuntimeTests.cs │ │ │ │ ├── BundleHandlerStatisticsTests.cs │ │ │ │ ├── BundleHandlerTests.cs │ │ │ │ ├── BundleSerializerTests.cs │ │ │ │ ├── TransactionBundleValidatorTests.cs │ │ │ │ └── TransactionExceptionHandlerTests.cs │ │ │ └── ProfileResourcesBehaviourUnitTests.cs │ │ ├── Routing │ │ │ ├── CompartmentTypesRouteConstraintTests.cs │ │ │ ├── ResourceTypesRouteConstraintTests.cs │ │ │ ├── RouteTestBase.cs │ │ │ └── UrlResolverTests.cs │ │ ├── SMART │ │ │ └── SmartClinicalScopesMiddlewareTests.cs │ │ ├── Security │ │ │ └── RequestHandlerCheckAccessTests.cs │ │ └── Throttling │ │ │ └── ThrottlingMiddlewareTests.cs │ ├── Microsoft.Health.Fhir.Shared.Api.UnitTests.projitems │ └── Microsoft.Health.Fhir.Shared.Api.UnitTests.shproj ├── Microsoft.Health.Fhir.Shared.Api │ ├── Controllers │ │ ├── BulkDeleteController.cs │ │ ├── BulkUpdateController.cs │ │ ├── ConvertDataController.cs │ │ ├── DocRefController.cs │ │ ├── EverythingController.cs │ │ ├── ExportController.cs │ │ ├── FhirController.cs │ │ ├── ImportController.cs │ │ ├── IncludesController.cs │ │ ├── MemberMatchController.cs │ │ ├── OperationDefinitionController.cs │ │ ├── ReindexController.cs │ │ ├── SearchParameterController.cs │ │ ├── TerminologyController.cs │ │ └── ValidateController.cs │ ├── Extensions │ │ └── HttpRequestExtension.cs │ ├── Features │ │ ├── ActionConstraints │ │ │ └── ConditionalConstraintAttribute.cs │ │ ├── ActionResults │ │ │ ├── FhirResult.cs │ │ │ ├── MemberMatchResult.cs │ │ │ ├── OperationSmartConfigurationResult.cs │ │ │ └── OperationVersionsResult.cs │ │ ├── Exceptions │ │ │ ├── BaseExceptionMiddleware.cs │ │ │ └── BaseExceptionMiddlewareExtensions.cs │ │ ├── Filters │ │ │ ├── FhirRequestContextRouteDataPopulatingFilterAttribute.cs │ │ │ ├── Metrics │ │ │ │ ├── ActionExecutedStatistics.cs │ │ │ │ ├── BaseEndpointMetricEmitterAttribute.cs │ │ │ │ ├── BundleEndpointMetricEmitterAttribute.cs │ │ │ │ ├── CrudEndpointMetricEmitterAttribute.cs │ │ │ │ └── SearchEndpointMetricEmitterAttribute.cs │ │ │ ├── OperationOutcomeExceptionFilterAttribute.cs │ │ │ ├── ParameterCompatibleFilter.cs │ │ │ ├── QueryLatencyOverEfficiencyFilterAttribute.cs │ │ │ ├── SearchParameterFilterAttribute.cs │ │ │ ├── ValidateIdSegmentAttribute.cs │ │ │ ├── ValidateResourceIdFilterAttribute.cs │ │ │ ├── ValidateResourceTypeFilterAttribute.cs │ │ │ └── WeakETagBinder.cs │ │ ├── Formatters │ │ │ ├── FhirJsonInputFormatter.cs │ │ │ ├── FhirJsonOutputFormatter.cs │ │ │ ├── FhirXmlInputFormatter.cs │ │ │ ├── FhirXmlOutputFormatter.cs │ │ │ ├── FormatParametersValidator.cs │ │ │ ├── FormatterConfiguration.cs │ │ │ ├── FormatterExtensions.cs │ │ │ ├── HtmlOutputFormatter.cs │ │ │ ├── HttpContextExtensions.cs │ │ │ ├── JsonArrayPool.cs │ │ │ └── NonFhirResourceXmlOutputFormatter.cs │ │ ├── Headers │ │ │ └── FhirResultExtensions.cs │ │ ├── Operations │ │ │ ├── Import │ │ │ │ └── ImportRequestExtensions.cs │ │ │ ├── OperationsCapabilityProvider.cs │ │ │ └── ParametersExtensions.cs │ │ ├── Resources │ │ │ ├── Bundle │ │ │ │ ├── BundleHandler.cs │ │ │ │ ├── BundleHandlerParallelOperations.cs │ │ │ │ ├── BundleHandlerRuntime.cs │ │ │ │ ├── BundleHandlerStatistics.cs │ │ │ │ ├── BundleRouter.cs │ │ │ │ ├── BundleSerializer.cs │ │ │ │ ├── TransactionBundleValidator.cs │ │ │ │ └── TransactionExceptionHandler.cs │ │ │ ├── IProvenanceHeaderState.cs │ │ │ ├── ProfileResourcesBehaviour.cs │ │ │ ├── ProvenanceHeaderBehavior.cs │ │ │ └── ProvenanceHeaderState.cs │ │ ├── Routing │ │ │ └── QueryStringParser.cs │ │ └── Security │ │ │ └── SecurityProvider.cs │ ├── Microsoft.Health.Fhir.Shared.Api.projitems │ ├── Microsoft.Health.Fhir.Shared.Api.shproj │ ├── Modules │ │ ├── AnonymizationModule.cs │ │ ├── FeatureFlags │ │ │ ├── HtmlUi │ │ │ │ └── HtmlUiFeatureModule.cs │ │ │ ├── Validate │ │ │ │ ├── ValidateFeatureModule.cs │ │ │ │ └── ValidatePostConfigureOptions.cs │ │ │ └── XmlFormatter │ │ │ │ ├── XmlFormatterConfiguration.cs │ │ │ │ └── XmlFormatterFeatureModule.cs │ │ ├── FhirModule.cs │ │ ├── IdentityModule.cs │ │ ├── KnownAssemblies.cs │ │ ├── MediationModule.cs │ │ ├── MvcModule.cs │ │ ├── OperationsModule.cs │ │ ├── PersistenceModule.cs │ │ ├── SearchModule.cs │ │ ├── TerminologyModule.cs │ │ └── ValidationModule.cs │ └── Registration │ │ └── FhirServerServiceCollectionExtensions.cs ├── Microsoft.Health.Fhir.Shared.Client │ ├── FhirBundleOptions.cs │ ├── FhirBundleProcessingLogic.cs │ ├── FhirClient.cs │ ├── FhirClientException.cs │ ├── FhirClientExtensions.cs │ ├── FhirResponse.cs │ ├── FhirResponse{T}.cs │ ├── IFhirClient.cs │ ├── Microsoft.Health.Fhir.Shared.Client.projitems │ ├── Microsoft.Health.Fhir.Shared.Client.shproj │ ├── Resources.Designer.cs │ └── Resources.resx ├── Microsoft.Health.Fhir.Shared.Core.UnitTests │ ├── AssemblyInfo.cs │ ├── AssemblyValidationsTests.cs │ ├── Extensions │ │ └── KnowFhirPathsTests.cs │ ├── Features │ │ ├── Compartment │ │ │ ├── CompartmentIndexerTests.cs │ │ │ └── SearchCompartmentHandlerTests.cs │ │ ├── Conformance │ │ │ ├── ConformanceBuilderTests.cs │ │ │ ├── ConformanceProviderExtensionTests.cs │ │ │ ├── DefaultOptionHashSetJsonConverterTests.cs │ │ │ ├── DocRefRequestConverterTests.cs │ │ │ ├── EnumLiteralJsonConverterTests.cs │ │ │ ├── FirelyTerminologyServiceProxyTests.cs │ │ │ ├── GetSmartConfigurationHandlerTests.cs │ │ │ ├── ProfileReferenceConverterTests.cs │ │ │ └── TerminologyRequestHandlerTests.cs │ │ ├── Definition │ │ │ ├── CompartmentDefinitionManagerTests.cs │ │ │ └── SearchParameterDefinitionBuilderTests.cs │ │ ├── Operations │ │ │ ├── ConvertData │ │ │ │ ├── ContainerRegistryTemplateProviderTests.cs │ │ │ │ ├── ConvertDataEngineTests.cs │ │ │ │ ├── ConvertDataRequestHandlerTests.cs │ │ │ │ └── MockLogger.cs │ │ │ ├── Everything │ │ │ │ ├── EverythingOperationContinuationTokenTests.cs │ │ │ │ ├── EverythingOperationHandlerTests.cs │ │ │ │ └── PatientEverythingServiceTests.cs │ │ │ ├── Export │ │ │ │ ├── ExportAnonymizerFactoryTests.cs │ │ │ │ ├── ExportAnonymizerTests.cs │ │ │ │ ├── GroupMemberExtractorTests.cs │ │ │ │ └── ResourceToNdjsonBytesSerializerTests.cs │ │ │ ├── Import │ │ │ │ ├── ImportErrorSerializerTests.cs │ │ │ │ └── ImportResourceParserTests.cs │ │ │ ├── Reindex │ │ │ │ ├── ReindexOrchestratorJobTests.cs │ │ │ │ ├── ReindexProcessingJobTests.cs │ │ │ │ └── ReindexSingleResourceRequestHandlerTests.cs │ │ │ └── SearchParameterState │ │ │ │ ├── SearchParameterStateHandlerTests.cs │ │ │ │ └── SearchParameterStateUpdateHandlerTests.cs │ │ ├── Persistence │ │ │ ├── Orchestration │ │ │ │ ├── BundleOrchestratorOperationTests.cs │ │ │ │ ├── BundleOrchestratorTests.cs │ │ │ │ └── BundleTestsCommonFunctions.cs │ │ │ ├── RawResourceTests.cs │ │ │ ├── ResourceDeserializerTests.cs │ │ │ └── ResourceWrapperFactoryTests.cs │ │ ├── Resources │ │ │ ├── Create │ │ │ │ ├── ConditionalCreateResourceHandlerTests.cs │ │ │ │ └── CreateResourceValidatorTests.cs │ │ │ ├── Delete │ │ │ │ ├── ReferenceRemoverTests.cs │ │ │ │ └── RemoveReferenceTests.cs │ │ │ ├── Get │ │ │ │ └── GetResourceHandlerTests.cs │ │ │ ├── MemberMatch │ │ │ │ └── MemberMatchResourceValidatorTests.cs │ │ │ ├── Patch │ │ │ │ ├── ConditionalPatchResourceHandlerTests.cs │ │ │ │ ├── FhirPatchAddTests.cs │ │ │ │ ├── FhirPatchBuilderTests.cs │ │ │ │ ├── FhirPatchDeleteTests.cs │ │ │ │ ├── FhirPatchInsertTests.cs │ │ │ │ ├── FhirPatchMoveTests.cs │ │ │ │ ├── FhirPatchReplaceTests.cs │ │ │ │ ├── FhirPatchTypeTests.cs │ │ │ │ └── PatchResourceHandlerTests.cs │ │ │ ├── ResourceExtensionsTests.cs │ │ │ ├── ResourceHandlerTests.cs │ │ │ ├── ResourceHandlerTests_ConditionalCreate.cs │ │ │ ├── ResourceHandlerTests_ConditionalDelete.cs │ │ │ ├── ResourceHandlerTests_ConditionalUpsert.cs │ │ │ ├── ResourceReferenceResolverTests.cs │ │ │ └── Upsert │ │ │ │ ├── BulkUpdateServiceTests.cs │ │ │ │ ├── ConditionalUpsertResourceHandlerTests.cs │ │ │ │ └── UpsertResourceValidatorTests.cs │ │ ├── Search │ │ │ ├── Behaviors │ │ │ │ └── ListSearchBehaviorTests.cs │ │ │ ├── BundleFactoryTests.cs │ │ │ ├── Converters │ │ │ │ ├── AddressToStringSearchValueConverterTests.cs │ │ │ │ ├── BooleanToBooleanSearchValueConverterTests.cs │ │ │ │ ├── CanonicalToUriSearchValueConverterTests.cs │ │ │ │ ├── CodeOfTToTokenSearchValueConverterTests.cs │ │ │ │ ├── CodeToTokenSearchValueConverterTests.cs │ │ │ │ ├── CodeableConceptToTokenSearchValueConverterTests.cs │ │ │ │ ├── CodingToTokenSearchValueConverterTests.cs │ │ │ │ ├── ContactPointToTokenSearchValueConverterTests.cs │ │ │ │ ├── DateTimeToDateTimeSearchValueConverterTests.cs │ │ │ │ ├── DateToDateTimeSearchValueConverterTests.cs │ │ │ │ ├── DecimalToDecimalSearchValueConverterTests.cs │ │ │ │ ├── FhirInstanceToSearchValueConverterTests.cs │ │ │ │ ├── FhirTypedElementToSearchValueConverterTests.cs │ │ │ │ ├── HumanNameToStringSearchValueConverterTests.cs │ │ │ │ ├── IdToTokenSearchValueConverterTests.cs │ │ │ │ ├── IdentifierToTokenSearchValueConverterTests.cs │ │ │ │ ├── InstantToDateTimeSearchValueConverterTests.cs │ │ │ │ ├── IntegerToNumberSearchValueConverterTests.cs │ │ │ │ ├── MarkdownToStringSearchValueConverterTests.cs │ │ │ │ ├── OidToUriSearchValueConverterTests.cs │ │ │ │ ├── PeriodToDateTimeSearchValueConverterTests.cs │ │ │ │ ├── PositiveIntToNumberSearchValueConverterTests.cs │ │ │ │ ├── QuantityToQuantitySearchValueConverterTests.cs │ │ │ │ ├── RangeToNumberSearchValueConverterTests.cs │ │ │ │ ├── RangeToQuantitySearchValueConverterTests.cs │ │ │ │ ├── ReferenceToUriSearchValueConverterTests.cs │ │ │ │ ├── ResourceReferenceToReferenceSearchValueConverterTests.cs │ │ │ │ ├── StringToStringSearchValueConverterTests.cs │ │ │ │ ├── StringToTokenSearchValueConverterTests.cs │ │ │ │ ├── UnsignedIntToNumberSearchValueConverterTests.cs │ │ │ │ └── UriToUriSearchValueConverterTests.cs │ │ │ ├── DataResourceFilterTests.cs │ │ │ ├── Expressions │ │ │ │ ├── ExpressionRewriterTests.cs │ │ │ │ ├── ExpressionToStringTests.cs │ │ │ │ └── Parsers │ │ │ │ │ ├── ExpressionParserTests.cs │ │ │ │ │ └── SearchValueExpressionBuilderTests.cs │ │ │ ├── ExtensionToDateTimeSearchValueConverterTests.cs │ │ │ ├── ExtensionToNumberSearchValueConverterTests.cs │ │ │ ├── ExtensionToQuantitySearchValueConverterTests.cs │ │ │ ├── ExtensionToReferenceSearchValueConverterTests.cs │ │ │ ├── ExtensionToStringSearchValueConverterTests.cs │ │ │ ├── ExtensionToTokenSearchValueConverterTests.cs │ │ │ ├── ExtensionToUriSearchValueConverterTests.cs │ │ │ ├── Filters │ │ │ │ └── MissingDataFilterCriteriaTests.cs │ │ │ ├── LightweightReferenceToElementResolverTests.cs │ │ │ ├── SearchExpressionTestHelper.cs │ │ │ ├── SearchOptionsFactoryTests.cs │ │ │ ├── SearchParameters │ │ │ │ ├── SearchConverterForAllSearchTypes.cs │ │ │ │ ├── SearchParameterBehaviorTests.cs │ │ │ │ ├── SearchParameterComparerTests.cs │ │ │ │ ├── SearchParameterDefinitionManagerTests.cs │ │ │ │ ├── SearchParameterFixtureData.cs │ │ │ │ ├── SearchParameterSupportResolverTests.cs │ │ │ │ ├── SearchParameterToTypeResolverTests.cs │ │ │ │ └── SearchParameterValidatorTests.cs │ │ │ ├── SearchResourceHandlerTests.cs │ │ │ ├── SearchResourceHistoryHandlerTests.cs │ │ │ ├── SearchServiceTests.cs │ │ │ ├── SearchValues │ │ │ │ ├── ReferenceSearchValueParserTests.cs │ │ │ │ └── ReferenceSearchValueTests.cs │ │ │ ├── TypedElementSearchIndexerTests.cs │ │ │ └── USCoreTestHelper.cs │ │ ├── Security │ │ │ └── Authorization │ │ │ │ └── RoleBasedFhirAuthorizationServiceTests.cs │ │ └── Validation │ │ │ ├── FhirPrimitiveTypes │ │ │ ├── AttributeValidatorTests.cs │ │ │ └── IdValidatorTests.cs │ │ │ ├── Narratives │ │ │ ├── NarrativeDataTestBase.cs │ │ │ ├── NarrativeHtmlSanitizerTests.cs │ │ │ └── NarrativeValidatorTests.cs │ │ │ ├── ProfileValidatorTests.cs │ │ │ ├── ResourceProfileValidatorTests.cs │ │ │ ├── ValidateCapabilityPreProcessorTests.cs │ │ │ └── ValidateRequestPreProcessorTests.cs │ ├── Microsoft.Health.Fhir.Shared.Core.UnitTests.projitems │ ├── Microsoft.Health.Fhir.Shared.Core.UnitTests.shproj │ ├── Models │ │ └── BundleResourceContextComparerTests.cs │ └── TestFiles │ │ ├── USCoreMissinData-JsonCompliantSamples.json │ │ ├── USCoreMissinData-JsonNonCompliantSamples.json │ │ ├── USCoreMissinData-XmlCompliantSamples.xml │ │ └── USCoreMissinData-XmlNonCompliantSamples.xml ├── Microsoft.Health.Fhir.Shared.Core │ ├── Extensions │ │ ├── FhirMediatorExtensions.cs │ │ ├── ModelExtensions.cs │ │ ├── OperationDefinitionMediatorExtensions.cs │ │ ├── ReindexJobRecordExtensions.cs │ │ ├── ReindexMediatorExtensions.cs │ │ ├── ResourceTypeExtensions.cs │ │ └── ResourceWrapperFactoryExtensions.cs │ ├── Features │ │ ├── Conformance │ │ │ ├── DocRefRequestConverter.cs │ │ │ ├── FirelyTerminologyServiceProxy.cs │ │ │ ├── IDocRefRequestConverter.cs │ │ │ └── TerminologyRequestHandler.cs │ │ ├── DefaultParserSettings.cs │ │ ├── Operations │ │ │ ├── Everything │ │ │ │ ├── EverythingOperationContinuationToken.cs │ │ │ │ ├── EverythingOperationHandler.cs │ │ │ │ ├── EverythingOperationParameterNames.cs │ │ │ │ ├── IPatientEverythingService.cs │ │ │ │ └── PatientEverythingService.cs │ │ │ ├── Export │ │ │ │ ├── GroupMemberExtractor.cs │ │ │ │ └── ResourceToNdjsonBytesSerializer.cs │ │ │ ├── Import │ │ │ │ ├── ImportErrorSerializer.cs │ │ │ │ └── ImportResourceParser.cs │ │ │ ├── MemberMatch │ │ │ │ ├── FhirServerBuilderMemberMatchRegistrationExtensions.cs │ │ │ │ ├── IMemberMatchService.cs │ │ │ │ ├── MemberMatchHandler.cs │ │ │ │ └── MemberMatchService.cs │ │ │ ├── Reindex │ │ │ │ └── ReindexSingleResourceRequestHandler.cs │ │ │ └── SearchParameterState │ │ │ │ ├── SearchParameterInfoEqualityComparer.cs │ │ │ │ ├── SearchParameterStateHandler.cs │ │ │ │ └── SearchParameterStateUpdateHandler.cs │ │ ├── Persistence │ │ │ └── RawResourceFactory.cs │ │ ├── Resources │ │ │ ├── BaseResourceHandler.cs │ │ │ ├── ConditionalResourceHandler.cs │ │ │ ├── Create │ │ │ │ ├── ConditionalCreateResourceHandler.cs │ │ │ │ ├── ConditionalCreateResourceValidator.cs │ │ │ │ ├── CreateResourceHandler.cs │ │ │ │ └── CreateResourceValidator.cs │ │ │ ├── Delete │ │ │ │ ├── ConditionalDeleteResourceHandler.cs │ │ │ │ ├── ConditionalDeleteResourceValidator.cs │ │ │ │ ├── DeleteResourceHandler.cs │ │ │ │ ├── DeleteResourceValidator.cs │ │ │ │ ├── DeletionService.cs │ │ │ │ └── ReferenceRemover.cs │ │ │ ├── Get │ │ │ │ ├── GetResourceHandler.cs │ │ │ │ └── GetResourceValidator.cs │ │ │ ├── MemberMatch │ │ │ │ └── MemberMatchResourceValidator.cs │ │ │ ├── Patch │ │ │ │ ├── ConditionalPatchResourceHandler.cs │ │ │ │ ├── FhirPathPatch │ │ │ │ │ ├── FhirPathPatchBuilder.cs │ │ │ │ │ ├── Helpers │ │ │ │ │ │ ├── ElementModelExtensions.cs │ │ │ │ │ │ └── FhirParametersExtensions.cs │ │ │ │ │ └── Operations │ │ │ │ │ │ ├── OperationAdd.cs │ │ │ │ │ │ ├── OperationBase.cs │ │ │ │ │ │ ├── OperationDelete.cs │ │ │ │ │ │ ├── OperationInsert.cs │ │ │ │ │ │ ├── OperationMove.cs │ │ │ │ │ │ ├── OperationReplace.cs │ │ │ │ │ │ ├── OperationUpsert.cs │ │ │ │ │ │ ├── PatchOperationType.cs │ │ │ │ │ │ └── PendingOperation.cs │ │ │ │ ├── FhirPathPatchPayload.cs │ │ │ │ ├── JsonPatchPayload.cs │ │ │ │ └── PatchResourceHandler.cs │ │ │ ├── ResourceExtensions.cs │ │ │ ├── ResourceReferenceResolver.cs │ │ │ └── Upsert │ │ │ │ ├── BulkUpdateService.cs │ │ │ │ ├── ConditionalUpsertResourceHandler.cs │ │ │ │ ├── ConditionalUpsertResourceValidator.cs │ │ │ │ ├── UpsertResourceHandler.cs │ │ │ │ └── UpsertResourceValidator.cs │ │ ├── Search │ │ │ ├── Behaviors │ │ │ │ └── ListSearchPipeBehavior.cs │ │ │ ├── BundleFactory.cs │ │ │ ├── Parameters │ │ │ │ ├── ISearchParameterValidator.cs │ │ │ │ ├── PropertyMappingExtensions.cs │ │ │ │ ├── SearchParameterComparer.cs │ │ │ │ ├── SearchParameterSupportResolver.cs │ │ │ │ ├── SearchParameterToTypeResolver.cs │ │ │ │ ├── SearchParameterTypeResult.cs │ │ │ │ └── SearchParameterValidator.cs │ │ │ ├── RawBundleEntryComponent.cs │ │ │ ├── SearchOptionsFactory.cs │ │ │ ├── SearchResourceHandler.cs │ │ │ └── SearchResourceHistoryHandler.cs │ │ └── Validation │ │ │ ├── IProvideProfilesForValidation.cs │ │ │ ├── ModelAttributeValidator.cs │ │ │ ├── ProfileValidator.cs │ │ │ └── ServerProvideProfileValidation.cs │ ├── FhirExtensions.cs │ ├── Microsoft.Health.Fhir.Shared.Core.projitems │ ├── Microsoft.Health.Fhir.Shared.Core.shproj │ ├── Operations │ │ └── Export │ │ │ ├── ExportAnonymizer.cs │ │ │ └── ExportAnonymizerFactory.cs │ └── VersionSpecificModelInfoProvider.cs ├── Microsoft.Health.Fhir.Shared.Tests │ ├── AssemblyValidationsTests.cs │ ├── Context │ │ ├── DefaultFhirRequestContext.cs │ │ └── FhirRequestContextExtensions.cs │ ├── Definitions.cs │ ├── Deserializers.cs │ ├── HttpFhirUtility.cs │ ├── Microsoft.Health.Fhir.Shared.Tests.Common.shproj │ ├── Microsoft.Health.Fhir.Shared.Tests.projitems │ ├── Mocks │ │ └── CapabilityStatementMock.cs │ ├── Samples.cs │ ├── Search │ │ └── SearchValueValidationHelper.cs │ └── SetModelInfoProviderAssemblyFixture.cs ├── Microsoft.Health.Fhir.Shared.Web.UnitTests │ ├── AzureMonitorOpenTelemetryLogEnricherTests.cs │ ├── Microsoft.Health.Fhir.Shared.Web.UnitTests.projitems │ ├── Microsoft.Health.Fhir.Shared.Web.UnitTests.shproj │ └── StartupTests.cs ├── Microsoft.Health.Fhir.Shared.Web │ ├── AzureMonitorOpenTelemetryLogEnricher.cs │ ├── CloudRoleNameTelemetryInitializer.cs │ ├── DummyMeterFactory.cs │ ├── Microsoft.Health.Fhir.Shared.Web.projitems │ ├── Microsoft.Health.Fhir.Shared.Web.shproj │ ├── Program.cs │ ├── PrometheusMetricsApplicationBuilderExtensions.cs │ ├── PrometheusMetricsConfig.cs │ ├── PrometheusMetricsServer.cs │ ├── PrometheusMetricsServicesCollectionExtensions.cs │ ├── Startup.cs │ ├── UserAgentHeaderTelemetryInitializer.cs │ ├── appsettings.Development.json │ ├── appsettings.json │ └── roles.json ├── Microsoft.Health.Fhir.SqlServer.UnitTests │ ├── AssemblyValidationsTests.cs │ ├── Features │ │ ├── ChangeFeed │ │ │ └── SqlServerFhirResourceChangeDataStoreTests.cs │ │ ├── Health │ │ │ └── SqlStatusReporterTest.cs │ │ ├── Operations │ │ │ ├── Export │ │ │ │ └── SqlExportOrchestratorJobTests.cs │ │ │ └── Import │ │ │ │ ├── ImportOrchestratorJobTests.cs │ │ │ │ └── ImportProcessingJobTests.cs │ │ ├── Search │ │ │ ├── CustomQueriesUnitTests.cs │ │ │ ├── Expressions │ │ │ │ ├── FlatteningRewriterTests.cs │ │ │ │ ├── IncludeRewriterTests.cs │ │ │ │ ├── LastUpdatedToResourceSurrogateIdRewriterTests.cs │ │ │ │ ├── MissingSearchParamVisitorTests.cs │ │ │ │ ├── NotExpressionRewriterTests.cs │ │ │ │ ├── PartitionEliminationRewriterTests.cs │ │ │ │ ├── RemoveIncludesRewriterTests.cs │ │ │ │ ├── ResourceColumnPredicatePushdownRewriterTests.cs │ │ │ │ ├── SearchParamTableExpressionReordererTests.cs │ │ │ │ ├── SqlServerSortingValidatorTests.cs │ │ │ │ ├── TypeConstraintVisitorTests.cs │ │ │ │ └── UntypedReferenceRewriterTests.cs │ │ │ ├── HashingSqlQueryParameterManagerTests.cs │ │ │ ├── SqlCommandSimplifierTests.cs │ │ │ ├── SqlQueryGeneratorTests.cs │ │ │ ├── SqlServerSearchServiceOptimizationTests.cs │ │ │ └── SqlSesrverSearchParameterValidatorTests.cs │ │ └── Storage │ │ │ ├── CompressedRawResourceConverterTests.cs │ │ │ ├── SqlExceptionActionProcessorTests.cs │ │ │ └── SqlExceptionExtensionsTests.cs │ ├── Microsoft.Health.Fhir.SqlServer.UnitTests.csproj │ └── ResourceSurrogateIdHelperTests.cs ├── Microsoft.Health.Fhir.SqlServer │ ├── AssemblyInfo.cs │ ├── Features │ │ ├── ChangeFeed │ │ │ └── SqlServerFhirResourceChangeDataStore.cs │ │ ├── ExceptionExtension.cs │ │ ├── Health │ │ │ ├── SqlStatusReporter.cs │ │ │ └── SqlStatusReporterConstants.cs │ │ ├── Operations │ │ │ ├── Export │ │ │ │ └── SqlExportOrchestratorJob.cs │ │ │ ├── Import │ │ │ │ ├── ImportOrchestratorJob.cs │ │ │ │ ├── ImportProcessingJob.cs │ │ │ │ └── SqlImporter.cs │ │ │ └── PurgeOperationCapabilityProvider.cs │ │ ├── Schema │ │ │ ├── Migrations │ │ │ │ ├── 10.diff.sql │ │ │ │ ├── 100.diff.sql │ │ │ │ ├── 100.sql │ │ │ │ ├── 101.diff.sql │ │ │ │ ├── 101.sql │ │ │ │ ├── 11.diff.sql │ │ │ │ ├── 12.diff.sql │ │ │ │ ├── 13.diff.sql │ │ │ │ ├── 14.diff.sql │ │ │ │ ├── 15.diff.sql │ │ │ │ ├── 16.diff.sql │ │ │ │ ├── 17.diff.sql │ │ │ │ ├── 18.diff.sql │ │ │ │ ├── 19.diff.sql │ │ │ │ ├── 2.diff.sql │ │ │ │ ├── 20.diff.sql │ │ │ │ ├── 21.diff.sql │ │ │ │ ├── 22.diff.sql │ │ │ │ ├── 23.diff.sql │ │ │ │ ├── 24.diff.sql │ │ │ │ ├── 25.diff.sql │ │ │ │ ├── 26.diff.sql │ │ │ │ ├── 27.diff.sql │ │ │ │ ├── 28.diff.sql │ │ │ │ ├── 29.diff.sql │ │ │ │ ├── 3.diff.sql │ │ │ │ ├── 30.diff.sql │ │ │ │ ├── 31.diff.sql │ │ │ │ ├── 32.diff.sql │ │ │ │ ├── 33.diff.sql │ │ │ │ ├── 34.diff.sql │ │ │ │ ├── 35.diff.sql │ │ │ │ ├── 36.diff.sql │ │ │ │ ├── 37.diff.sql │ │ │ │ ├── 38.diff.sql │ │ │ │ ├── 39.diff.sql │ │ │ │ ├── 4.diff.sql │ │ │ │ ├── 40.diff.sql │ │ │ │ ├── 41.diff.sql │ │ │ │ ├── 42.diff.sql │ │ │ │ ├── 43.diff.sql │ │ │ │ ├── 44.diff.sql │ │ │ │ ├── 45.diff.sql │ │ │ │ ├── 46.diff.sql │ │ │ │ ├── 47.diff.sql │ │ │ │ ├── 48.diff.sql │ │ │ │ ├── 49.diff.sql │ │ │ │ ├── 5.diff.sql │ │ │ │ ├── 50.diff.sql │ │ │ │ ├── 51.diff.sql │ │ │ │ ├── 52.diff.sql │ │ │ │ ├── 53.diff.sql │ │ │ │ ├── 54.diff.sql │ │ │ │ ├── 55.diff.sql │ │ │ │ ├── 56.diff.sql │ │ │ │ ├── 57.diff.sql │ │ │ │ ├── 58.diff.sql │ │ │ │ ├── 59.diff.sql │ │ │ │ ├── 6.diff.sql │ │ │ │ ├── 60.diff.sql │ │ │ │ ├── 60.sql │ │ │ │ ├── 61.diff.sql │ │ │ │ ├── 61.sql │ │ │ │ ├── 62.diff.sql │ │ │ │ ├── 62.sql │ │ │ │ ├── 63.diff.sql │ │ │ │ ├── 63.sql │ │ │ │ ├── 64.diff.sql │ │ │ │ ├── 64.sql │ │ │ │ ├── 65.diff.sql │ │ │ │ ├── 65.sql │ │ │ │ ├── 66.diff.sql │ │ │ │ ├── 66.sql │ │ │ │ ├── 67.diff.sql │ │ │ │ ├── 67.sql │ │ │ │ ├── 68.diff.sql │ │ │ │ ├── 68.sql │ │ │ │ ├── 69.diff.sql │ │ │ │ ├── 69.sql │ │ │ │ ├── 7.diff.sql │ │ │ │ ├── 70.diff.sql │ │ │ │ ├── 70.sql │ │ │ │ ├── 71.diff.sql │ │ │ │ ├── 71.sql │ │ │ │ ├── 72.diff.sql │ │ │ │ ├── 72.sql │ │ │ │ ├── 73.diff.sql │ │ │ │ ├── 73.sql │ │ │ │ ├── 74.diff.sql │ │ │ │ ├── 74.sql │ │ │ │ ├── 75.diff.sql │ │ │ │ ├── 75.sql │ │ │ │ ├── 76.diff.sql │ │ │ │ ├── 76.sql │ │ │ │ ├── 77.diff.sql │ │ │ │ ├── 77.sql │ │ │ │ ├── 78.diff.sql │ │ │ │ ├── 78.sql │ │ │ │ ├── 79.diff.sql │ │ │ │ ├── 79.sql │ │ │ │ ├── 8.diff.sql │ │ │ │ ├── 80.diff.sql │ │ │ │ ├── 80.sql │ │ │ │ ├── 81.diff.sql │ │ │ │ ├── 81.sql │ │ │ │ ├── 82.diff.sql │ │ │ │ ├── 82.sql │ │ │ │ ├── 83.diff.sql │ │ │ │ ├── 83.sql │ │ │ │ ├── 84.diff.sql │ │ │ │ ├── 84.sql │ │ │ │ ├── 85.diff.sql │ │ │ │ ├── 85.sql │ │ │ │ ├── 86.diff.sql │ │ │ │ ├── 86.sql │ │ │ │ ├── 87.diff.sql │ │ │ │ ├── 87.sql │ │ │ │ ├── 88.diff.sql │ │ │ │ ├── 88.sql │ │ │ │ ├── 89.diff.sql │ │ │ │ ├── 89.sql │ │ │ │ ├── 9.diff.sql │ │ │ │ ├── 90.diff.sql │ │ │ │ ├── 90.sql │ │ │ │ ├── 91.diff.sql │ │ │ │ ├── 91.sql │ │ │ │ ├── 92.diff.sql │ │ │ │ ├── 92.sql │ │ │ │ ├── 93.diff.sql │ │ │ │ ├── 93.sql │ │ │ │ ├── 94.diff.sql │ │ │ │ ├── 94.sql │ │ │ │ ├── 95.diff.sql │ │ │ │ ├── 95.sql │ │ │ │ ├── 96.diff.sql │ │ │ │ ├── 96.sql │ │ │ │ ├── 97.diff.sql │ │ │ │ ├── 97.sql │ │ │ │ ├── 98.diff.sql │ │ │ │ ├── 98.sql │ │ │ │ ├── 99.diff.sql │ │ │ │ └── 99.sql │ │ │ ├── Model │ │ │ │ └── .gitignore │ │ │ ├── SchemaVersion.cs │ │ │ ├── SchemaVersionConstants.cs │ │ │ └── Sql │ │ │ │ ├── Scripts │ │ │ │ ├── Functions.sql │ │ │ │ ├── Sequences.sql │ │ │ │ └── TransactionCheckWithInitialiScript.sql │ │ │ │ ├── Sprocs │ │ │ │ ├── AcquireReindexJobs.sql │ │ │ │ ├── AcquireWatchdogLease.sql │ │ │ │ ├── AddPartitionOnResourceChanges.sql │ │ │ │ ├── ArchiveJobs.sql │ │ │ │ ├── CaptureResourceChanges.sql │ │ │ │ ├── CaptureResourceIdsForChanges.sql │ │ │ │ ├── CheckActiveReindexJobs.sql │ │ │ │ ├── CleanupEventLog.sql │ │ │ │ ├── ConfigurePartitionOnResourceChanges.sql │ │ │ │ ├── CreateReindexJob.sql │ │ │ │ ├── CreateResourceSearchParamStats.sql │ │ │ │ ├── Defrag.sql │ │ │ │ ├── DefragChangeDatabaseSettings.sql │ │ │ │ ├── DefragGetFragmentation.sql │ │ │ │ ├── DeleteHistory.sql │ │ │ │ ├── DequeueJob.sql │ │ │ │ ├── DisableIndex.sql │ │ │ │ ├── DisableIndexes.sql │ │ │ │ ├── EnqueueJobs.sql │ │ │ │ ├── ExecuteCommandForRebuildIndexes.sql │ │ │ │ ├── FetchEventAgentCheckpoint.sql │ │ │ │ ├── FetchResourceChanges_3.sql │ │ │ │ ├── GetActiveJobs.sql │ │ │ │ ├── GetCommandsForRebuildIndexes.sql │ │ │ │ ├── GetGeoReplicationLag.sql │ │ │ │ ├── GetIndexCommands.sql │ │ │ │ ├── GetJobs.sql │ │ │ │ ├── GetPartitionedTables.sql │ │ │ │ ├── GetReindexJobById.sql │ │ │ │ ├── GetResourceSearchParamStats.sql │ │ │ │ ├── GetResourceSurrogateIdRanges.sql │ │ │ │ ├── GetResourceVersions.sql │ │ │ │ ├── GetResources.sql │ │ │ │ ├── GetResourcesByTransactionId.sql │ │ │ │ ├── GetResourcesByTypeAndSurrogateIdRange.sql │ │ │ │ ├── GetSearchParamMaxLastUpdated.sql │ │ │ │ ├── GetSearchParamStatuses.sql │ │ │ │ ├── GetTransactions.sql │ │ │ │ ├── GetUsedResourceTypes.sql │ │ │ │ ├── HardDeleteResource.sql │ │ │ │ ├── InitializeIndexProperties.sql │ │ │ │ ├── LogEvent.sql │ │ │ │ ├── LogSchemaMigrationProgress.sql │ │ │ │ ├── MergeResources.sql │ │ │ │ ├── MergeResourcesAdvanceTransactionVisibility.sql │ │ │ │ ├── MergeResourcesBeginTransaction.sql │ │ │ │ ├── MergeResourcesCommitTransaction.sql │ │ │ │ ├── MergeResourcesDeleteInvisibleHistory.sql │ │ │ │ ├── MergeResourcesGetTimeoutTransactions.sql │ │ │ │ ├── MergeResourcesGetTransactionVisibility.sql │ │ │ │ ├── MergeResourcesPutTransactionHeartbeat.sql │ │ │ │ ├── MergeResourcesPutTransactionInvisibleHistory.sql │ │ │ │ ├── PutJobCancelation.sql │ │ │ │ ├── PutJobHeartbeat.sql │ │ │ │ ├── PutJobStatus.sql │ │ │ │ ├── RemovePartitionFromResourceChanges_2.sql │ │ │ │ ├── SwitchPartitionsIn.sql │ │ │ │ ├── SwitchPartitionsInAllTables.sql │ │ │ │ ├── SwitchPartitionsOut.sql │ │ │ │ ├── SwitchPartitionsOutAllTables.sql │ │ │ │ ├── UnitTestHelper.sql │ │ │ │ ├── UpdateEventAgentCheckpoint.sql │ │ │ │ ├── UpdateReindexJob.sql │ │ │ │ ├── UpdateResourceSearchParams.sql │ │ │ │ ├── UpsertSearchParams.sql │ │ │ │ └── UpsertSearchParamsWithOptimisticConcurrency.sql │ │ │ │ ├── Tables │ │ │ │ ├── ClaimType.sql │ │ │ │ ├── CompartmentAssignment.sql │ │ │ │ ├── CompartmentType.sql │ │ │ │ ├── DateTimeSearchParam.sql │ │ │ │ ├── EventAgentCheckpoint.sql │ │ │ │ ├── EventLog.sql │ │ │ │ ├── IndexProperties.sql │ │ │ │ ├── JobQueue.sql │ │ │ │ ├── NumberSearchParam.sql │ │ │ │ ├── Parameters.sql │ │ │ │ ├── QuantityCode.sql │ │ │ │ ├── QuantitySearchParam.sql │ │ │ │ ├── ReferenceSearchParam.sql │ │ │ │ ├── ReferenceTokenCompositeSearchParam.sql │ │ │ │ ├── ReindexJob.sql │ │ │ │ ├── Resource.sql │ │ │ │ ├── ResourceChangeData.sql │ │ │ │ ├── ResourceChangeDataStaging.sql │ │ │ │ ├── ResourceChangeType.sql │ │ │ │ ├── ResourceType.sql │ │ │ │ ├── ResourceWriteClaim.sql │ │ │ │ ├── SchemaMigrationProgress.sql │ │ │ │ ├── SearchParam.sql │ │ │ │ ├── StringSearchParam.sql │ │ │ │ ├── System.sql │ │ │ │ ├── TaskInfo.sql │ │ │ │ ├── TokenDateTimeCompositeSearchParam.sql │ │ │ │ ├── TokenNumberNumberCompositeSearchParam.sql │ │ │ │ ├── TokenQuantityCompositeSearchParam.sql │ │ │ │ ├── TokenSearchParam.sql │ │ │ │ ├── TokenStringCompositeSearchParam.sql │ │ │ │ ├── TokenText.sql │ │ │ │ ├── TokenTokenCompositeSearchParam.sql │ │ │ │ ├── Transactions.sql │ │ │ │ ├── UriSearchParam.sql │ │ │ │ └── WatchdogLeases.sql │ │ │ │ ├── Types │ │ │ │ ├── BigintList.sql │ │ │ │ ├── DateTimeSearchParamList.sql │ │ │ │ ├── NumberSearchParamList.sql │ │ │ │ ├── QuantitySearchParamList.sql │ │ │ │ ├── ReferenceSearchParamList.sql │ │ │ │ ├── ReferenceTokenCompositeSearchParamList.sql │ │ │ │ ├── ResourceDateKeyList.sql │ │ │ │ ├── ResourceKeyList.sql │ │ │ │ ├── ResourceList.sql │ │ │ │ ├── ResourceWriteClaimList.sql │ │ │ │ ├── SearchParamList.sql │ │ │ │ ├── StringList.sql │ │ │ │ ├── StringSearchParamList.sql │ │ │ │ ├── TokenDateTimeCompositeSearchParamList.sql │ │ │ │ ├── TokenNumberNumberCompositeSearchParamList.sql │ │ │ │ ├── TokenQuantityCompositeSearchParamList.sql │ │ │ │ ├── TokenSearchParamList.sql │ │ │ │ ├── TokenStringCompositeSearchParamList.sql │ │ │ │ ├── TokenTextList.sql │ │ │ │ ├── TokenTokenCompositeSearchParamList.sql │ │ │ │ ├── Types.sql │ │ │ │ └── UriSearchParamList.sql │ │ │ │ └── Views │ │ │ │ └── CurrentResource.sql │ │ ├── Search │ │ │ ├── ContinuationToken.cs │ │ │ ├── ContinuationTokenConverter.cs │ │ │ ├── CustomQueries.cs │ │ │ ├── Expressions │ │ │ │ ├── SearchParamTableExpression.cs │ │ │ │ ├── SearchParamTableExpressionExtensions.cs │ │ │ │ ├── SearchParamTableExpressionKind.cs │ │ │ │ ├── SqlChainLinkExpression.cs │ │ │ │ ├── SqlFieldName.cs │ │ │ │ ├── SqlRootExpression.cs │ │ │ │ └── Visitors │ │ │ │ │ ├── ChainFlatteningRewriter.cs │ │ │ │ │ ├── ConcatenationRewriter.cs │ │ │ │ │ ├── DateTimeBoundedRangeRewriter.cs │ │ │ │ │ ├── DateTimeTableExpressionCombiner.cs │ │ │ │ │ ├── DefaultSqlExpressionVisitor.cs │ │ │ │ │ ├── FlatteningRewriter.cs │ │ │ │ │ ├── ISqlExpressionVisitor.cs │ │ │ │ │ ├── IncludeMatchSeedRewriter.cs │ │ │ │ │ ├── IncludeRewriter.cs │ │ │ │ │ ├── IncludesOperationRewriter.cs │ │ │ │ │ ├── LastUpdatedToResourceSurrogateIdRewriter.cs │ │ │ │ │ ├── LegacyStringOverflowRewriter.cs │ │ │ │ │ ├── MissingSearchParamVisitor.cs │ │ │ │ │ ├── NotExpressionRewriter.cs │ │ │ │ │ ├── NumericRangeRewriter.cs │ │ │ │ │ ├── PartitionEliminationRewriter.cs │ │ │ │ │ ├── QueryGenerators │ │ │ │ │ ├── ChainLinkQueryGenerator.cs │ │ │ │ │ ├── CompartmentQueryGenerator.cs │ │ │ │ │ ├── CompositeQueryGenerator.cs │ │ │ │ │ ├── DateTimeQueryGenerator.cs │ │ │ │ │ ├── InQueryGenerator.cs │ │ │ │ │ ├── IncludeQueryGenerator.cs │ │ │ │ │ ├── NotReferencedQueryGenerator.cs │ │ │ │ │ ├── NumberQueryGenerator.cs │ │ │ │ │ ├── PrimaryKeyRangeParameterQueryGenerator.cs │ │ │ │ │ ├── QuantityQueryGenerator.cs │ │ │ │ │ ├── ReferenceQueryGenerator.cs │ │ │ │ │ ├── ReferenceTokenCompositeQueryGenerator.cs │ │ │ │ │ ├── ResourceIdParameterQueryGenerator.cs │ │ │ │ │ ├── ResourceSurrogateIdParameterQueryGenerator.cs │ │ │ │ │ ├── ResourceTableSearchParameterQueryGenerator.cs │ │ │ │ │ ├── ResourceTypeIdParameterQueryGenerator.cs │ │ │ │ │ ├── SearchParamTableExpressionQueryGenerator.cs │ │ │ │ │ ├── SearchParameterQueryGenerator.cs │ │ │ │ │ ├── SearchParameterQueryGeneratorContext.cs │ │ │ │ │ ├── SqlQueryGenerator.cs │ │ │ │ │ ├── StringQueryGenerator.cs │ │ │ │ │ ├── TokenDateTimeCompositeQueryGenerator.cs │ │ │ │ │ ├── TokenNumberNumberQueryGenerator.cs │ │ │ │ │ ├── TokenQuantityCompositeQueryGenerator.cs │ │ │ │ │ ├── TokenQueryGenerator.cs │ │ │ │ │ ├── TokenStringCompositeQueryGenerator.cs │ │ │ │ │ ├── TokenTextQueryGenerator.cs │ │ │ │ │ ├── TokenTokenCompositeQueryGenerator.cs │ │ │ │ │ └── UriQueryGenerator.cs │ │ │ │ │ ├── RemoveIncludesRewriter.cs │ │ │ │ │ ├── ResourceColumnPredicatePushdownRewriter.cs │ │ │ │ │ ├── SearchParamTableExpressionQueryGeneratorFactory.cs │ │ │ │ │ ├── SearchParamTableExpressionReorderer.cs │ │ │ │ │ ├── SortRewriter.cs │ │ │ │ │ ├── SqlExpressionRewriter.cs │ │ │ │ │ ├── SqlExpressionRewriterWithInitialContext.cs │ │ │ │ │ ├── SqlRootExpressionRewriter.cs │ │ │ │ │ ├── StringOverflowRewriter.cs │ │ │ │ │ ├── TopRewriter.cs │ │ │ │ │ ├── TypeConstraintVisitor.cs │ │ │ │ │ └── UntypedReferenceRewriter.cs │ │ │ ├── HashingSqlQueryParameterManager.cs │ │ │ ├── ISqlQueryHashCalculator.cs │ │ │ ├── IncludesContinuationToken.cs │ │ │ ├── MissingResourceFactory.cs │ │ │ ├── PrimaryKeyRange.cs │ │ │ ├── PrimaryKeyValue.cs │ │ │ ├── QueryCacheSetting.cs │ │ │ ├── SearchParameterColumnLocation.cs │ │ │ ├── SearchParameterInfoExtensions.cs │ │ │ ├── SqlCommandSimplifier.cs │ │ │ ├── SqlQueryHashCalculator.cs │ │ │ ├── SqlSearchConstants.cs │ │ │ ├── SqlSearchOptions.cs │ │ │ ├── SqlSearchParameters.cs │ │ │ ├── SqlServerSearchParameterValidator.cs │ │ │ ├── SqlServerSearchService.cs │ │ │ └── SqlServerSortingValidator.cs │ │ ├── Storage │ │ │ ├── CompressedRawResourceConverter.cs │ │ │ ├── ISqlServerFhirModel.cs │ │ │ ├── JobInfoExtensions.cs │ │ │ ├── ProcessingFlag.cs │ │ │ ├── Registry │ │ │ │ ├── SearchParameterStatusCollection.cs │ │ │ │ ├── SqlServerResourceSearchParameterStatus.cs │ │ │ │ └── SqlServerSearchParameterStatusDataStore.cs │ │ │ ├── ResourceDateKey.cs │ │ │ ├── ResourceMetadata.cs │ │ │ ├── ResourceSurrogateIdHelper.cs │ │ │ ├── ResourceWrapperExtention.cs │ │ │ ├── SchemaUpgradedHandler.cs │ │ │ ├── SearchParameterToSearchValueTypeMap.cs │ │ │ ├── SqlExceptionActionProcessor.cs │ │ │ ├── SqlExceptionExtensions.cs │ │ │ ├── SqlQueueClient.cs │ │ │ ├── SqlRetry │ │ │ │ ├── ISqlRetryService.cs │ │ │ │ ├── SqlCommandExtensions.cs │ │ │ │ ├── SqlRetryService.cs │ │ │ │ ├── SqlRetryServiceDelegateOptions.cs │ │ │ │ └── SqlRetryServiceOptions.cs │ │ │ ├── SqlServerFhirDataStore.cs │ │ │ ├── SqlServerFhirModel.cs │ │ │ ├── SqlServerFhirOperationDataStore.cs │ │ │ ├── SqlServerParameterStore.cs │ │ │ ├── SqlStoreClient.cs │ │ │ ├── SqlStoreErrorCodes.cs │ │ │ └── TvpRowGeneration │ │ │ │ ├── CompositeSearchParameterRowGenerator.cs │ │ │ │ ├── Merge │ │ │ │ ├── CompositeSearchParamRowGenerator.cs │ │ │ │ ├── DateTimeSearchParamListRowGenerator.cs │ │ │ │ ├── MergeResourceWrapper.cs │ │ │ │ ├── MergeSearchParameterRowGenerator.cs │ │ │ │ ├── NumberSearchParamListRowGenerator.cs │ │ │ │ ├── QuantitySearchParamListRowGenerator.cs │ │ │ │ ├── ReferenceSearchParamListRowGenerator.cs │ │ │ │ ├── ReferenceTokenCompositeSearchParamListRowGenerator.cs │ │ │ │ ├── ResourceListRowGenerator.cs │ │ │ │ ├── ResourceWriteClaimListRowGenerator.cs │ │ │ │ ├── StringSearchParamListRowGenerator.cs │ │ │ │ ├── TokenDateTimeCompositeSearchParamListRowGenerator.cs │ │ │ │ ├── TokenNumberNumberCompositeSearchParamListRowGenerator.cs │ │ │ │ ├── TokenQuantityCompositeSearchParamListRowGenerator.cs │ │ │ │ ├── TokenSearchParamListRowGenerator.cs │ │ │ │ ├── TokenStringCompositeSearchParamListRowGenerator.cs │ │ │ │ ├── TokenTextListRowGenerator.cs │ │ │ │ ├── TokenTokenCompositeSearchParamListRowGenerator.cs │ │ │ │ └── UriSearchParamListRowGenerator.cs │ │ │ │ ├── SearchParamListRowGenerator.cs │ │ │ │ ├── SearchParameterRowGenerator.cs │ │ │ │ └── SearchParameterStatusV2RowGenerator.cs │ │ └── Watchdogs │ │ │ ├── CleanupEventLogWatchdog.cs │ │ │ ├── DefragWatchdog.cs │ │ │ ├── FhirTimer.cs │ │ │ ├── GeoReplicationLagWatchdog.cs │ │ │ ├── InvisibleHistoryCleanupWatchdog.cs │ │ │ ├── TransactionWatchdog.cs │ │ │ ├── Watchdog.cs │ │ │ ├── WatchdogLease.cs │ │ │ └── WatchdogsBackgroundService.cs │ ├── Microsoft.Health.Fhir.SqlServer.csproj │ ├── Registration │ │ └── FhirServerBuilderSqlServerRegistrationExtensions.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ └── readme.md ├── Microsoft.Health.Fhir.Store.Utils │ ├── BatchExtensions.cs │ ├── CancelRequest.cs │ ├── ExceptionExtention.cs │ └── Microsoft.Health.Fhir.Store.Utils.csproj ├── Microsoft.Health.Fhir.Stu3.Api.UnitTests │ └── Microsoft.Health.Fhir.Stu3.Api.UnitTests.csproj ├── Microsoft.Health.Fhir.Stu3.Api │ ├── AssemblyInfo.cs │ ├── Features │ │ └── Resources │ │ │ └── Bundle │ │ │ └── BundleHandler.cs │ └── Microsoft.Health.Fhir.Stu3.Api.csproj ├── Microsoft.Health.Fhir.Stu3.Client │ ├── AssemblyInfo.cs │ └── Microsoft.Health.Fhir.Stu3.Client.csproj ├── Microsoft.Health.Fhir.Stu3.Core.UnitTests │ ├── Features │ │ ├── Conformance │ │ │ └── ConformanceBuilderTests.cs │ │ ├── Operations │ │ │ └── Versions │ │ │ │ └── VersionSpecificTests.cs │ │ └── Search │ │ │ ├── Converters │ │ │ └── MoneyToQuantitySearchValueConverterTests.cs │ │ │ └── SearchOptionsFactoryTests.cs │ └── Microsoft.Health.Fhir.Stu3.Core.UnitTests.csproj ├── Microsoft.Health.Fhir.Stu3.Core │ ├── AssemblyInfo.cs │ ├── Features │ │ └── Definition │ │ │ └── ComponentDefinitionExtensions.cs │ ├── Microsoft.Health.Fhir.Stu3.Core.csproj │ └── VersionSpecificModelInfoProvider.cs ├── Microsoft.Health.Fhir.Stu3.Web.UnitTests │ └── Microsoft.Health.Fhir.Stu3.Web.UnitTests.csproj ├── Microsoft.Health.Fhir.Stu3.Web │ ├── Microsoft.Health.Fhir.Stu3.Web.csproj │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── launchSettings.json │ └── runtimeconfig.template.json ├── Microsoft.Health.Fhir.Tests.Common │ ├── AssemblyChecker.cs │ ├── AssemblyValidationsTester.cs │ ├── Categories.cs │ ├── DefinitionFiles │ │ ├── R4 │ │ │ ├── SearchParameters.json │ │ │ ├── SearchParametersWithInvalidBase.json │ │ │ ├── SearchParametersWithInvalidDefinitions.json │ │ │ ├── SearchParametersWithInvalidEntries.json │ │ │ ├── SearchParametersWithInvalidType.json │ │ │ └── SearchParametersWithNullEntry.json │ │ ├── R4B │ │ │ ├── SearchParameters.json │ │ │ ├── SearchParametersWithInvalidBase.json │ │ │ ├── SearchParametersWithInvalidDefinitions.json │ │ │ ├── SearchParametersWithInvalidEntries.json │ │ │ ├── SearchParametersWithInvalidType.json │ │ │ └── SearchParametersWithNullEntry.json │ │ ├── R5 │ │ │ ├── SearchParameters.json │ │ │ ├── SearchParametersWithInvalidBase.json │ │ │ ├── SearchParametersWithInvalidDefinitions.json │ │ │ ├── SearchParametersWithInvalidEntries.json │ │ │ ├── SearchParametersWithInvalidType.json │ │ │ └── SearchParametersWithNullEntry.json │ │ └── Stu3 │ │ │ ├── SearchParameters.json │ │ │ ├── SearchParametersWithInvalidBase.json │ │ │ ├── SearchParametersWithInvalidDefinitions.json │ │ │ ├── SearchParametersWithInvalidEntries.json │ │ │ ├── SearchParametersWithInvalidType.json │ │ │ └── SearchParametersWithNullEntry.json │ ├── EmbeddedResourceManager.cs │ ├── EnvironmentVariables.cs │ ├── Extensions │ │ └── ResourceElementExtensions.cs │ ├── FixtureParameters │ │ ├── DataStore.cs │ │ └── Format.cs │ ├── KnownEnvironmentVariableNames.cs │ ├── Microsoft.Health.Fhir.Tests.Common.csproj │ ├── MockModelInfoProviderBuilder.cs │ ├── MockStructureDefinitionSummaryProvider.cs │ ├── NotTest.cs │ ├── OwningTeam.cs │ ├── TestFiles │ │ ├── Normative │ │ │ ├── Appointment.json │ │ │ ├── BloodGlucose.json │ │ │ ├── BloodPressure.json │ │ │ ├── Bundle-Batch.json │ │ │ ├── Bundle-BatchWithConditionalUpdateByIdentifier.json │ │ │ ├── Bundle-BatchWithDuplicatedItems.json │ │ │ ├── Bundle-BatchWithInvalidEleEnums.json │ │ │ ├── Bundle-BinaryPatch.json │ │ │ ├── Bundle-FhirPatch.json │ │ │ ├── Bundle-MissingIdentifier.json │ │ │ ├── Bundle-Transaction.json │ │ │ ├── Bundle-TransactionForRollBack.json │ │ │ ├── Bundle-TransactionWithAllValidRoutes.json │ │ │ ├── Bundle-TransactionWithConditionalCreateAndReference.json │ │ │ ├── Bundle-TransactionWithConditionalReferenceInResourceBody.json │ │ │ ├── Bundle-TransactionWithConditionalReferenceReferringToSameResource.json │ │ │ ├── Bundle-TransactionWithConditionalUpdateAndReference.json │ │ │ ├── Bundle-TransactionWithForeignReferenceInResourceBody.json │ │ │ ├── Bundle-TransactionWithInvalidBundleEntry.json │ │ │ ├── Bundle-TransactionWithInvalidProcessingRoutes.json │ │ │ ├── Bundle-TransactionWithInvalidResourceType.json │ │ │ ├── Bundle-TransactionWithMultipleEntriesModifyingSameResource.json │ │ │ ├── Bundle-TransactionWithMultipleResourcesWithSameFullUrl.json │ │ │ ├── Bundle-TransactionWithPOSTFullUrlMatchesWithPUTRequestUrl.json │ │ │ ├── Bundle-TransactionWithValidBundleEntry.json │ │ │ ├── Bundle-TypeMissing.json │ │ │ ├── CodeSystem-careplan-category.json │ │ │ ├── CompositeCustomReferenceTokenSearchParameter.json │ │ │ ├── CompositeCustomReferenceTokenSearchParameterStu3.json │ │ │ ├── CompositeCustomTokenDateTimeSearchParameter.json │ │ │ ├── CompositeCustomTokenDateTimeSearchParameterStu3.json │ │ │ ├── CompositeCustomTokenNumberNumberSearchParameter.json │ │ │ ├── CompositeCustomTokenNumberNumberSearchParameterStu3.json │ │ │ ├── CompositeCustomTokenOverflowTokenSearchParameter.json │ │ │ ├── CompositeCustomTokenOverflowTokenSearchParameterStu3.json │ │ │ ├── CompositeCustomTokenQuantitySearchParameter.json │ │ │ ├── CompositeCustomTokenQuantitySearchParameterStu3.json │ │ │ ├── CompositeCustomTokenStringSearchParameter.json │ │ │ ├── CompositeCustomTokenStringSearchParameterStu3.json │ │ │ ├── CompositeCustomTokenTokenOverflowSearchParameter.json │ │ │ ├── CompositeCustomTokenTokenOverflowSearchParameterStu3.json │ │ │ ├── Coverage.json │ │ │ ├── Expand-ValueSets.json │ │ │ ├── Flag.json │ │ │ ├── Import-DupPatientTemplate.ndjson │ │ │ ├── Import-InvalidPatient.ndjson │ │ │ ├── Import-Observation.ndjson │ │ │ ├── Import-Patient.ndjson │ │ │ ├── Import-SinglePatientTemplate.ndjson │ │ │ ├── Includes-TestResources.json │ │ │ ├── InvalidObservation.json │ │ │ ├── LegacyRawReindexJobRecord.json │ │ │ ├── Medication.json │ │ │ ├── MemberMatch.json │ │ │ ├── MoneyWithWrongDecimal.json │ │ │ ├── Observation-For-Patient-f001.json │ │ │ ├── ObservationWith1MinuteApgarScore.json │ │ │ ├── ObservationWith20MinuteApgarScore.json │ │ │ ├── ObservationWithBloodPressure.json │ │ │ ├── ObservationWithEyeColor.json │ │ │ ├── ObservationWithInvalidDecimalSpecification.json │ │ │ ├── ObservationWithInvalidStatus.json │ │ │ ├── ObservationWithInvalidStatus.xml │ │ │ ├── ObservationWithLongEyeColor.json │ │ │ ├── ObservationWithNoCode.json │ │ │ ├── ObservationWithNoCode.xml │ │ │ ├── ObservationWithTPMTDiplotype.json │ │ │ ├── ObservationWithTPMTHaplotypeOne.json │ │ │ ├── ObservationWithTemperature.json │ │ │ ├── Parameter-Convert-Data.json │ │ │ ├── Patient-f001.json │ │ │ ├── Patient.json │ │ │ ├── Patient.xml │ │ │ ├── PatientMissingResourceType.json │ │ │ ├── PatientWithMinimalData.json │ │ │ ├── PatientWithUnknownElements.json │ │ │ ├── Practitioner.json │ │ │ ├── Profile-CarePlan-uscore.json │ │ │ ├── Profile-Organization-uscore-endpoint.json │ │ │ ├── Profile-Organization-uscore.json │ │ │ ├── Profile-Patient-uscore-noGender.json │ │ │ ├── Profile-Patient-uscore-noidentifier.json │ │ │ ├── Profile-Patient-uscore.json │ │ │ ├── ProvenanceHeader.json │ │ │ ├── SearchDataBatch.json │ │ │ ├── SearchParameter-AppointmentStatus.json │ │ │ ├── SearchParameter-Patient-foo.json │ │ │ ├── SearchParameter-Resource-idfoo.json │ │ │ ├── SearchParameter-SpecimenStatus.json │ │ │ ├── SearchParameter-USCoreIG.json │ │ │ ├── SearchParameterBadSyntax.json │ │ │ ├── SearchParameterExpressionWrongProperty.json │ │ │ ├── SearchParameterInvalidBase.json │ │ │ ├── SearchParameterInvalidType.json │ │ │ ├── SearchParameterMissingBase.json │ │ │ ├── SearchParameterMissingExpression.json │ │ │ ├── SearchParameterMissingType.json │ │ │ ├── SearchParameterUnsupportedType.json │ │ │ ├── Sequence.json │ │ │ ├── Specimen.json │ │ │ ├── StructureDefinition-us-core-birthsex.json │ │ │ ├── StructureDefinition-us-core-careplan.json │ │ │ ├── StructureDefinition-us-core-ethnicity.json │ │ │ ├── StructureDefinition-us-core-organization.json │ │ │ ├── StructureDefinition-us-core-patient.json │ │ │ ├── StructureDefinition-us-core-race.json │ │ │ ├── TokenOverflowChargeItem.json │ │ │ ├── TokenOverflowPatient.json │ │ │ ├── TokenOverflowRiskAssessment.json │ │ │ ├── ValidCompartmentDefinition.json │ │ │ ├── ValueSet-detailed-ethnicity.json │ │ │ ├── ValueSet-detailed-race.json │ │ │ ├── ValueSet-omb-ethnicity-category.json │ │ │ ├── ValueSet-omb-race-category.json │ │ │ ├── ValueSet-us-core-birthsex.json │ │ │ ├── ValueSet-us-core-narrative-status.json │ │ │ ├── ValueSet.json │ │ │ ├── Weight.json │ │ │ ├── WeightInGrams.json │ │ │ ├── capabilitystatement-example.json │ │ │ ├── codesystem-abstract-types.json │ │ │ ├── list-example-long.json │ │ │ ├── observation-example.json │ │ │ ├── operationoutcome-example.json │ │ │ └── sql_8623_script.sql │ │ ├── R4 │ │ │ ├── BasicExampleNarrative.json │ │ │ ├── BasicExampleNarrative.xml │ │ │ ├── Bundle-ChainingSortAndSearchValidation.json │ │ │ ├── Bundle-TransactionWithReferenceInResourceBody.json │ │ │ ├── CarePlan.json │ │ │ ├── CommunicationAttachment.json │ │ │ ├── Condition-For-Patient-f001.json │ │ │ ├── Device-d1.json │ │ │ ├── DocumentReference-example-relatesTo-code-appends.indexes.json │ │ │ ├── DocumentReference-example-relatesTo-code-appends.json │ │ │ ├── DocumentReference-example-relatesTo-code-transforms-replaces-target.indexes.json │ │ │ ├── DocumentReference-example-relatesTo-code-transforms-replaces-target.json │ │ │ ├── DocumentReference-example-relatesTo-code-transforms.indexes.json │ │ │ ├── DocumentReference-example-relatesTo-code-transforms.json │ │ │ ├── DocumentReference-example-with-base64.json │ │ │ ├── Encounter-For-Patient-f001.json │ │ │ ├── Immunization.json │ │ │ ├── InvalidCompartmentDefinition.json │ │ │ ├── Location-example-hq.json │ │ │ ├── MedicinalProduct.json │ │ │ ├── ObservationDefinition-example.json │ │ │ ├── Organization.json │ │ │ ├── ResourceWrapperNoVersion.json │ │ │ ├── SmartCommon.json │ │ │ ├── SmartPatientA.json │ │ │ ├── SmartPatientB.json │ │ │ ├── SmartPatientC.json │ │ │ ├── SmartPatientD.json │ │ │ ├── ValidCompartmentDefinition.json │ │ │ ├── account-example.json │ │ │ ├── activitydefinition-example.json │ │ │ ├── adverseevent-example.json │ │ │ ├── allergyintolerance-example.json │ │ │ ├── appointment-example.json │ │ │ ├── appointmentresponse-example.json │ │ │ ├── auditevent-example.json │ │ │ ├── basic-example.json │ │ │ ├── binary-example.json │ │ │ ├── biologicallyderivedproduct-example.json │ │ │ ├── bodystructure-example-fetus.json │ │ │ ├── careteam-example.json │ │ │ ├── catalogentry-example.json │ │ │ ├── chargeitem-example.json │ │ │ ├── chargeitemdefinition-device-example.json │ │ │ ├── claim-example.json │ │ │ ├── claimresponse-example.json │ │ │ ├── clinicalimpression-example.json │ │ │ ├── communication-example.json │ │ │ ├── communicationrequest-example.json │ │ │ ├── compartmentdefinition-device.json │ │ │ ├── composition-example.json │ │ │ ├── conceptmap-example.json │ │ │ ├── condition-example2.json │ │ │ ├── consent-example.json │ │ │ ├── contract-example.json │ │ │ ├── coverage-example.json │ │ │ ├── coverageeligibilityrequest-example.json │ │ │ ├── coverageeligibilityresponse-example.json │ │ │ ├── detectedissue-example.json │ │ │ ├── devicedefinition-example.json │ │ │ ├── devicemetric-example.json │ │ │ ├── devicerequest-example.json │ │ │ ├── deviceusestatement-example.json │ │ │ ├── diagnosticreport-example.json │ │ │ ├── documentmanifest-example.json │ │ │ ├── documentreference-example.json │ │ │ ├── effectevidencesynthesis-example.json │ │ │ ├── encounter-example.json │ │ │ ├── endpoint-example.json │ │ │ ├── enrollmentrequest-example.json │ │ │ ├── enrollmentresponse-example.json │ │ │ ├── episodeofcare-example.json │ │ │ ├── eventdefinition-example.json │ │ │ ├── evidence-example.json │ │ │ ├── evidencevariable-example.json │ │ │ ├── examplescenario-example.json │ │ │ ├── explanationofbenefit-example.json │ │ │ ├── familymemberhistory-example-mother.json │ │ │ ├── flag-example.json │ │ │ ├── goal-example.json │ │ │ ├── graphdefinition-example.json │ │ │ ├── group-example.json │ │ │ ├── guidanceresponse-example.json │ │ │ ├── healthcareservice-example.json │ │ │ ├── imagingstudy-example.json │ │ │ ├── immunizationevaluation-example.json │ │ │ ├── immunizationrecommendation.profile.json │ │ │ ├── implementationguide-example.json │ │ │ ├── insuranceplan-example.json │ │ │ ├── invoice-example.json │ │ │ ├── library-example.json │ │ │ ├── linkage-example.json │ │ │ ├── list-example.json │ │ │ ├── location-example.json │ │ │ ├── measure-cms146-example.json │ │ │ ├── media-example.json │ │ │ ├── medicationadministration0301.json │ │ │ ├── medicationdispense0301.json │ │ │ ├── medicationexample1.json │ │ │ ├── medicationknowledge-example.json │ │ │ ├── medicationrequest0302.json │ │ │ ├── medicationstatementexample1.json │ │ │ ├── medicinalproductauthorization-example.json │ │ │ ├── medicinalproductcontraindication-questionnaire.json │ │ │ ├── medicinalproductindication-example.json │ │ │ ├── medicinalproductingredient-example.json │ │ │ ├── medicinalproductinteraction-example.json │ │ │ ├── medicinalproductmanufactured-example.json │ │ │ ├── medicinalproductpackaged-example.json │ │ │ ├── medicinalproductpharmaceutical-example.json │ │ │ ├── medicinalproductundesirableeffect-example.json │ │ │ ├── messagedefinition-example.json │ │ │ ├── messageheader-example.json │ │ │ ├── molecularsequence-example.json │ │ │ ├── namingsystem-example.json │ │ │ ├── nutritionorder-example-cardiacdiet.json │ │ │ ├── operationdefinition-example.json │ │ │ ├── organizationaffiliation-example.json │ │ │ ├── paymentnotice-example.json │ │ │ ├── paymentreconciliation-example.json │ │ │ ├── person-example.json │ │ │ ├── plandefinition-example.json │ │ │ ├── practitioner-example.json │ │ │ ├── practitionerrole-questionnaire.json │ │ │ ├── procedure-example.json │ │ │ ├── provenance-example.json │ │ │ ├── questionnaire-example.json │ │ │ ├── questionnaireresponse-example.json │ │ │ ├── relatedperson-example.json │ │ │ ├── requestgroup-example.json │ │ │ ├── researchdefinition-example.json │ │ │ ├── researchelementdefinition-example.json │ │ │ ├── researchstudy-example.json │ │ │ ├── researchsubject-example.json │ │ │ ├── riskassessment-example.json │ │ │ ├── riskevidencesynthesis-example.json │ │ │ ├── schedule-example.json │ │ │ ├── searchparameter-example.json │ │ │ ├── servicerequest-example.json │ │ │ ├── slot-example.json │ │ │ ├── specimen-example.json │ │ │ ├── specimendefinition-questionnaire.json │ │ │ ├── structuredefinition-example-composition.json │ │ │ ├── structuremap-example.json │ │ │ ├── subscription-example.json │ │ │ ├── substance-example.json │ │ │ ├── substancenucleicacid-example.json │ │ │ ├── substancepolymer-example.json │ │ │ ├── substanceprotein-example.json │ │ │ ├── substancereferenceinformation-example.json │ │ │ ├── substancesourcematerial-example.json │ │ │ ├── substancespecification-example.json │ │ │ ├── supplydelivery-example.json │ │ │ ├── supplyrequest-example-simpleorder.json │ │ │ ├── task-example1.json │ │ │ ├── terminologycapabilities-example.json │ │ │ ├── testreport-example.json │ │ │ ├── testscript-example.json │ │ │ ├── verificationresult-example.json │ │ │ └── visionprescription-example.json │ │ ├── R4B │ │ │ ├── CommunicationAttachment.json │ │ │ ├── DocumentReference-example-with-base64.json │ │ │ ├── MedicinalProductDefinition.json │ │ │ ├── ValidCompartmentDefinition.json │ │ │ └── binary-example.json │ │ ├── R5 │ │ │ ├── Appointment.json │ │ │ ├── BasicExampleNarrative.json │ │ │ ├── BasicExampleNarrative.xml │ │ │ ├── BloodGlucose.json │ │ │ ├── Bundle-ChainingSortAndSearchValidation.json │ │ │ ├── Bundle-TransactionWithInvalidBundleEntry.json │ │ │ ├── Bundle-TransactionWithReferenceInResourceBody.json │ │ │ ├── CarePlan.json │ │ │ ├── CommunicationAttachment.json │ │ │ ├── Condition-For-Patient-f001.json │ │ │ ├── Coverage.json │ │ │ ├── Device-d1.json │ │ │ ├── DocumentReference-example-relatesTo-code-appends.indexes.json │ │ │ ├── DocumentReference-example-relatesTo-code-appends.json │ │ │ ├── DocumentReference-example-relatesTo-code-transforms-replaces-target.indexes.json │ │ │ ├── DocumentReference-example-relatesTo-code-transforms-replaces-target.json │ │ │ ├── DocumentReference-example-relatesTo-code-transforms.indexes.json │ │ │ ├── DocumentReference-example-relatesTo-code-transforms.json │ │ │ ├── DocumentReference-example-with-base64.json │ │ │ ├── Encounter-For-Patient-f001.json │ │ │ ├── Immunization.json │ │ │ ├── Includes-TestResources.json │ │ │ ├── InvalidCompartmentDefinition.json │ │ │ ├── Location-example-hq.json │ │ │ ├── MedicinalProductDefinition.json │ │ │ ├── ObservationDefinition-example.json │ │ │ ├── Organization.json │ │ │ ├── Profile-Organization-uscore-endpoint.json │ │ │ ├── Profile-Organization-uscore.json │ │ │ ├── SearchDataBatch.json │ │ │ ├── SearchParameter-Patient-foo.json │ │ │ ├── SearchParameter-Resource-idfoo.json │ │ │ ├── SearchParameter-SpecimenStatus.json │ │ │ ├── SearchParameter-USCoreIG.json │ │ │ ├── SearchParameterBadSyntax.json │ │ │ ├── SearchParameterExpressionWrongProperty.json │ │ │ ├── SearchParameterInvalidBase.json │ │ │ ├── SearchParameterInvalidType.json │ │ │ ├── SearchParameterMissingBase.json │ │ │ ├── SearchParameterMissingExpression.json │ │ │ ├── SearchParameterMissingType.json │ │ │ ├── SearchParameterUnsupportedType.json │ │ │ ├── Specimen.json │ │ │ ├── StructureDefinition-us-core-birthsex.json │ │ │ ├── StructureDefinition-us-core-careplan.json │ │ │ ├── StructureDefinition-us-core-ethnicity.json │ │ │ ├── StructureDefinition-us-core-organization.json │ │ │ ├── StructureDefinition-us-core-patient.json │ │ │ ├── StructureDefinition-us-core-race.json │ │ │ ├── ValidCompartmentDefinition.json │ │ │ └── binary-example.json │ │ └── Stu3 │ │ │ ├── BasicExampleNarrative.json │ │ │ ├── BasicExampleNarrative.xml │ │ │ ├── BloodGlucose.json │ │ │ ├── BloodPressure.json │ │ │ ├── Bundle-Batch.json │ │ │ ├── Bundle-ChainingSortAndSearchValidation.json │ │ │ ├── Bundle-Transaction.json │ │ │ ├── Bundle-TransactionForRollBack.json │ │ │ ├── Bundle-TransactionWithAllValidRoutes.json │ │ │ ├── Bundle-TransactionWithConditionalCreateAndReference.json │ │ │ ├── Bundle-TransactionWithConditionalReferenceInResourceBody.json │ │ │ ├── Bundle-TransactionWithConditionalReferenceReferringToSameResource.json │ │ │ ├── Bundle-TransactionWithConditionalUpdateAndReference.json │ │ │ ├── Bundle-TransactionWithForeignReferenceInResourceBody.json │ │ │ ├── Bundle-TransactionWithInvalidProcessingRoutes.json │ │ │ ├── Bundle-TransactionWithInvalidResourceType.json │ │ │ ├── Bundle-TransactionWithMultipleEntriesModifyingSameResource.json │ │ │ ├── Bundle-TransactionWithMultipleResourcesWithSameFullUrl.json │ │ │ ├── Bundle-TransactionWithPOSTFullUrlMatchesWithPUTRequestUrl.json │ │ │ ├── Bundle-TransactionWithReferenceInResourceBody.json │ │ │ ├── Bundle-TypeMissing.json │ │ │ ├── CarePlan.json │ │ │ ├── CommunicationAttachment.json │ │ │ ├── Condition-For-Patient-f001.json │ │ │ ├── Device-d1.json │ │ │ ├── DeviceComponent-For-Device-d1.json │ │ │ ├── DocumentReference-example-relatesTo-code-appends.indexes.json │ │ │ ├── DocumentReference-example-relatesTo-code-appends.json │ │ │ ├── DocumentReference-example-relatesTo-code-transforms-replaces-target.indexes.json │ │ │ ├── DocumentReference-example-relatesTo-code-transforms-replaces-target.json │ │ │ ├── DocumentReference-example-relatesTo-code-transforms.indexes.json │ │ │ ├── DocumentReference-example-relatesTo-code-transforms.json │ │ │ ├── DocumentReference-example-with-base64.json │ │ │ ├── Encounter-For-Patient-f001.json │ │ │ ├── Expand-ValueSets.json │ │ │ ├── Immunization.json │ │ │ ├── Includes-TestResources.json │ │ │ ├── InvalidCompartmentDefinition.json │ │ │ ├── InvalidObservation.json │ │ │ ├── Location-example-hq.json │ │ │ ├── MemberMatch.json │ │ │ ├── Observation-For-Patient-f001.json │ │ │ ├── ObservationWith1MinuteApgarScore.json │ │ │ ├── ObservationWith20MinuteApgarScore.json │ │ │ ├── ObservationWithBloodPressure.json │ │ │ ├── ObservationWithEyeColor.json │ │ │ ├── ObservationWithInvalidStatus.json │ │ │ ├── ObservationWithInvalidStatus.xml │ │ │ ├── ObservationWithLongEyeColor.json │ │ │ ├── ObservationWithNoCode.json │ │ │ ├── ObservationWithNoCode.xml │ │ │ ├── ObservationWithTPMTDiplotype.json │ │ │ ├── ObservationWithTPMTHaplotypeOne.json │ │ │ ├── ObservationWithTemperature.json │ │ │ ├── Organization.json │ │ │ ├── Patient-f001.json │ │ │ ├── Patient.json │ │ │ ├── Patient.xml │ │ │ ├── PatientWithMinimalData.json │ │ │ ├── ProvenanceHeader.json │ │ │ ├── SearchParameter-USCoreIG.json │ │ │ ├── Sequence.json │ │ │ ├── StructureDefinition-us-core-birthsex.json │ │ │ ├── StructureDefinition-us-core-careplan.json │ │ │ ├── StructureDefinition-us-core-ethnicity.json │ │ │ ├── StructureDefinition-us-core-organization.json │ │ │ ├── StructureDefinition-us-core-patient.json │ │ │ ├── StructureDefinition-us-core-race.json │ │ │ ├── ValidCompartmentDefinition.json │ │ │ ├── ValueSet-detailed-ethnicity.json │ │ │ ├── ValueSet-detailed-race.json │ │ │ ├── ValueSet-omb-ethnicity-category.json │ │ │ ├── ValueSet-omb-race-category.json │ │ │ ├── ValueSet-us-core-birthsex.json │ │ │ ├── ValueSet-us-core-narrative-status.json │ │ │ ├── Weight.json │ │ │ ├── WeightInGrams.json │ │ │ ├── WeightInPounds.json │ │ │ └── binary-example.json │ └── TestQueryStringParser.cs ├── Microsoft.Health.Fhir.ValueSets │ ├── AuditEventSubType.cs │ ├── AuditEventType.cs │ ├── CompartmentType.cs │ ├── ConditionalDeleteStatus.cs │ ├── CurrencyValueSet.cs │ ├── Microsoft.Health.Fhir.ValueSets.csproj │ ├── OperationTypes.cs │ ├── ResourceVersionPolicy.cs │ ├── SearchComparator.cs │ ├── SearchEntryMode.cs │ ├── SearchModifierCode.cs │ ├── SearchParamType.cs │ ├── SpecialValues.cs │ ├── SystemRestfulInteraction.cs │ └── TypeRestfulInteraction.cs ├── Microsoft.Health.TaskManagement.UnitTests │ ├── AssemblyValidationsTests.cs │ ├── JobHostingTests.cs │ ├── JobLoggerExtensionTests.cs │ ├── Microsoft.Health.TaskManagement.UnitTests.csproj │ ├── TestJob.cs │ ├── TestJobFactory.cs │ └── TestQueueClient.cs └── Microsoft.Health.TaskManagement │ ├── Constants.cs │ ├── IJob.cs │ ├── IJobData.cs │ ├── IJobFactory.cs │ ├── IQueueClient.cs │ ├── JobAlreadyCompletedException.cs │ ├── JobConflictException.cs │ ├── JobExecutionException.cs │ ├── JobExecutionSoftFailureException.cs │ ├── JobHosting.cs │ ├── JobInfo.cs │ ├── JobInfoExtensions.cs │ ├── JobLoggerExtension.cs │ ├── JobNotExistException.cs │ ├── JobStatus.cs │ ├── JobTypeIdAttribute.cs │ ├── Microsoft.Health.TaskManagement.csproj │ └── RetriableJobException.cs ├── stylecop.json ├── test ├── Configuration │ └── testconfiguration.json ├── Microsoft.Health.Fhir.R4.Tests.E2E │ ├── Constants.cs │ ├── Microsoft.Health.Fhir.R4.Tests.E2E.csproj │ └── Rest │ │ ├── CreateAllFhirResourcesTests.cs │ │ ├── CreateAllFhirResourcesTestsFixture.cs │ │ └── VersionSpecificTests.cs ├── Microsoft.Health.Fhir.R4.Tests.Integration │ ├── AssemblyInfo.cs │ ├── Microsoft.Health.Fhir.R4.Tests.Integration.csproj │ └── Persistence │ │ ├── FhirStorageTests.cs │ │ └── FhirStorageVersioningPolicyTests.cs ├── Microsoft.Health.Fhir.R4B.Tests.E2E │ ├── Constants.cs │ ├── Microsoft.Health.Fhir.R4B.Tests.E2E.csproj │ └── Rest │ │ └── VersionSpecificTests.cs ├── Microsoft.Health.Fhir.R4B.Tests.Integration │ ├── AssemblyInfo.cs │ └── Microsoft.Health.Fhir.R4B.Tests.Integration.csproj ├── Microsoft.Health.Fhir.R5.Tests.E2E │ ├── Constants.cs │ ├── Microsoft.Health.Fhir.R5.Tests.E2E.csproj │ └── Rest │ │ └── VersionSpecificTests.cs ├── Microsoft.Health.Fhir.R5.Tests.Integration │ ├── AssemblyInfo.cs │ ├── Microsoft.Health.Fhir.R5.Tests.Integration.csproj │ └── Persistence │ │ ├── FhirStorageTests.cs │ │ └── FhirStorageVersioningPolicyTests.cs ├── Microsoft.Health.Fhir.Shared.Tests.Crucible │ ├── AssemblyValidationsTests.cs │ ├── Client │ │ ├── CrucibleClient.cs │ │ └── Models │ │ │ ├── Category.cs │ │ │ ├── Details.cs │ │ │ ├── Headers.cs │ │ │ ├── Method.cs │ │ │ ├── OId.cs │ │ │ ├── PastTestRunResponse.cs │ │ │ ├── Request.cs │ │ │ ├── RequestInfo.cs │ │ │ ├── Require.cs │ │ │ ├── Response.cs │ │ │ ├── Result.cs │ │ │ ├── ServerId.cs │ │ │ ├── SupportedTests.cs │ │ │ ├── Test.cs │ │ │ ├── TestResults.cs │ │ │ ├── TestRun.cs │ │ │ ├── TestRunResponse.cs │ │ │ └── Validate.cs │ ├── CrucibleDataSource.cs │ ├── CrucibleTestFixture.cs │ ├── Microsoft.Health.Fhir.Shared.Tests.Crucible.projitems │ ├── Microsoft.Health.Fhir.Shared.Tests.Crucible.shproj │ └── ServerTestRun.cs ├── Microsoft.Health.Fhir.Shared.Tests.E2E.Common │ ├── AssemblyValidationsTests.cs │ ├── AuthenticationSettings.cs │ ├── Microsoft.Health.Fhir.Shared.Tests.E2E.Common.projitems │ ├── Microsoft.Health.Fhir.Shared.Tests.E2E.Common.shproj │ ├── TestApplication.cs │ ├── TestApplications.cs │ ├── TestAuthenticationHttpMessageHandler.cs │ ├── TestFhirClient.cs │ └── TestUser.cs ├── Microsoft.Health.Fhir.Shared.Tests.E2E │ ├── AssemblyInfo.cs │ ├── AssemblyValidationsTests.cs │ ├── Extensions │ │ └── ModelExtensions.cs │ ├── HttpIntegrationFixtureArgumentSetsAttribute.cs │ ├── Microsoft.Health.Fhir.Shared.Tests.E2E.projitems │ ├── Microsoft.Health.Fhir.Shared.Tests.E2E.shproj │ ├── Rest │ │ ├── Audit │ │ │ ├── AuditEntry.cs │ │ │ ├── AuditTestFixture.cs │ │ │ ├── AuditTests.cs │ │ │ ├── StartupWithTraceAuditLogger.cs │ │ │ └── TraceAuditLogger.cs │ │ ├── AzureStorageBlobHelper.cs │ │ ├── BasicAuthTests.cs │ │ ├── BulkDeleteTests.cs │ │ ├── BulkUpdateTests.cs │ │ ├── BundleBatchTests.cs │ │ ├── BundleEdgeCaseTests.cs │ │ ├── BundleTestsUtil.cs │ │ ├── BundleTransactionTests.cs │ │ ├── CompartmentTestFixture.cs │ │ ├── CompartmentTests.cs │ │ ├── ConditionalCreateTests.cs │ │ ├── ConditionalDeleteTests.cs │ │ ├── ConditionalPatchTests.cs │ │ ├── ConditionalUpdateTests.cs │ │ ├── Conformance │ │ │ ├── DocRefOperationTestFixture.cs │ │ │ ├── DocRefOperationTests.cs │ │ │ ├── ExpandOperationTestFixture.cs │ │ │ └── ExpandOperationTests.cs │ │ ├── ConvertDataTests.cs │ │ ├── CorsTests.cs │ │ ├── CreateTests.cs │ │ ├── CustomConvertDataTests.cs │ │ ├── CustomHeadersTests.cs │ │ ├── DeleteTests.cs │ │ ├── EverythingOperationTestFixture.cs │ │ ├── EverythingOperationTests.cs │ │ ├── ExceptionTests.cs │ │ ├── Export │ │ │ ├── AnonymizedExportTests.cs │ │ │ ├── AnonymizedExportUsingAcrTests.cs │ │ │ ├── ExportDataTestFixture.cs │ │ │ ├── ExportDataTests.cs │ │ │ ├── ExportDataValidationTests.cs │ │ │ ├── ExportTestHelper.cs │ │ │ ├── ExportTests.cs │ │ │ └── StartupForExportTestProvider.cs │ │ ├── FhirPathPatchTests.cs │ │ ├── HealthTests.cs │ │ ├── HistoryTests.cs │ │ ├── HttpIntegrationTestFixture.cs │ │ ├── HttpIntegrationTestFixture{TStartup}.cs │ │ ├── Import │ │ │ ├── ImportBasicSearchTestFixture.cs │ │ │ ├── ImportBasicSearchTests.cs │ │ │ ├── ImportCompositeSearchTestFixture.cs │ │ │ ├── ImportCompositeSearchTests.cs │ │ │ ├── ImportDateSearchTestFixture.cs │ │ │ ├── ImportDateSearchTests.cs │ │ │ ├── ImportHistorySoftDeleteTestFixture.cs │ │ │ ├── ImportHistorySoftDeleteTests.cs │ │ │ ├── ImportNumberSearchTestFixture.cs │ │ │ ├── ImportNumberSearchTests.cs │ │ │ ├── ImportQuantitySearchTestFixture.cs │ │ │ ├── ImportQuantitySearchTests.cs │ │ │ ├── ImportRebuildIndexesTestFixture.cs │ │ │ ├── ImportRebuildIndexesTests.cs │ │ │ ├── ImportReferenceSearchTestFixture.cs │ │ │ ├── ImportReferenceSearchTests.cs │ │ │ ├── ImportStringSearchTestFixture.cs │ │ │ ├── ImportStringSearchTests.cs │ │ │ ├── ImportTestFixture.cs │ │ │ ├── ImportTestHelper.cs │ │ │ ├── ImportTestStorageAccount.cs │ │ │ ├── ImportTests.cs │ │ │ ├── ImportTokenSearchTestFixture.cs │ │ │ ├── ImportTokenSearchTests.cs │ │ │ ├── ImportUriSearchTestFixture.cs │ │ │ ├── ImportUriSearchTests.cs │ │ │ └── StartupForImportTestProvider.cs │ │ ├── InProcTestFhirServer.cs │ │ ├── JsonPatchTests.cs │ │ ├── MemberMatchTestFixture.cs │ │ ├── MemberMatchTests.cs │ │ ├── MetadataTests.cs │ │ ├── Metric │ │ │ ├── MetricHandler.cs │ │ │ ├── MetricTestFixture.cs │ │ │ ├── MetricTests.cs │ │ │ └── StartupWithMetricHandler.cs │ │ ├── ObservationResolveReferenceTests.cs │ │ ├── OperationVersionsTests.cs │ │ ├── ReadTests.cs │ │ ├── RemoteTestFhirServer.cs │ │ ├── RequiresIsolatedDatabaseAttribute.cs │ │ ├── Search │ │ │ ├── BasicSearchTests.cs │ │ │ ├── CanonicalSearchTestFixture.cs │ │ │ ├── CanonicalSearchTests.cs │ │ │ ├── ChainingAndSortTests.cs │ │ │ ├── ChainingSearchTests.cs │ │ │ ├── ChainingSortAndSearchValidationTestFixture.cs │ │ │ ├── CompositeSearchTestFixture.cs │ │ │ ├── CompositeSearchTests.cs │ │ │ ├── CustomSearchParamTests.cs │ │ │ ├── DateSearchTestFixture.cs │ │ │ ├── DateSearchTests.cs │ │ │ ├── EscapeCharactersSearchTests.cs │ │ │ ├── IdSearchTests.cs │ │ │ ├── IncludeSearchTestFixture.cs │ │ │ ├── IncludeSearchTests.cs │ │ │ ├── IncludesOperationTestFixture.cs │ │ │ ├── IncludesOperationTests.cs │ │ │ ├── NotExpressionTests.cs │ │ │ ├── NotReferencedSearchTestFixture.cs │ │ │ ├── NotReferencedSearchTests.cs │ │ │ ├── NumberSearchTestFixture.cs │ │ │ ├── NumberSearchTests.cs │ │ │ ├── QuantitySearchTestFixture.cs │ │ │ ├── QuantitySearchTests.cs │ │ │ ├── ReferenceSearchTestFixture.cs │ │ │ ├── ReferenceSearchTests.cs │ │ │ ├── SearchProxyTests.cs │ │ │ ├── SearchTestsBase.cs │ │ │ ├── SortTests.cs │ │ │ ├── StringSearchTestFixture.cs │ │ │ ├── StringSearchTests.cs │ │ │ ├── TokenOverflowTests.cs │ │ │ ├── TokenSearchTestFixture.cs │ │ │ ├── TokenSearchTests.cs │ │ │ ├── UriSearchTestFixture.cs │ │ │ └── UriSearchTests.cs │ │ ├── SuppressExecutionContextHandler.cs │ │ ├── TestFhirServer.cs │ │ ├── TestFhirServerFactory.cs │ │ ├── TestHelper.cs │ │ ├── UpdateTests.cs │ │ ├── VReadTests.cs │ │ ├── ValidateTestFixture.cs │ │ ├── ValidateTests.cs │ │ └── VersionSpecificTests.cs │ ├── StartupBaseForCustomProviders.cs │ ├── runtimeconfig.template.json │ └── xunit.runner.json ├── Microsoft.Health.Fhir.Shared.Tests.Integration │ ├── AssemblyValidationsTests.cs │ ├── Features │ │ ├── ChangeFeed │ │ │ ├── SqlServerFhirResourceChangeCaptureDisabledTests.cs │ │ │ ├── SqlServerFhirResourceChangeCaptureEnabledTests.cs │ │ │ └── SqlServerFhirResourceChangeCaptureFixture.cs │ │ ├── Operations │ │ │ ├── Export │ │ │ │ ├── CosmosDbExportTests.cs │ │ │ │ ├── CosmosDbFhirExportTestFixture.cs │ │ │ │ ├── CreateExportRequestHandlerTests.cs │ │ │ │ └── SqlServerExportTests.cs │ │ │ ├── FhirOperationDataStoreExportTests.cs │ │ │ ├── FhirOperationDataStoreReindexTests.cs │ │ │ ├── FhirOperationTestConstants.cs │ │ │ └── Reindex │ │ │ │ ├── ReindexJobTests.cs │ │ │ │ └── ReindexSearchTests.cs │ │ └── Smart │ │ │ └── SmartSearchTests.cs │ ├── Microsoft.Health.Fhir.Shared.Tests.Integration.projitems │ ├── Microsoft.Health.Fhir.Shared.Tests.Integration.shproj │ └── Persistence │ │ ├── CosmosDbFhirStorageTestHelper.cs │ │ ├── CosmosDbFhirStorageTestsFixture.cs │ │ ├── FhirStorageTests.cs │ │ ├── FhirStorageTestsFixture.cs │ │ ├── FhirStorageTestsFixtureArgumentSetsAttribute.cs │ │ ├── FhirStorageVersioningPolicyTests.cs │ │ ├── IFhirStorageTestHelper.cs │ │ ├── ISqlServerFhirStorageTestHelper.cs │ │ ├── NullFhirCosmosQueryLogger.cs │ │ ├── QueueClientTests.cs │ │ ├── SearchParameterOptimisticConcurrencyIntegrationTests.cs │ │ ├── SearchParameterStatusDataStoreTests.cs │ │ ├── SqlAzurePipelinesWorkloadIdentityAuthenticationProvider.cs │ │ ├── SqlComplexQueryTests.cs │ │ ├── SqlDataReaderExtensionsTests.cs │ │ ├── SqlRetryServiceTests.cs │ │ ├── SqlServerColumnTypeChangeTests.cs │ │ ├── SqlServerCreateStatsForSmartTests.cs │ │ ├── SqlServerCreateStatsTests.cs │ │ ├── SqlServerFhirStorageTestHelper.cs │ │ ├── SqlServerFhirStorageTestsFixture.cs │ │ ├── SqlServerMemberMatchTests.cs │ │ ├── SqlServerSchemaUpgradeTests.cs │ │ ├── SqlServerSearchParameterInitializationTests.cs │ │ ├── SqlServerSetMergeTests.cs │ │ ├── SqlServerSqlCompatibilityTests.cs │ │ ├── SqlServerTransactionScopeTests.cs │ │ ├── SqlServerWatchdogTests.cs │ │ └── TestSqlHashCalculator.cs ├── Microsoft.Health.Fhir.Shared.Tests.Smart │ ├── AssemblyValidationsTests.cs │ ├── Microsoft.Health.Fhir.Shared.Tests.Smart.projitems │ ├── Microsoft.Health.Fhir.Shared.Tests.Smart.shproj │ └── SmartProxy │ │ ├── SmartProxyBadRequestTests.cs │ │ └── SmartProxyTestFixture.cs ├── Microsoft.Health.Fhir.Stu3.Tests.E2E │ ├── Constants.cs │ ├── Microsoft.Health.Fhir.Stu3.Tests.E2E.csproj │ └── Rest │ │ └── VersionSpecificTests.cs └── Microsoft.Health.Fhir.Stu3.Tests.Integration │ ├── AssemblyInfo.cs │ ├── Microsoft.Health.Fhir.Stu3.Tests.Integration.csproj │ └── Persistence │ ├── FhirStorageTests.cs │ └── FhirStorageVersioningPolicyTests.cs ├── testauthenvironment.json ├── tools ├── AsyncJobGenerator │ ├── GenerateAsyncJob.ps1 │ ├── Readme.md │ └── Templates │ │ ├── Controller.template │ │ ├── Job.template │ │ ├── JobDescription.template │ │ ├── JobResult.template │ │ ├── MediatorCreateRequest.template │ │ ├── MediatorExtensions.template │ │ ├── MediatorHandler.template │ │ ├── MediatorRequest.template │ │ └── MediatorResponse.template ├── BlobRewriter │ ├── App.config │ ├── BlobRewriter.csproj │ └── Program.cs ├── DataStore │ └── Microsoft.Health.Fhir.SchemaManager.Console │ │ ├── Microsoft.Health.Fhir.SchemaManager.Console.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── launchSettings.json │ │ └── appsettings.json ├── EventsReader │ ├── App.config │ ├── EventsReader.csproj │ ├── Program.cs │ └── SqlConnectionBuilder.cs ├── Exporter │ ├── App.config │ ├── CompressedRawResourceConverterCopy.cs │ ├── Exporter.csproj │ ├── Program.cs │ ├── SqlParamaterStringExtension.cs │ └── SqlService.cs ├── FHIRDataSynth │ ├── .editorconfig │ ├── .gitignore │ ├── BlobResourceGroupProcessor.cs │ ├── BlobResourceProcessor.cs │ ├── CalculatorTargetRatios.cs │ ├── FHIRDataSynth.csproj │ ├── FHIRDataSynth.sln │ ├── FHIRDataSynthException.cs │ ├── FileResourceGroupProcessor.cs │ ├── FileResourceProcessor.cs │ ├── GlobalSuppressions.cs │ ├── Program.cs │ ├── RDUtility.cs │ ├── ResourceAdapterBase.cs │ ├── ResourceAllergyIntolerance │ │ ├── ResourceAllergyIntoleranceAdapter.cs │ │ ├── ResourceAllergyIntoleranceExample.json │ │ └── ResourceAllergyIntoleranceJson.generated.cs │ ├── ResourceCarePlan │ │ ├── ResourceCarePlanAdapter.cs │ │ ├── ResourceCarePlanExample.json │ │ └── ResourceCarePlanJson.generated.cs │ ├── ResourceCareTeam │ │ ├── ResourceCareTeamAdapter.cs │ │ ├── ResourceCareTeamExample.json │ │ └── ResourceCareTeamJson.generated.cs │ ├── ResourceClaim │ │ ├── ResourceClaimAdapter.cs │ │ ├── ResourceClaimExample.json │ │ └── ResourceClaimJson.generated.cs │ ├── ResourceCondition │ │ ├── ResourceConditionAdapter.cs │ │ ├── ResourceConditionExample.json │ │ └── ResourceConditionJson.generated.cs │ ├── ResourceDevice │ │ ├── ResourceDeviceAdapter.cs │ │ ├── ResourceDeviceExample.json │ │ └── ResourceDeviceJson.generated.cs │ ├── ResourceDiagnosticReport │ │ ├── ResourceDiagnosticReportAdapter.cs │ │ ├── ResourceDiagnosticReportExample.json │ │ └── ResourceDiagnosticReportJson.generated.cs │ ├── ResourceEncounter │ │ ├── ResourceEncounterAdapter.cs │ │ ├── ResourceEncounterExample.json │ │ └── ResourceEncounterJson.generated.cs │ ├── ResourceExplanationOfBenefit │ │ ├── ResourceExplanationOfBenefitAdapter.cs │ │ ├── ResourceExplanationOfBenefitExample.json │ │ └── ResourceExplanationOfBenefitJson.generated.cs │ ├── ResourceGroupProcessor.cs │ ├── ResourceImagingStudy │ │ ├── ResourceImagingStudyAdapter.cs │ │ ├── ResourceImagingStudyExample.json │ │ └── ResourceImagingStudyJson.generated.cs │ ├── ResourceImmunization │ │ ├── ResourceImmunizationAdapter.cs │ │ ├── ResourceImmunizationExample.json │ │ └── ResourceImmunizationJson.generated.cs │ ├── ResourceMedicationAdministration │ │ ├── ResourceMedicationAdministrationAdapter.cs │ │ ├── ResourceMedicationAdministrationExample.json │ │ └── ResourceMedicationAdministrationJson.generated.cs │ ├── ResourceMedicationRequest │ │ ├── ResourceMedicationRequestAdapter.cs │ │ ├── ResourceMedicationRequestExample.json │ │ └── ResourceMedicationRequestJson.generated.cs │ ├── ResourceObservation │ │ ├── ResourceObservationAdapter.cs │ │ ├── ResourceObservationExample.json │ │ └── ResourceObservationJson.generated.cs │ ├── ResourceOrganization │ │ ├── ResourceOrganizationAdapter.cs │ │ ├── ResourceOrganizationExample.json │ │ └── ResourceOrganizationJson.generated.cs │ ├── ResourcePatient │ │ ├── ResourcePatientAdapter.cs │ │ ├── ResourcePatientExample.json │ │ └── ResourcePatientJson.generated.cs │ ├── ResourcePractitioner │ │ ├── ResourcePractitionerAdapter.cs │ │ ├── ResourcePractitionerExample.json │ │ └── ResourcePractitionerJson.generated.cs │ ├── ResourceProcedure │ │ ├── ResourceProcedureAdapter.cs │ │ ├── ResourceProcedureExample.json │ │ └── ResourceProcedureJson.generated.cs │ ├── ResourceProcessor.cs │ ├── ResourceSiblingsContainer.cs │ ├── ResourceSupplyDelivery │ │ ├── ResourceSupplyDeliveryAdapter.cs │ │ ├── ResourceSupplyDeliveryExample.json │ │ └── ResourceSupplyDeliveryJson.generated.cs │ ├── ResourceXCommunication │ │ ├── ResourceXCommunicationAdapter.cs │ │ ├── ResourceXCommunicationExample.json │ │ └── ResourceXCommunicationJson.generated.cs │ ├── ResourceXDocumentReference │ │ ├── ResourceXDocumentReferenceAdapter.cs │ │ ├── ResourceXDocumentReferenceExample.json │ │ └── ResourceXDocumentReferenceJson.generated.cs │ ├── ResourceXStructureDefinition │ │ ├── ResourceXStructureDefinitionAdapter.cs │ │ ├── ResourceXStructureDefinitionExample.json │ │ └── ResourceXStructureDefinitionJson.generated.cs │ ├── ServerImport.cs │ ├── ServerImportParametersExample.json │ ├── TargetRatios.cs │ ├── _BlendRatiosExample.json │ ├── _FHIRSpec.url │ ├── _Relations.txt │ ├── _TargetRatiosX2.json │ ├── _TargetRatiosX_01.json │ └── _TargetRatiosX_5.json ├── Importer │ ├── App.config │ ├── BearerTokenHandler.cs │ ├── Importer.cs │ ├── Importer.csproj │ ├── Program.cs │ └── readme.md ├── IndexRebuilder │ ├── IndexRebuilder.cs │ ├── IndexRebuilder.csproj │ ├── Program.cs │ ├── app.config │ └── readme.md ├── Microsoft.Health.Fhir.R4.ResourceParser │ ├── Code │ │ ├── ExecutableRequestContextAccessor.cs │ │ ├── MinimalSearchParameterDefinitionBuilder.cs │ │ ├── MinimalSearchParameterDefinitionManager.cs │ │ └── MockClaimsExtractor.cs │ ├── Microsoft.Health.Fhir.R4.ResourceParser.csproj │ ├── Readme.md │ └── ResourceWrapperParser.cs ├── PerfTester │ ├── App.config │ ├── PerfTester.csproj │ └── Program.cs ├── PowerShell │ ├── .gitignore │ ├── FhirDataFunctions.ps1 │ ├── MonitorAsyncJobs.ps1 │ ├── New-CreateSearchIndexerDefaultValueSets.ps1 │ └── Readme.md ├── RegisterAndMonitorImport │ ├── ImportResponse.cs │ ├── Program.cs │ ├── RegisterAndMonitorConfiguration.cs │ ├── RegisterAndMonitorImport.cs │ ├── RegisterAndMonitorImport.csproj │ ├── VerbosityLevel.cs │ ├── appsettings.json │ └── readme.md ├── ResourceParser │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Readme.md │ └── ResourceParser.csproj └── SqlScriptRunner │ ├── App.config │ ├── Program.cs │ └── SqlScriptRunner.csproj └── xunit.runner.json /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.devcontainer/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/.devcontainer/docker-compose.yml -------------------------------------------------------------------------------- /.devcontainer/library-scripts/common-debian.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/.devcontainer/library-scripts/common-debian.sh -------------------------------------------------------------------------------- /.devcontainer/library-scripts/docker-debian.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/.devcontainer/library-scripts/docker-debian.sh -------------------------------------------------------------------------------- /.devcontainer/library-scripts/fix-cert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/.devcontainer/library-scripts/fix-cert.sh -------------------------------------------------------------------------------- /.devcontainer/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/.devcontainer/readme.md -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/.github/ISSUE_TEMPLATE/question.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/user-story.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/.github/ISSUE_TEMPLATE/user-story.md -------------------------------------------------------------------------------- /.github/copilot-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/.github/copilot-instructions.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/.github/labeler.yml -------------------------------------------------------------------------------- /.github/prompts/releasenotesSummarizer.prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/.github/prompts/releasenotesSummarizer.prompt.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/.github/release.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/sync-to-devops.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/.github/workflows/sync-to-devops.yml -------------------------------------------------------------------------------- /.github/workflows/validate-prs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/.github/workflows/validate-prs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CodeCoverage.runsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/CodeCoverage.runsettings -------------------------------------------------------------------------------- /CredScanSuppressions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/CredScanSuppressions.json -------------------------------------------------------------------------------- /CustomAnalysisRules.Test.ruleset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/CustomAnalysisRules.Test.ruleset -------------------------------------------------------------------------------- /CustomAnalysisRules.ruleset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/CustomAnalysisRules.ruleset -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /Directory.Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/Directory.Packages.props -------------------------------------------------------------------------------- /GeoPol.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/GeoPol.xml -------------------------------------------------------------------------------- /GitVersion.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/GitVersion.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/LICENSE -------------------------------------------------------------------------------- /Microsoft.Health.Fhir.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/Microsoft.Health.Fhir.sln -------------------------------------------------------------------------------- /R4.slnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/R4.slnf -------------------------------------------------------------------------------- /R5.slnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/R5.slnf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SquashMergeRequirements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/SquashMergeRequirements.md -------------------------------------------------------------------------------- /THIRDPARTYNOTICES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/THIRDPARTYNOTICES.md -------------------------------------------------------------------------------- /docs/Authentication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/Authentication.md -------------------------------------------------------------------------------- /docs/BashDeployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/BashDeployment.md -------------------------------------------------------------------------------- /docs/BulkExport.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/BulkExport.md -------------------------------------------------------------------------------- /docs/BulkImport.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/BulkImport.md -------------------------------------------------------------------------------- /docs/CodeReviewRulesOfThumb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/CodeReviewRulesOfThumb.md -------------------------------------------------------------------------------- /docs/ConvertDataOperation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/ConvertDataOperation.md -------------------------------------------------------------------------------- /docs/CrucibleTests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/CrucibleTests.md -------------------------------------------------------------------------------- /docs/DefaultDeployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/DefaultDeployment.md -------------------------------------------------------------------------------- /docs/FhirServerInstanceConfiguration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/FhirServerInstanceConfiguration.md -------------------------------------------------------------------------------- /docs/HowToConnectSQLDatabase.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/HowToConnectSQLDatabase.md -------------------------------------------------------------------------------- /docs/HowToDebug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/HowToDebug.md -------------------------------------------------------------------------------- /docs/QuickstartDeployCLI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/QuickstartDeployCLI.md -------------------------------------------------------------------------------- /docs/QuickstartDeployPortal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/QuickstartDeployPortal.md -------------------------------------------------------------------------------- /docs/QuickstartDeployPowershell.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/QuickstartDeployPowershell.md -------------------------------------------------------------------------------- /docs/Register-Client-Application.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/Register-Client-Application.md -------------------------------------------------------------------------------- /docs/Register-Resource-Application.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/Register-Resource-Application.md -------------------------------------------------------------------------------- /docs/Roles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/Roles.md -------------------------------------------------------------------------------- /docs/RunningTheProject.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/RunningTheProject.md -------------------------------------------------------------------------------- /docs/SMARTonFHIR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/SMARTonFHIR.md -------------------------------------------------------------------------------- /docs/SchemaMigrationGuide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/SchemaMigrationGuide.md -------------------------------------------------------------------------------- /docs/SchemaMigrationTool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/SchemaMigrationTool.md -------------------------------------------------------------------------------- /docs/SchemaVersioning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/SchemaVersioning.md -------------------------------------------------------------------------------- /docs/SearchArchitecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/SearchArchitecture.md -------------------------------------------------------------------------------- /docs/SearchParameterCacheRefreshBackgroundService.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/SearchParameterCacheRefreshBackgroundService.md -------------------------------------------------------------------------------- /docs/TelemetryLogging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/TelemetryLogging.md -------------------------------------------------------------------------------- /docs/Testing-Releases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/Testing-Releases.md -------------------------------------------------------------------------------- /docs/Versioning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/Versioning.md -------------------------------------------------------------------------------- /docs/arch/Proposals/adr-2502-Resource-table-refactor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/arch/Proposals/adr-2502-Resource-table-refactor.md -------------------------------------------------------------------------------- /docs/arch/Proposals/adr-2502-ResourceIdIntMap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/arch/Proposals/adr-2502-ResourceIdIntMap.md -------------------------------------------------------------------------------- /docs/arch/Proposals/adr-2502-_include-on-delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/arch/Proposals/adr-2502-_include-on-delete.md -------------------------------------------------------------------------------- /docs/arch/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/arch/Readme.md -------------------------------------------------------------------------------- /docs/arch/adr-2503-Bundle-include-operation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/arch/adr-2503-Bundle-include-operation.md -------------------------------------------------------------------------------- /docs/arch/adr-2503-Not-referenced-search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/arch/adr-2503-Not-referenced-search.md -------------------------------------------------------------------------------- /docs/arch/adr-2504-bulkupdate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/arch/adr-2504-bulkupdate.md -------------------------------------------------------------------------------- /docs/arch/adr-2504-limit-concurrent-merge-resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/arch/adr-2504-limit-concurrent-merge-resources.md -------------------------------------------------------------------------------- /docs/arch/adr-2505-eventual-consistency.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/arch/adr-2505-eventual-consistency.md -------------------------------------------------------------------------------- /docs/arch/adr-2509-not-referenced-search-specific.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/arch/adr-2509-not-referenced-search-specific.md -------------------------------------------------------------------------------- /docs/arch/adr-2510-meta-history.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/arch/adr-2510-meta-history.md -------------------------------------------------------------------------------- /docs/arch/adr-2512-searchparameter-concurrency-management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/arch/adr-2512-searchparameter-concurrency-management.md -------------------------------------------------------------------------------- /docs/arch/adr-fhir-resource-duplication-design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/arch/adr-fhir-resource-duplication-design.md -------------------------------------------------------------------------------- /docs/flow diagrams/bulk-delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/flow diagrams/bulk-delete.md -------------------------------------------------------------------------------- /docs/flow diagrams/bulk-update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/flow diagrams/bulk-update.md -------------------------------------------------------------------------------- /docs/flow diagrams/create-resource.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/flow diagrams/create-resource.md -------------------------------------------------------------------------------- /docs/flow diagrams/read-resource.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/flow diagrams/read-resource.md -------------------------------------------------------------------------------- /docs/flow diagrams/search-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/flow diagrams/search-api.md -------------------------------------------------------------------------------- /docs/flow diagrams/search-compartment-sql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/flow diagrams/search-compartment-sql.md -------------------------------------------------------------------------------- /docs/flow diagrams/search-cosmos-db.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/flow diagrams/search-cosmos-db.md -------------------------------------------------------------------------------- /docs/flow diagrams/search-sql-server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/flow diagrams/search-sql-server.md -------------------------------------------------------------------------------- /docs/flow diagrams/searchindexer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/flow diagrams/searchindexer.md -------------------------------------------------------------------------------- /docs/images/HowToConnectSQLDatabase/choose-user-account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/images/HowToConnectSQLDatabase/choose-user-account.png -------------------------------------------------------------------------------- /docs/images/HowToConnectSQLDatabase/entraid-admin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/images/HowToConnectSQLDatabase/entraid-admin.png -------------------------------------------------------------------------------- /docs/images/HowToConnectSQLDatabase/save-user-admin-account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/images/HowToConnectSQLDatabase/save-user-admin-account.png -------------------------------------------------------------------------------- /docs/images/HowToDebug/DebuggingOptions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/images/HowToDebug/DebuggingOptions.png -------------------------------------------------------------------------------- /docs/images/HowToDebug/DownloadSource.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/images/HowToDebug/DownloadSource.png -------------------------------------------------------------------------------- /docs/images/SMARTonFHIR/CORS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/images/SMARTonFHIR/CORS.png -------------------------------------------------------------------------------- /docs/images/SMARTonFHIR/app-service-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/images/SMARTonFHIR/app-service-settings.png -------------------------------------------------------------------------------- /docs/images/SchemaVersioning/migration-steps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/images/SchemaVersioning/migration-steps.png -------------------------------------------------------------------------------- /docs/images/SchemaVersioning/upgrade-steps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/images/SchemaVersioning/upgrade-steps.png -------------------------------------------------------------------------------- /docs/images/Search/extraction-process.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/images/Search/extraction-process.png -------------------------------------------------------------------------------- /docs/images/bulk-import/arm-template-portal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/images/bulk-import/arm-template-portal.png -------------------------------------------------------------------------------- /docs/images/bulk-import/set-initial-import-mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/images/bulk-import/set-initial-import-mode.png -------------------------------------------------------------------------------- /docs/images/client-application/requestapipermission.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/images/client-application/requestapipermission.png -------------------------------------------------------------------------------- /docs/images/container-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/images/container-logo.svg -------------------------------------------------------------------------------- /docs/images/convert-data/acr-rbac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/images/convert-data/acr-rbac.png -------------------------------------------------------------------------------- /docs/images/convert-data/acr-registration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/images/convert-data/acr-registration.png -------------------------------------------------------------------------------- /docs/images/devcontainers/devcontainer1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/images/devcontainers/devcontainer1.png -------------------------------------------------------------------------------- /docs/images/devcontainers/devcontainer2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/images/devcontainers/devcontainer2.png -------------------------------------------------------------------------------- /docs/images/devcontainers/devcontainer3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/images/devcontainers/devcontainer3.png -------------------------------------------------------------------------------- /docs/images/devcontainers/devcontainer4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/images/devcontainers/devcontainer4.png -------------------------------------------------------------------------------- /docs/images/quickstart-oss-portal/deployment-custom-parameters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/images/quickstart-oss-portal/deployment-custom-parameters.png -------------------------------------------------------------------------------- /docs/images/quickstart-oss-portal/deployment-page-oss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/images/quickstart-oss-portal/deployment-page-oss.png -------------------------------------------------------------------------------- /docs/images/resource-application/approles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/images/resource-application/approles.png -------------------------------------------------------------------------------- /docs/images/resource-application/portal-aad-new-app-registration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/images/resource-application/portal-aad-new-app-registration.png -------------------------------------------------------------------------------- /docs/rest/Bug Repros/Pagination Bug - 8-2024/PaginationBug.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/Bug Repros/Pagination Bug - 8-2024/PaginationBug.http -------------------------------------------------------------------------------- /docs/rest/Bug Repros/Pagination Bug - 8-2024/PaginationBugData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/Bug Repros/Pagination Bug - 8-2024/PaginationBugData.json -------------------------------------------------------------------------------- /docs/rest/Bug Repros/Pagination Bug - 8-2024/PaginationBugData2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/Bug Repros/Pagination Bug - 8-2024/PaginationBugData2.json -------------------------------------------------------------------------------- /docs/rest/BulkDelete.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/BulkDelete.http -------------------------------------------------------------------------------- /docs/rest/BulkUpdate.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/BulkUpdate.http -------------------------------------------------------------------------------- /docs/rest/C4BB/C4BB.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/C4BB/C4BB.http -------------------------------------------------------------------------------- /docs/rest/C4BB/C4BBOverview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/C4BB/C4BBOverview.md -------------------------------------------------------------------------------- /docs/rest/C4BB/C4BB_Sample_Resources.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/C4BB/C4BB_Sample_Resources.http -------------------------------------------------------------------------------- /docs/rest/C4BB/Profiles/C4BBCoverage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/C4BB/Profiles/C4BBCoverage.json -------------------------------------------------------------------------------- /docs/rest/C4BB/Profiles/C4BBEOBInpatientInstitutional.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/C4BB/Profiles/C4BBEOBInpatientInstitutional.json -------------------------------------------------------------------------------- /docs/rest/C4BB/Profiles/C4BBEOBOutpatientInstitutional.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/C4BB/Profiles/C4BBEOBOutpatientInstitutional.json -------------------------------------------------------------------------------- /docs/rest/C4BB/Profiles/C4BBEOBPharmacy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/C4BB/Profiles/C4BBEOBPharmacy.json -------------------------------------------------------------------------------- /docs/rest/C4BB/Profiles/C4BBEOBProfessional.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/C4BB/Profiles/C4BBEOBProfessional.json -------------------------------------------------------------------------------- /docs/rest/C4BB/Profiles/C4BBOrganization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/C4BB/Profiles/C4BBOrganization.json -------------------------------------------------------------------------------- /docs/rest/C4BB/Profiles/C4BBPatient.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/C4BB/Profiles/C4BBPatient.json -------------------------------------------------------------------------------- /docs/rest/C4BB/Profiles/C4BBPractitioner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/C4BB/Profiles/C4BBPractitioner.json -------------------------------------------------------------------------------- /docs/rest/C4BB/SearchParameters/EOBInsurer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/C4BB/SearchParameters/EOBInsurer.json -------------------------------------------------------------------------------- /docs/rest/C4BB/SearchParameters/EOBServiceDate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/C4BB/SearchParameters/EOBServiceDate.json -------------------------------------------------------------------------------- /docs/rest/C4BB/SearchParameters/EOBType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/C4BB/SearchParameters/EOBType.json -------------------------------------------------------------------------------- /docs/rest/CompartmentSearchExamples.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/CompartmentSearchExamples.http -------------------------------------------------------------------------------- /docs/rest/ComplexSQLQueryServiceRequest.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/ComplexSQLQueryServiceRequest.http -------------------------------------------------------------------------------- /docs/rest/ConditionalDeleteRequests.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/ConditionalDeleteRequests.http -------------------------------------------------------------------------------- /docs/rest/DaVinciFormulary/DaVinciFormulary.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/DaVinciFormulary/DaVinciFormulary.http -------------------------------------------------------------------------------- /docs/rest/DaVinciFormulary/DaVinciFormulary_Overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/DaVinciFormulary/DaVinciFormulary_Overview.md -------------------------------------------------------------------------------- /docs/rest/DaVinciFormulary/DaVinciFormulary_Sample_Resources.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/DaVinciFormulary/DaVinciFormulary_Sample_Resources.http -------------------------------------------------------------------------------- /docs/rest/DaVinciFormulary/Profiles/DavinciCoveragePlan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/DaVinciFormulary/Profiles/DavinciCoveragePlan.json -------------------------------------------------------------------------------- /docs/rest/DaVinciFormulary/Profiles/DavinciFormularyDrug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/DaVinciFormulary/Profiles/DavinciFormularyDrug.json -------------------------------------------------------------------------------- /docs/rest/DaVinciFormulary/SearchParameters/DaVinciDrugName.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/DaVinciFormulary/SearchParameters/DaVinciDrugName.json -------------------------------------------------------------------------------- /docs/rest/DaVinciFormulary/SearchParameters/DaVinciDrugPlan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/DaVinciFormulary/SearchParameters/DaVinciDrugPlan.json -------------------------------------------------------------------------------- /docs/rest/DaVinciFormulary/SearchParameters/DaVinciDrugTier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/DaVinciFormulary/SearchParameters/DaVinciDrugTier.json -------------------------------------------------------------------------------- /docs/rest/DaVinciPlanNet/DaVinci_PlanNet.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/DaVinciPlanNet/DaVinci_PlanNet.http -------------------------------------------------------------------------------- /docs/rest/DaVinciPlanNet/DaVinci_PlanNet_Overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/DaVinciPlanNet/DaVinci_PlanNet_Overview.md -------------------------------------------------------------------------------- /docs/rest/DaVinciPlanNet/DaVinci_PlanNet_Sample_Resources.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/DaVinciPlanNet/DaVinci_PlanNet_Sample_Resources.http -------------------------------------------------------------------------------- /docs/rest/DaVinciPlanNet/Extensions/Accessibility.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/DaVinciPlanNet/Extensions/Accessibility.json -------------------------------------------------------------------------------- /docs/rest/DaVinciPlanNet/Extensions/CommunicationProficiency.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/DaVinciPlanNet/Extensions/CommunicationProficiency.json -------------------------------------------------------------------------------- /docs/rest/DaVinciPlanNet/Extensions/ContactPointAvailableTime.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/DaVinciPlanNet/Extensions/ContactPointAvailableTime.json -------------------------------------------------------------------------------- /docs/rest/DaVinciPlanNet/Extensions/DeliveryMethod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/DaVinciPlanNet/Extensions/DeliveryMethod.json -------------------------------------------------------------------------------- /docs/rest/DaVinciPlanNet/Extensions/EndpointUsecase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/DaVinciPlanNet/Extensions/EndpointUsecase.json -------------------------------------------------------------------------------- /docs/rest/DaVinciPlanNet/Extensions/LocationReference.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/DaVinciPlanNet/Extensions/LocationReference.json -------------------------------------------------------------------------------- /docs/rest/DaVinciPlanNet/Extensions/NetworkReference.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/DaVinciPlanNet/Extensions/NetworkReference.json -------------------------------------------------------------------------------- /docs/rest/DaVinciPlanNet/Extensions/NewPatients.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/DaVinciPlanNet/Extensions/NewPatients.json -------------------------------------------------------------------------------- /docs/rest/DaVinciPlanNet/Extensions/OrgDescription.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/DaVinciPlanNet/Extensions/OrgDescription.json -------------------------------------------------------------------------------- /docs/rest/DaVinciPlanNet/Extensions/PractitionerQualification.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/DaVinciPlanNet/Extensions/PractitionerQualification.json -------------------------------------------------------------------------------- /docs/rest/DaVinciPlanNet/Extensions/Qualification.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/DaVinciPlanNet/Extensions/Qualification.json -------------------------------------------------------------------------------- /docs/rest/DaVinciPlanNet/Extensions/ViaIntermediary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/DaVinciPlanNet/Extensions/ViaIntermediary.json -------------------------------------------------------------------------------- /docs/rest/DaVinciPlanNet/Profiles/Location.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/DaVinciPlanNet/Profiles/Location.json -------------------------------------------------------------------------------- /docs/rest/DaVinciPlanNet/Profiles/Network.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/DaVinciPlanNet/Profiles/Network.json -------------------------------------------------------------------------------- /docs/rest/DaVinciPlanNet/SearchParameters/InsurancePlanPlanType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/DaVinciPlanNet/SearchParameters/InsurancePlanPlanType.json -------------------------------------------------------------------------------- /docs/rest/Data/BulkUpdateSampleData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/Data/BulkUpdateSampleData.json -------------------------------------------------------------------------------- /docs/rest/Data/BundleBatch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/Data/BundleBatch.json -------------------------------------------------------------------------------- /docs/rest/Data/BundleForGets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/Data/BundleForGets.json -------------------------------------------------------------------------------- /docs/rest/Data/BundleTransaction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/Data/BundleTransaction.json -------------------------------------------------------------------------------- /docs/rest/Data/CompositeCustomSearchParameter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/Data/CompositeCustomSearchParameter.json -------------------------------------------------------------------------------- /docs/rest/Data/CompositeCustomTokenStringSearchParameter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/Data/CompositeCustomTokenStringSearchParameter.json -------------------------------------------------------------------------------- /docs/rest/Data/CustomSearchPatient.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/Data/CustomSearchPatient.json -------------------------------------------------------------------------------- /docs/rest/Data/CustomSearchPatientsAdditional.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/Data/CustomSearchPatientsAdditional.json -------------------------------------------------------------------------------- /docs/rest/Data/CustomSearchSearchParameter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/Data/CustomSearchSearchParameter.json -------------------------------------------------------------------------------- /docs/rest/Data/CustomSearchSearchParameter2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/Data/CustomSearchSearchParameter2.json -------------------------------------------------------------------------------- /docs/rest/Data/DateCustomSearchSearchParameter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/Data/DateCustomSearchSearchParameter.json -------------------------------------------------------------------------------- /docs/rest/Data/DateCustomSearchSearchParameter2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/Data/DateCustomSearchSearchParameter2.json -------------------------------------------------------------------------------- /docs/rest/Data/ExportDataBatch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/Data/ExportDataBatch.json -------------------------------------------------------------------------------- /docs/rest/Data/PatientAWithTokenOverflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/Data/PatientAWithTokenOverflow.json -------------------------------------------------------------------------------- /docs/rest/Data/PatientBWithTokenOverflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/Data/PatientBWithTokenOverflow.json -------------------------------------------------------------------------------- /docs/rest/Data/PatientCWithMaxNoTokenOverflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/Data/PatientCWithMaxNoTokenOverflow.json -------------------------------------------------------------------------------- /docs/rest/Data/PatientDWithShortNoTokenOverflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/Data/PatientDWithShortNoTokenOverflow.json -------------------------------------------------------------------------------- /docs/rest/Data/R4ExamplePatient.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/Data/R4ExamplePatient.json -------------------------------------------------------------------------------- /docs/rest/Data/ReindexObservation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/Data/ReindexObservation.json -------------------------------------------------------------------------------- /docs/rest/Data/ReindexPatient.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/Data/ReindexPatient.json -------------------------------------------------------------------------------- /docs/rest/Data/ReindexSearchParameter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/Data/ReindexSearchParameter.json -------------------------------------------------------------------------------- /docs/rest/Data/SMARTv2ScopesBundleTransaction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/Data/SMARTv2ScopesBundleTransaction.json -------------------------------------------------------------------------------- /docs/rest/Data/SearchDataBatch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/Data/SearchDataBatch.json -------------------------------------------------------------------------------- /docs/rest/Data/SmartCompartmentResources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/Data/SmartCompartmentResources.json -------------------------------------------------------------------------------- /docs/rest/Data/StatusUpdateOperationData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/Data/StatusUpdateOperationData.json -------------------------------------------------------------------------------- /docs/rest/ExportRequests.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/ExportRequests.http -------------------------------------------------------------------------------- /docs/rest/FhirPatchRequests.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/FhirPatchRequests.http -------------------------------------------------------------------------------- /docs/rest/Import.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/Import.http -------------------------------------------------------------------------------- /docs/rest/Inferno/Inferno.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/Inferno/Inferno.http -------------------------------------------------------------------------------- /docs/rest/Inferno/V3.1.1_USCoreCompliantResources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/Inferno/V3.1.1_USCoreCompliantResources.json -------------------------------------------------------------------------------- /docs/rest/InvalidCustomSearchParameterHandling.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/InvalidCustomSearchParameterHandling.http -------------------------------------------------------------------------------- /docs/rest/JsonPatchRequests.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/JsonPatchRequests.http -------------------------------------------------------------------------------- /docs/rest/PatientEverythingLinks.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/PatientEverythingLinks.http -------------------------------------------------------------------------------- /docs/rest/PayerDataExchange/PDex_Sample_Data.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/PayerDataExchange/PDex_Sample_Data.http -------------------------------------------------------------------------------- /docs/rest/PayerDataExchange/PayerDataExchangeOverview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/PayerDataExchange/PayerDataExchangeOverview.md -------------------------------------------------------------------------------- /docs/rest/PayerDataExchange/USCore.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/PayerDataExchange/USCore.http -------------------------------------------------------------------------------- /docs/rest/PayerDataExchange/US_Core_Profiles/AllergyIntolerance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/PayerDataExchange/US_Core_Profiles/AllergyIntolerance.json -------------------------------------------------------------------------------- /docs/rest/PayerDataExchange/US_Core_Profiles/CarePlan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/PayerDataExchange/US_Core_Profiles/CarePlan.json -------------------------------------------------------------------------------- /docs/rest/PayerDataExchange/US_Core_Profiles/CareTeam.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/PayerDataExchange/US_Core_Profiles/CareTeam.json -------------------------------------------------------------------------------- /docs/rest/PayerDataExchange/US_Core_Profiles/Condition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/PayerDataExchange/US_Core_Profiles/Condition.json -------------------------------------------------------------------------------- /docs/rest/PayerDataExchange/US_Core_Profiles/DocumentReference.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/PayerDataExchange/US_Core_Profiles/DocumentReference.json -------------------------------------------------------------------------------- /docs/rest/PayerDataExchange/US_Core_Profiles/Encounter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/PayerDataExchange/US_Core_Profiles/Encounter.json -------------------------------------------------------------------------------- /docs/rest/PayerDataExchange/US_Core_Profiles/Goal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/PayerDataExchange/US_Core_Profiles/Goal.json -------------------------------------------------------------------------------- /docs/rest/PayerDataExchange/US_Core_Profiles/Immunization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/PayerDataExchange/US_Core_Profiles/Immunization.json -------------------------------------------------------------------------------- /docs/rest/PayerDataExchange/US_Core_Profiles/Implantable-Device.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/PayerDataExchange/US_Core_Profiles/Implantable-Device.json -------------------------------------------------------------------------------- /docs/rest/PayerDataExchange/US_Core_Profiles/Location.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/PayerDataExchange/US_Core_Profiles/Location.json -------------------------------------------------------------------------------- /docs/rest/PayerDataExchange/US_Core_Profiles/Medication.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/PayerDataExchange/US_Core_Profiles/Medication.json -------------------------------------------------------------------------------- /docs/rest/PayerDataExchange/US_Core_Profiles/MedicationRequest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/PayerDataExchange/US_Core_Profiles/MedicationRequest.json -------------------------------------------------------------------------------- /docs/rest/PayerDataExchange/US_Core_Profiles/Observation-Lab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/PayerDataExchange/US_Core_Profiles/Observation-Lab.json -------------------------------------------------------------------------------- /docs/rest/PayerDataExchange/US_Core_Profiles/Organization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/PayerDataExchange/US_Core_Profiles/Organization.json -------------------------------------------------------------------------------- /docs/rest/PayerDataExchange/US_Core_Profiles/Patient.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/PayerDataExchange/US_Core_Profiles/Patient.json -------------------------------------------------------------------------------- /docs/rest/PayerDataExchange/US_Core_Profiles/Practitioner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/PayerDataExchange/US_Core_Profiles/Practitioner.json -------------------------------------------------------------------------------- /docs/rest/PayerDataExchange/US_Core_Profiles/PractitionerRole.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/PayerDataExchange/US_Core_Profiles/PractitionerRole.json -------------------------------------------------------------------------------- /docs/rest/PayerDataExchange/US_Core_Profiles/Procedure.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/PayerDataExchange/US_Core_Profiles/Procedure.json -------------------------------------------------------------------------------- /docs/rest/PayerDataExchange/US_Core_Profiles/Provenance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/PayerDataExchange/US_Core_Profiles/Provenance.json -------------------------------------------------------------------------------- /docs/rest/PayerDataExchange/US_Core_Profiles/bodyheight.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/PayerDataExchange/US_Core_Profiles/bodyheight.json -------------------------------------------------------------------------------- /docs/rest/PayerDataExchange/US_Core_Profiles/bodytemp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/PayerDataExchange/US_Core_Profiles/bodytemp.json -------------------------------------------------------------------------------- /docs/rest/PayerDataExchange/US_Core_Profiles/bodyweight.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/PayerDataExchange/US_Core_Profiles/bodyweight.json -------------------------------------------------------------------------------- /docs/rest/PayerDataExchange/US_Core_Profiles/bp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/PayerDataExchange/US_Core_Profiles/bp.json -------------------------------------------------------------------------------- /docs/rest/PayerDataExchange/US_Core_Profiles/headcircum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/PayerDataExchange/US_Core_Profiles/headcircum.json -------------------------------------------------------------------------------- /docs/rest/PayerDataExchange/US_Core_Profiles/heartrate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/PayerDataExchange/US_Core_Profiles/heartrate.json -------------------------------------------------------------------------------- /docs/rest/PayerDataExchange/US_Core_Profiles/pulse-oximetry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/PayerDataExchange/US_Core_Profiles/pulse-oximetry.json -------------------------------------------------------------------------------- /docs/rest/PayerDataExchange/US_Core_Profiles/resprate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/PayerDataExchange/US_Core_Profiles/resprate.json -------------------------------------------------------------------------------- /docs/rest/PayerDataExchange/US_Core_Profiles/smokingstatus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/PayerDataExchange/US_Core_Profiles/smokingstatus.json -------------------------------------------------------------------------------- /docs/rest/PayerDataExchange/US_Core_Profiles/vitalsign.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/PayerDataExchange/US_Core_Profiles/vitalsign.json -------------------------------------------------------------------------------- /docs/rest/PayerDataExchange/membermatch.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/PayerDataExchange/membermatch.http -------------------------------------------------------------------------------- /docs/rest/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/Readme.md -------------------------------------------------------------------------------- /docs/rest/ReindexFlowResourceBase.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/ReindexFlowResourceBase.http -------------------------------------------------------------------------------- /docs/rest/ReindexFlowTargettingResourceExtensions.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/ReindexFlowTargettingResourceExtensions.http -------------------------------------------------------------------------------- /docs/rest/ResourceSpecificDisableHistory.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/ResourceSpecificDisableHistory.http -------------------------------------------------------------------------------- /docs/rest/SMARTScopesExample.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/SMARTScopesExample.http -------------------------------------------------------------------------------- /docs/rest/SMARTv2ScopesExample.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/SMARTv2ScopesExample.http -------------------------------------------------------------------------------- /docs/rest/SMARTv2ScopesWithSearchParametersExample.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/SMARTv2ScopesWithSearchParametersExample.http -------------------------------------------------------------------------------- /docs/rest/SearchExamples.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/SearchExamples.http -------------------------------------------------------------------------------- /docs/rest/SmartCompartmentRequests.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/SmartCompartmentRequests.http -------------------------------------------------------------------------------- /docs/rest/TokenOverflowSearchExample.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/TokenOverflowSearchExample.http -------------------------------------------------------------------------------- /docs/rest/USCoreExamples.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/USCoreExamples.http -------------------------------------------------------------------------------- /docs/rest/VersionedUpdateExample.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/VersionedUpdateExample.http -------------------------------------------------------------------------------- /docs/rest/binary-example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/binary-example.json -------------------------------------------------------------------------------- /docs/rest/complexQueries.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/complexQueries.http -------------------------------------------------------------------------------- /docs/rest/customSearchExample.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/customSearchExample.http -------------------------------------------------------------------------------- /docs/rest/selectableSearchParameterExamples.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/rest/selectableSearchParameterExamples.http -------------------------------------------------------------------------------- /docs/schema-manager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/docs/schema-manager.md -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/global.json -------------------------------------------------------------------------------- /nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/nuget.config -------------------------------------------------------------------------------- /release/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/release/docker-compose.yaml -------------------------------------------------------------------------------- /release/scripts/PowerShell/FhirServerRelease/FhirServerRelease.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/release/scripts/PowerShell/FhirServerRelease/FhirServerRelease.psd1 -------------------------------------------------------------------------------- /release/scripts/PowerShell/FhirServerRelease/FhirServerRelease.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/release/scripts/PowerShell/FhirServerRelease/FhirServerRelease.psm1 -------------------------------------------------------------------------------- /samples/apps/SmartLauncher/Models/SmartLauncherConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/samples/apps/SmartLauncher/Models/SmartLauncherConfig.cs -------------------------------------------------------------------------------- /samples/apps/SmartLauncher/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/samples/apps/SmartLauncher/Program.cs -------------------------------------------------------------------------------- /samples/apps/SmartLauncher/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/samples/apps/SmartLauncher/Properties/launchSettings.json -------------------------------------------------------------------------------- /samples/apps/SmartLauncher/SmartLauncher.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/samples/apps/SmartLauncher/SmartLauncher.csproj -------------------------------------------------------------------------------- /samples/apps/SmartLauncher/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/samples/apps/SmartLauncher/Startup.cs -------------------------------------------------------------------------------- /samples/apps/SmartLauncher/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/samples/apps/SmartLauncher/appsettings.json -------------------------------------------------------------------------------- /samples/apps/SmartLauncher/wwwroot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/samples/apps/SmartLauncher/wwwroot/index.html -------------------------------------------------------------------------------- /samples/apps/SmartLauncher/wwwroot/sampleapp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/samples/apps/SmartLauncher/wwwroot/sampleapp/index.html -------------------------------------------------------------------------------- /samples/apps/SmartLauncher/wwwroot/sampleapp/launch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/samples/apps/SmartLauncher/wwwroot/sampleapp/launch.html -------------------------------------------------------------------------------- /samples/docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/samples/docker/README.md -------------------------------------------------------------------------------- /samples/docker/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/samples/docker/docker-compose.yaml -------------------------------------------------------------------------------- /samples/kubernetes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/samples/kubernetes/README.md -------------------------------------------------------------------------------- /samples/kubernetes/deploy-aks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/samples/kubernetes/deploy-aks.sh -------------------------------------------------------------------------------- /samples/kubernetes/helm/fhir-server/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/samples/kubernetes/helm/fhir-server/.helmignore -------------------------------------------------------------------------------- /samples/kubernetes/helm/fhir-server/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/samples/kubernetes/helm/fhir-server/Chart.yaml -------------------------------------------------------------------------------- /samples/kubernetes/helm/fhir-server/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/samples/kubernetes/helm/fhir-server/templates/NOTES.txt -------------------------------------------------------------------------------- /samples/kubernetes/helm/fhir-server/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/samples/kubernetes/helm/fhir-server/templates/_helpers.tpl -------------------------------------------------------------------------------- /samples/kubernetes/helm/fhir-server/templates/azureidentity.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/samples/kubernetes/helm/fhir-server/templates/azureidentity.yaml -------------------------------------------------------------------------------- /samples/kubernetes/helm/fhir-server/templates/azuresqldatabase.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/samples/kubernetes/helm/fhir-server/templates/azuresqldatabase.yaml -------------------------------------------------------------------------------- /samples/kubernetes/helm/fhir-server/templates/azuresqlserver.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/samples/kubernetes/helm/fhir-server/templates/azuresqlserver.yaml -------------------------------------------------------------------------------- /samples/kubernetes/helm/fhir-server/templates/cosmosdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/samples/kubernetes/helm/fhir-server/templates/cosmosdb.yaml -------------------------------------------------------------------------------- /samples/kubernetes/helm/fhir-server/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/samples/kubernetes/helm/fhir-server/templates/deployment.yaml -------------------------------------------------------------------------------- /samples/kubernetes/helm/fhir-server/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/samples/kubernetes/helm/fhir-server/templates/ingress.yaml -------------------------------------------------------------------------------- /samples/kubernetes/helm/fhir-server/templates/metricsservice.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/samples/kubernetes/helm/fhir-server/templates/metricsservice.yaml -------------------------------------------------------------------------------- /samples/kubernetes/helm/fhir-server/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/samples/kubernetes/helm/fhir-server/templates/service.yaml -------------------------------------------------------------------------------- /samples/kubernetes/helm/fhir-server/templates/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/samples/kubernetes/helm/fhir-server/templates/servicemonitor.yaml -------------------------------------------------------------------------------- /samples/kubernetes/helm/fhir-server/templates/sqlcontainerpvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/samples/kubernetes/helm/fhir-server/templates/sqlcontainerpvc.yaml -------------------------------------------------------------------------------- /samples/kubernetes/helm/fhir-server/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/samples/kubernetes/helm/fhir-server/values.yaml -------------------------------------------------------------------------------- /samples/scripts/PowerShell/FhirServer/FhirServer.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/samples/scripts/PowerShell/FhirServer/FhirServer.psd1 -------------------------------------------------------------------------------- /samples/scripts/PowerShell/FhirServer/FhirServer.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/samples/scripts/PowerShell/FhirServer/FhirServer.psm1 -------------------------------------------------------------------------------- /samples/scripts/PowerShell/FhirServer/Private/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/scripts/bash/create-aad-api-application-registration.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/samples/scripts/bash/create-aad-api-application-registration.sh -------------------------------------------------------------------------------- /samples/scripts/bash/create-aad-client-application-registration.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/samples/scripts/bash/create-aad-client-application-registration.sh -------------------------------------------------------------------------------- /samples/templates/default-azuredeploy-docker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/samples/templates/default-azuredeploy-docker.json -------------------------------------------------------------------------------- /samples/templates/default-sqlServer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/samples/templates/default-sqlServer.json -------------------------------------------------------------------------------- /samples/templates/nsp-resource-association.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/samples/templates/nsp-resource-association.json -------------------------------------------------------------------------------- /samples/templates/nsp-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/samples/templates/nsp-template.json -------------------------------------------------------------------------------- /src/Microsoft.Health.Extensions.Xunit/AssemblyFixtureAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Extensions.Xunit/AssemblyFixtureAttribute.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Extensions.Xunit/CustomXunitTestFramework.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Extensions.Xunit/CustomXunitTestFramework.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Extensions.Xunit/IClassFixtureExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Extensions.Xunit/IClassFixtureExtensions.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Extensions.Xunit/NotTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Extensions.Xunit/NotTest.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Extensions.Xunit/RetryFactAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Extensions.Xunit/RetryFactAttribute.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Extensions.Xunit/RetryFactDiscoverer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Extensions.Xunit/RetryFactDiscoverer.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Extensions.Xunit/RetryTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Extensions.Xunit/RetryTestCase.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Extensions.Xunit/RetryTheoryAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Extensions.Xunit/RetryTheoryAttribute.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Extensions.Xunit/RetryTheoryDiscoverer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Extensions.Xunit/RetryTheoryDiscoverer.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Extensions.Xunit/SingleFlag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Extensions.Xunit/SingleFlag.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Api/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Api/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Api/Configs/FeatureConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Api/Configs/FeatureConfiguration.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Api/Configs/FhirServerConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Api/Configs/FhirServerConfiguration.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Api/Configs/ThrottlingConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Api/Configs/ThrottlingConfiguration.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Api/Extensions/ExceptionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Api/Extensions/ExceptionExtensions.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Api/Extensions/HttpRequestExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Api/Extensions/HttpRequestExtensions.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Api/Features/ActionResults/ExportResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Api/Features/ActionResults/ExportResult.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Api/Features/ActionResults/ImportResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Api/Features/ActionResults/ImportResult.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Api/Features/ActionResults/JobResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Api/Features/ActionResults/JobResult.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Api/Features/Audit/AuditHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Api/Features/Audit/AuditHelper.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Api/Features/Routing/UrlResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Api/Features/Routing/UrlResolver.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Api/Microsoft.Health.Fhir.Api.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Api/Microsoft.Health.Fhir.Api.csproj -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Api/Models/CodePreviewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Api/Models/CodePreviewModel.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Api/Models/HardDeleteModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Api/Models/HardDeleteModel.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Api/Models/HistoryModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Api/Models/HistoryModel.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Api/Modules/ApiNotificationModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Api/Modules/ApiNotificationModule.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Api/Modules/AuditModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Api/Modules/AuditModule.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Api/Modules/SecurityModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Api/Modules/SecurityModule.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Api/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Api/Resources.Designer.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Api/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Api/Resources.resx -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Api/Views/Shared/ViewJson.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Api/Views/Shared/ViewJson.cshtml -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Api/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Api/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Api/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Api/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Api/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Api/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Azure/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Azure/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Azure/Microsoft.Health.Fhir.Azure.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Azure/Microsoft.Health.Fhir.Azure.csproj -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Azure/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Azure/Resources.Designer.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Azure/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Azure/Resources.resx -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core.UnitTests/AssemblyValidationsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core.UnitTests/AssemblyValidationsTests.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core.UnitTests/Extensions/XUnitLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core.UnitTests/Extensions/XUnitLogger.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Configs/ArtifactStoreConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Configs/ArtifactStoreConfiguration.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Configs/AuthorizationConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Configs/AuthorizationConfiguration.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Configs/BulkDeleteJobConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Configs/BulkDeleteJobConfiguration.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Configs/BulkUpdateJobConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Configs/BulkUpdateJobConfiguration.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Configs/BundleConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Configs/BundleConfiguration.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Configs/ConvertDataConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Configs/ConvertDataConfiguration.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Configs/CoreFeatureConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Configs/CoreFeatureConfiguration.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Configs/EncryptionConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Configs/EncryptionConfiguration.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Configs/EncryptionKeyIdentity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Configs/EncryptionKeyIdentity.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Configs/ExportJobConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Configs/ExportJobConfiguration.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Configs/ImportJobConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Configs/ImportJobConfiguration.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Configs/OperationsConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Configs/OperationsConfiguration.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Configs/ReindexJobConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Configs/ReindexJobConfiguration.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Configs/ResourceManagerConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Configs/ResourceManagerConfig.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Configs/SecurityConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Configs/SecurityConfiguration.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Configs/TaskHostingConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Configs/TaskHostingConfiguration.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Configs/TelemetryConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Configs/TelemetryConfiguration.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Configs/TerminologyConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Configs/TerminologyConfiguration.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Configs/USCoreConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Configs/USCoreConfiguration.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Configs/VersioningConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Configs/VersioningConfiguration.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Data/DataLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Data/DataLoader.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Data/OperationDefinition/docref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Data/OperationDefinition/docref.json -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Data/OperationDefinition/export.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Data/OperationDefinition/export.json -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Data/OperationDefinition/reindex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Data/OperationDefinition/reindex.json -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Data/R4/BaseCapabilities.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Data/R4/BaseCapabilities.json -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Data/R4/compartment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Data/R4/compartment.json -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Data/R4/search-parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Data/R4/search-parameters.json -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Data/R4B/BaseCapabilities.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Data/R4B/BaseCapabilities.json -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Data/R4B/compartment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Data/R4B/compartment.json -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Data/R4B/search-parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Data/R4B/search-parameters.json -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Data/R5/BaseCapabilities.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Data/R5/BaseCapabilities.json -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Data/R5/compartment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Data/R5/compartment.json -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Data/R5/search-parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Data/R5/search-parameters.json -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Data/Stu3/BaseCapabilities.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Data/Stu3/BaseCapabilities.json -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Data/Stu3/compartment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Data/Stu3/compartment.json -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Data/Stu3/search-parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Data/Stu3/search-parameters.json -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Exceptions/FhirException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Exceptions/FhirException.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Exceptions/InitializationException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Exceptions/InitializationException.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Exceptions/NotAcceptableException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Exceptions/NotAcceptableException.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Exceptions/RequestTimeoutException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Exceptions/RequestTimeoutException.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Exceptions/ResourceGoneException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Exceptions/ResourceGoneException.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Exceptions/ResourceSqlException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Exceptions/ResourceSqlException.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Exceptions/SqlQueryPlanException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Exceptions/SqlQueryPlanException.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Extensions/Clock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Extensions/Clock.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Extensions/ClockResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Extensions/ClockResolver.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Extensions/CommonModelExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Extensions/CommonModelExtensions.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Extensions/ElementValueExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Extensions/ElementValueExtensions.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Extensions/EnumExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Extensions/EnumExtensions.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Extensions/EnumerableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Extensions/EnumerableExtensions.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Extensions/ExceptionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Extensions/ExceptionExtensions.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Extensions/ExpressionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Extensions/ExpressionExtensions.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Extensions/IdHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Extensions/IdHelper.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Extensions/PreferHeaderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Extensions/PreferHeaderExtensions.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Extensions/RawResourceExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Extensions/RawResourceExtensions.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Extensions/ResourceTypeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Extensions/ResourceTypeExtensions.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Extensions/SearchServiceExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Extensions/SearchServiceExtensions.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Extensions/TypedElementExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Extensions/TypedElementExtensions.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Features/Audit/AuditLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Features/Audit/AuditLogger.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Features/Audit/IAuditLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Features/Audit/IAuditLogger.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Features/Context/ScopeRestriction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Features/Context/ScopeRestriction.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Features/Cors/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Features/Cors/Constants.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Features/KnownDataStores.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Features/KnownDataStores.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Features/KnownHeaders.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Features/KnownHeaders.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Features/KnownQueryParameterNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Features/KnownQueryParameterNames.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Features/KnownUriSchemes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Features/KnownUriSchemes.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Features/Operations/IScopeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Features/Operations/IScopeProvider.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Features/Operations/JobRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Features/Operations/JobRecord.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Features/Operations/JobType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Features/Operations/JobType.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Features/Operations/QueueType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Features/Operations/QueueType.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Features/Operations/ScopeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Features/Operations/ScopeProvider.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Features/Parameters/Parameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Features/Parameters/Parameter.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Features/Persistence/MergeOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Features/Persistence/MergeOptions.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Features/Persistence/RawResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Features/Persistence/RawResource.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Features/Persistence/ResourceKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Features/Persistence/ResourceKey.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Features/Persistence/SaveOutcome.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Features/Persistence/SaveOutcome.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Features/Persistence/UpsertOutcome.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Features/Persistence/UpsertOutcome.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Features/Persistence/WeakETag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Features/Persistence/WeakETag.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Features/Routing/IUrlResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Features/Routing/IUrlResolver.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Features/Routing/KnownRoutes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Features/Routing/KnownRoutes.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Features/Routing/RouteNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Features/Routing/RouteNames.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Features/Search/CodeSystemResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Features/Search/CodeSystemResolver.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Features/Search/DataResourceFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Features/Search/DataResourceFilter.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Features/Search/IBundleFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Features/Search/IBundleFactory.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Features/Search/ISearchIndexer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Features/Search/ISearchIndexer.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Features/Search/ISearchService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Features/Search/ISearchService.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Features/Search/ISortingValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Features/Search/ISortingValidator.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Features/Search/SearchIndexEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Features/Search/SearchIndexEntry.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Features/Search/SearchModifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Features/Search/SearchModifier.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Features/Search/SearchOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Features/Search/SearchOptions.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Features/Search/SearchResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Features/Search/SearchResult.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Features/Search/SearchResultEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Features/Search/SearchResultEntry.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Features/Search/SearchService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Features/Search/SearchService.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Features/Search/SortOrder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Features/Search/SortOrder.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Features/Search/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Features/Search/StringExtensions.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Features/Search/TotalType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Features/Search/TotalType.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Features/Security/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Features/Security/Constants.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Features/Security/DataActions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Features/Security/DataActions.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Features/Security/Role.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Features/Security/Role.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Features/Security/RoleLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Features/Security/RoleLoader.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Features/Security/roles.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Features/Security/roles.schema.json -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Features/Storage/FhirMemoryCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Features/Storage/FhirMemoryCache.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Features/Storage/IFhirMemoryCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Features/Storage/IFhirMemoryCache.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Logging/BaseOperationStatistics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Logging/BaseOperationStatistics.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Logging/Metrics/ICrudMetricHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Logging/Metrics/ICrudMetricHandler.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Messages/Bundle/BundleRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Messages/Bundle/BundleRequest.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Messages/Bundle/BundleResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Messages/Bundle/BundleResponse.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Messages/Bundle/BundleResponseInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Messages/Bundle/BundleResponseInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Messages/Conformance/ExpandRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Messages/Conformance/ExpandRequest.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Messages/Delete/DeleteOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Messages/Delete/DeleteOperation.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Messages/Export/GetExportRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Messages/Export/GetExportRequest.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Messages/Export/GetExportResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Messages/Export/GetExportResponse.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Messages/Get/GetResourceRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Messages/Get/GetResourceRequest.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Messages/Get/GetResourceResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Messages/Get/GetResourceResponse.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Messages/Reindex/GetReindexRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Messages/Reindex/GetReindexRequest.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Microsoft.Health.Fhir.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Microsoft.Health.Fhir.Core.csproj -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Models/BundleProcessingLogic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Models/BundleProcessingLogic.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Models/BundleResourceContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Models/BundleResourceContext.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Models/CodableConceptInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Models/CodableConceptInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Models/FhirResourceFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Models/FhirResourceFormat.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Models/FhirSpecification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Models/FhirSpecification.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Models/IModelInfoProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Models/IModelInfoProvider.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Models/IResourceElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Models/IResourceElement.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Models/KnownCompartmentTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Models/KnownCompartmentTypes.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Models/KnownFhirPaths.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Models/KnownFhirPaths.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Models/KnownResourceTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Models/KnownResourceTypes.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Models/ModelInfoProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Models/ModelInfoProvider.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Models/OperationOutcomeConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Models/OperationOutcomeConstants.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Models/OperationOutcomeIssue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Models/OperationOutcomeIssue.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Models/PartialDateTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Models/PartialDateTime.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Models/RawResourceElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Models/RawResourceElement.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Models/ReferenceComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Models/ReferenceComponent.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Models/ResourceChangeData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Models/ResourceChangeData.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Models/ResourceElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Models/ResourceElement.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Models/ResourceProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Models/ResourceProperties.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Models/SearchParameterInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Models/SearchParameterInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Models/SortParameterStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Models/SortParameterStatus.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Models/VersionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Models/VersionInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Registration/IFhirServerBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Registration/IFhirServerBuilder.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Resources.Designer.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Core/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Core/Resources.resx -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.CosmosDb.Core/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.CosmosDb.Core/Constants.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.CosmosDb.UnitTests/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.CosmosDb.UnitTests/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.CosmosDb/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.CosmosDb/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.CosmosDb/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.CosmosDb/Constants.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.CosmosDb/EventIds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.CosmosDb/EventIds.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.CosmosDb/Features/Queries/CosmosQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.CosmosDb/Features/Queries/CosmosQuery.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.CosmosDb/Features/Queries/ICosmosQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.CosmosDb/Features/Queries/ICosmosQuery.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.CosmosDb/Features/Queries/QueryHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.CosmosDb/Features/Queries/QueryHelper.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.CosmosDb/Features/Storage/SortValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.CosmosDb/Features/Storage/SortValue.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.CosmosDb/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.CosmosDb/Resources.Designer.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.CosmosDb/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.CosmosDb/Resources.resx -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.CosmosDb/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.CosmosDb/StringExtensions.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.R4.Api/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.R4.Api/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.R4.Api/Microsoft.Health.Fhir.R4.Api.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.R4.Api/Microsoft.Health.Fhir.R4.Api.csproj -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.R4.Client/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.R4.Client/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.R4.Core/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.R4.Core/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.R4.Web/Microsoft.Health.Fhir.R4.Web.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.R4.Web/Microsoft.Health.Fhir.R4.Web.csproj -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.R4.Web/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.R4.Web/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.R4.Web/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.R4.Web/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.R4.Web/runtimeconfig.template.json: -------------------------------------------------------------------------------- 1 | { 2 | "applyPatches": false 3 | } 4 | -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.R4B.Api/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.R4B.Api/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.R4B.Client/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.R4B.Client/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.R4B.Core/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.R4B.Core/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.R4B.Web/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.R4B.Web/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.R4B.Web/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.R4B.Web/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.R4B.Web/runtimeconfig.template.json: -------------------------------------------------------------------------------- 1 | { 2 | "applyPatches": false 3 | } 4 | -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.R5.Api/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.R5.Api/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.R5.Api/Microsoft.Health.Fhir.R5.Api.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.R5.Api/Microsoft.Health.Fhir.R5.Api.csproj -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.R5.Client/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.R5.Client/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.R5.Core/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.R5.Core/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.R5.Web/Microsoft.Health.Fhir.R5.Web.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.R5.Web/Microsoft.Health.Fhir.R5.Web.csproj -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.R5.Web/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.R5.Web/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.R5.Web/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.R5.Web/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.R5.Web/runtimeconfig.template.json: -------------------------------------------------------------------------------- 1 | { 2 | "applyPatches": false 3 | } 4 | -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.SchemaManager/ApplyCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.SchemaManager/ApplyCommand.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.SchemaManager/CommandLineOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.SchemaManager/CommandLineOptions.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.SchemaManager/CommandNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.SchemaManager/CommandNames.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.SchemaManager/CommandOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.SchemaManager/CommandOptions.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.SchemaManager/FhirBaseSchemaRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.SchemaManager/FhirBaseSchemaRunner.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.SchemaManager/FhirSchemaClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.SchemaManager/FhirSchemaClient.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.SchemaManager/OptionAliases.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.SchemaManager/OptionAliases.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.SchemaManager/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.SchemaManager/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.SchemaManager/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.SchemaManager/Properties/Resources.resx -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.SchemaManager/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.SchemaManager/README.md -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Shared.Api.UnitTests/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Shared.Api.UnitTests/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Shared.Api/Controllers/DocRefController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Shared.Api/Controllers/DocRefController.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Shared.Api/Controllers/ExportController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Shared.Api/Controllers/ExportController.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Shared.Api/Controllers/FhirController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Shared.Api/Controllers/FhirController.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Shared.Api/Controllers/ImportController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Shared.Api/Controllers/ImportController.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Shared.Api/Modules/AnonymizationModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Shared.Api/Modules/AnonymizationModule.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Shared.Api/Modules/FhirModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Shared.Api/Modules/FhirModule.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Shared.Api/Modules/IdentityModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Shared.Api/Modules/IdentityModule.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Shared.Api/Modules/KnownAssemblies.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Shared.Api/Modules/KnownAssemblies.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Shared.Api/Modules/MediationModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Shared.Api/Modules/MediationModule.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Shared.Api/Modules/MvcModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Shared.Api/Modules/MvcModule.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Shared.Api/Modules/OperationsModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Shared.Api/Modules/OperationsModule.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Shared.Api/Modules/PersistenceModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Shared.Api/Modules/PersistenceModule.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Shared.Api/Modules/SearchModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Shared.Api/Modules/SearchModule.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Shared.Api/Modules/TerminologyModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Shared.Api/Modules/TerminologyModule.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Shared.Api/Modules/ValidationModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Shared.Api/Modules/ValidationModule.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Shared.Client/FhirBundleOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Shared.Client/FhirBundleOptions.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Shared.Client/FhirBundleProcessingLogic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Shared.Client/FhirBundleProcessingLogic.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Shared.Client/FhirClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Shared.Client/FhirClient.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Shared.Client/FhirClientException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Shared.Client/FhirClientException.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Shared.Client/FhirClientExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Shared.Client/FhirClientExtensions.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Shared.Client/FhirResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Shared.Client/FhirResponse.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Shared.Client/FhirResponse{T}.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Shared.Client/FhirResponse{T}.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Shared.Client/IFhirClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Shared.Client/IFhirClient.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Shared.Client/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Shared.Client/Resources.Designer.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Shared.Client/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Shared.Client/Resources.resx -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Shared.Core.UnitTests/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Shared.Core.UnitTests/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Shared.Core/Extensions/ModelExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Shared.Core/Extensions/ModelExtensions.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Shared.Core/FhirExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Shared.Core/FhirExtensions.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Shared.Tests/AssemblyValidationsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Shared.Tests/AssemblyValidationsTests.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Shared.Tests/Definitions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Shared.Tests/Definitions.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Shared.Tests/Deserializers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Shared.Tests/Deserializers.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Shared.Tests/HttpFhirUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Shared.Tests/HttpFhirUtility.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Shared.Tests/Samples.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Shared.Tests/Samples.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Shared.Web.UnitTests/StartupTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Shared.Web.UnitTests/StartupTests.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Shared.Web/DummyMeterFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Shared.Web/DummyMeterFactory.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Shared.Web/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Shared.Web/Program.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Shared.Web/PrometheusMetricsConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Shared.Web/PrometheusMetricsConfig.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Shared.Web/PrometheusMetricsServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Shared.Web/PrometheusMetricsServer.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Shared.Web/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Shared.Web/Startup.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Shared.Web/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Shared.Web/appsettings.Development.json -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Shared.Web/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Shared.Web/appsettings.json -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Shared.Web/roles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Shared.Web/roles.json -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.SqlServer/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.SqlServer/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.SqlServer/Features/ExceptionExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.SqlServer/Features/ExceptionExtension.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.SqlServer/Features/Schema/Migrations/80.diff.sql: -------------------------------------------------------------------------------- 1 | Execute dbo.DeleteHistory 0,0,0 2 | -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.SqlServer/Features/Schema/Model/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.SqlServer/Features/Schema/Model/.gitignore -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.SqlServer/Features/Schema/SchemaVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.SqlServer/Features/Schema/SchemaVersion.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.SqlServer/Features/Search/CustomQueries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.SqlServer/Features/Search/CustomQueries.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.SqlServer/Features/Watchdogs/FhirTimer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.SqlServer/Features/Watchdogs/FhirTimer.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.SqlServer/Features/Watchdogs/Watchdog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.SqlServer/Features/Watchdogs/Watchdog.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.SqlServer/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.SqlServer/Resources.Designer.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.SqlServer/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.SqlServer/Resources.resx -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.SqlServer/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.SqlServer/readme.md -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Store.Utils/BatchExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Store.Utils/BatchExtensions.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Store.Utils/CancelRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Store.Utils/CancelRequest.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Store.Utils/ExceptionExtention.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Store.Utils/ExceptionExtention.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Stu3.Api/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Stu3.Api/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Stu3.Client/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Stu3.Client/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Stu3.Core/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Stu3.Core/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Stu3.Web/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Stu3.Web/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Stu3.Web/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Stu3.Web/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Stu3.Web/runtimeconfig.template.json: -------------------------------------------------------------------------------- 1 | { 2 | "applyPatches": false 3 | } 4 | -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Tests.Common/AssemblyChecker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Tests.Common/AssemblyChecker.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Tests.Common/AssemblyValidationsTester.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Tests.Common/AssemblyValidationsTester.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Tests.Common/Categories.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Tests.Common/Categories.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Tests.Common/EmbeddedResourceManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Tests.Common/EmbeddedResourceManager.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Tests.Common/EnvironmentVariables.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Tests.Common/EnvironmentVariables.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Tests.Common/FixtureParameters/Format.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Tests.Common/FixtureParameters/Format.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Tests.Common/NotTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Tests.Common/NotTest.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Tests.Common/OwningTeam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Tests.Common/OwningTeam.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Tests.Common/TestFiles/R4/CarePlan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Tests.Common/TestFiles/R4/CarePlan.json -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Tests.Common/TestFiles/R5/CarePlan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Tests.Common/TestFiles/R5/CarePlan.json -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Tests.Common/TestFiles/R5/Coverage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Tests.Common/TestFiles/R5/Coverage.json -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Tests.Common/TestFiles/R5/Specimen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Tests.Common/TestFiles/R5/Specimen.json -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Tests.Common/TestFiles/Stu3/Patient.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Tests.Common/TestFiles/Stu3/Patient.xml -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Tests.Common/TestFiles/Stu3/Weight.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Tests.Common/TestFiles/Stu3/Weight.json -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.Tests.Common/TestQueryStringParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.Tests.Common/TestQueryStringParser.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.ValueSets/AuditEventSubType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.ValueSets/AuditEventSubType.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.ValueSets/AuditEventType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.ValueSets/AuditEventType.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.ValueSets/CompartmentType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.ValueSets/CompartmentType.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.ValueSets/ConditionalDeleteStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.ValueSets/ConditionalDeleteStatus.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.ValueSets/CurrencyValueSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.ValueSets/CurrencyValueSet.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.ValueSets/OperationTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.ValueSets/OperationTypes.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.ValueSets/ResourceVersionPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.ValueSets/ResourceVersionPolicy.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.ValueSets/SearchComparator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.ValueSets/SearchComparator.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.ValueSets/SearchEntryMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.ValueSets/SearchEntryMode.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.ValueSets/SearchModifierCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.ValueSets/SearchModifierCode.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.ValueSets/SearchParamType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.ValueSets/SearchParamType.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.ValueSets/SpecialValues.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.ValueSets/SpecialValues.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.ValueSets/SystemRestfulInteraction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.ValueSets/SystemRestfulInteraction.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.Fhir.ValueSets/TypeRestfulInteraction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.Fhir.ValueSets/TypeRestfulInteraction.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.TaskManagement.UnitTests/JobHostingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.TaskManagement.UnitTests/JobHostingTests.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.TaskManagement.UnitTests/TestJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.TaskManagement.UnitTests/TestJob.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.TaskManagement.UnitTests/TestJobFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.TaskManagement.UnitTests/TestJobFactory.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.TaskManagement.UnitTests/TestQueueClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.TaskManagement.UnitTests/TestQueueClient.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.TaskManagement/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.TaskManagement/Constants.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.TaskManagement/IJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.TaskManagement/IJob.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.TaskManagement/IJobData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.TaskManagement/IJobData.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.TaskManagement/IJobFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.TaskManagement/IJobFactory.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.TaskManagement/IQueueClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.TaskManagement/IQueueClient.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.TaskManagement/JobConflictException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.TaskManagement/JobConflictException.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.TaskManagement/JobExecutionException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.TaskManagement/JobExecutionException.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.TaskManagement/JobHosting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.TaskManagement/JobHosting.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.TaskManagement/JobInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.TaskManagement/JobInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.TaskManagement/JobInfoExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.TaskManagement/JobInfoExtensions.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.TaskManagement/JobLoggerExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.TaskManagement/JobLoggerExtension.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.TaskManagement/JobNotExistException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.TaskManagement/JobNotExistException.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.TaskManagement/JobStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.TaskManagement/JobStatus.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.TaskManagement/JobTypeIdAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.TaskManagement/JobTypeIdAttribute.cs -------------------------------------------------------------------------------- /src/Microsoft.Health.TaskManagement/RetriableJobException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/src/Microsoft.Health.TaskManagement/RetriableJobException.cs -------------------------------------------------------------------------------- /stylecop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/stylecop.json -------------------------------------------------------------------------------- /test/Configuration/testconfiguration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/test/Configuration/testconfiguration.json -------------------------------------------------------------------------------- /test/Microsoft.Health.Fhir.R4.Tests.E2E/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/test/Microsoft.Health.Fhir.R4.Tests.E2E/Constants.cs -------------------------------------------------------------------------------- /test/Microsoft.Health.Fhir.R4.Tests.Integration/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/test/Microsoft.Health.Fhir.R4.Tests.Integration/AssemblyInfo.cs -------------------------------------------------------------------------------- /test/Microsoft.Health.Fhir.R4B.Tests.E2E/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/test/Microsoft.Health.Fhir.R4B.Tests.E2E/Constants.cs -------------------------------------------------------------------------------- /test/Microsoft.Health.Fhir.R4B.Tests.Integration/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/test/Microsoft.Health.Fhir.R4B.Tests.Integration/AssemblyInfo.cs -------------------------------------------------------------------------------- /test/Microsoft.Health.Fhir.R5.Tests.E2E/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/test/Microsoft.Health.Fhir.R5.Tests.E2E/Constants.cs -------------------------------------------------------------------------------- /test/Microsoft.Health.Fhir.R5.Tests.Integration/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/test/Microsoft.Health.Fhir.R5.Tests.Integration/AssemblyInfo.cs -------------------------------------------------------------------------------- /test/Microsoft.Health.Fhir.Shared.Tests.Crucible/ServerTestRun.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/test/Microsoft.Health.Fhir.Shared.Tests.Crucible/ServerTestRun.cs -------------------------------------------------------------------------------- /test/Microsoft.Health.Fhir.Shared.Tests.E2E.Common/TestUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/test/Microsoft.Health.Fhir.Shared.Tests.E2E.Common/TestUser.cs -------------------------------------------------------------------------------- /test/Microsoft.Health.Fhir.Shared.Tests.E2E/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/test/Microsoft.Health.Fhir.Shared.Tests.E2E/AssemblyInfo.cs -------------------------------------------------------------------------------- /test/Microsoft.Health.Fhir.Shared.Tests.E2E/Rest/CorsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/test/Microsoft.Health.Fhir.Shared.Tests.E2E/Rest/CorsTests.cs -------------------------------------------------------------------------------- /test/Microsoft.Health.Fhir.Shared.Tests.E2E/Rest/CreateTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/test/Microsoft.Health.Fhir.Shared.Tests.E2E/Rest/CreateTests.cs -------------------------------------------------------------------------------- /test/Microsoft.Health.Fhir.Shared.Tests.E2E/Rest/DeleteTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/test/Microsoft.Health.Fhir.Shared.Tests.E2E/Rest/DeleteTests.cs -------------------------------------------------------------------------------- /test/Microsoft.Health.Fhir.Shared.Tests.E2E/Rest/HealthTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/test/Microsoft.Health.Fhir.Shared.Tests.E2E/Rest/HealthTests.cs -------------------------------------------------------------------------------- /test/Microsoft.Health.Fhir.Shared.Tests.E2E/Rest/HistoryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/test/Microsoft.Health.Fhir.Shared.Tests.E2E/Rest/HistoryTests.cs -------------------------------------------------------------------------------- /test/Microsoft.Health.Fhir.Shared.Tests.E2E/Rest/MetadataTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/test/Microsoft.Health.Fhir.Shared.Tests.E2E/Rest/MetadataTests.cs -------------------------------------------------------------------------------- /test/Microsoft.Health.Fhir.Shared.Tests.E2E/Rest/ReadTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/test/Microsoft.Health.Fhir.Shared.Tests.E2E/Rest/ReadTests.cs -------------------------------------------------------------------------------- /test/Microsoft.Health.Fhir.Shared.Tests.E2E/Rest/TestHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/test/Microsoft.Health.Fhir.Shared.Tests.E2E/Rest/TestHelper.cs -------------------------------------------------------------------------------- /test/Microsoft.Health.Fhir.Shared.Tests.E2E/Rest/UpdateTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/test/Microsoft.Health.Fhir.Shared.Tests.E2E/Rest/UpdateTests.cs -------------------------------------------------------------------------------- /test/Microsoft.Health.Fhir.Shared.Tests.E2E/Rest/VReadTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/test/Microsoft.Health.Fhir.Shared.Tests.E2E/Rest/VReadTests.cs -------------------------------------------------------------------------------- /test/Microsoft.Health.Fhir.Shared.Tests.E2E/Rest/ValidateTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/test/Microsoft.Health.Fhir.Shared.Tests.E2E/Rest/ValidateTests.cs -------------------------------------------------------------------------------- /test/Microsoft.Health.Fhir.Shared.Tests.E2E/runtimeconfig.template.json: -------------------------------------------------------------------------------- 1 | { 2 | "applyPatches": false 3 | } 4 | -------------------------------------------------------------------------------- /test/Microsoft.Health.Fhir.Shared.Tests.E2E/xunit.runner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/test/Microsoft.Health.Fhir.Shared.Tests.E2E/xunit.runner.json -------------------------------------------------------------------------------- /test/Microsoft.Health.Fhir.Stu3.Tests.E2E/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/test/Microsoft.Health.Fhir.Stu3.Tests.E2E/Constants.cs -------------------------------------------------------------------------------- /test/Microsoft.Health.Fhir.Stu3.Tests.Integration/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/test/Microsoft.Health.Fhir.Stu3.Tests.Integration/AssemblyInfo.cs -------------------------------------------------------------------------------- /testauthenvironment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/testauthenvironment.json -------------------------------------------------------------------------------- /tools/AsyncJobGenerator/GenerateAsyncJob.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/tools/AsyncJobGenerator/GenerateAsyncJob.ps1 -------------------------------------------------------------------------------- /tools/AsyncJobGenerator/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/tools/AsyncJobGenerator/Readme.md -------------------------------------------------------------------------------- /tools/AsyncJobGenerator/Templates/Controller.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/tools/AsyncJobGenerator/Templates/Controller.template -------------------------------------------------------------------------------- /tools/AsyncJobGenerator/Templates/Job.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/tools/AsyncJobGenerator/Templates/Job.template -------------------------------------------------------------------------------- /tools/AsyncJobGenerator/Templates/JobDescription.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/tools/AsyncJobGenerator/Templates/JobDescription.template -------------------------------------------------------------------------------- /tools/AsyncJobGenerator/Templates/JobResult.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/tools/AsyncJobGenerator/Templates/JobResult.template -------------------------------------------------------------------------------- /tools/AsyncJobGenerator/Templates/MediatorCreateRequest.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/tools/AsyncJobGenerator/Templates/MediatorCreateRequest.template -------------------------------------------------------------------------------- /tools/AsyncJobGenerator/Templates/MediatorExtensions.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/tools/AsyncJobGenerator/Templates/MediatorExtensions.template -------------------------------------------------------------------------------- /tools/AsyncJobGenerator/Templates/MediatorHandler.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/tools/AsyncJobGenerator/Templates/MediatorHandler.template -------------------------------------------------------------------------------- /tools/AsyncJobGenerator/Templates/MediatorRequest.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/tools/AsyncJobGenerator/Templates/MediatorRequest.template -------------------------------------------------------------------------------- /tools/AsyncJobGenerator/Templates/MediatorResponse.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/tools/AsyncJobGenerator/Templates/MediatorResponse.template -------------------------------------------------------------------------------- /tools/BlobRewriter/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/tools/BlobRewriter/App.config -------------------------------------------------------------------------------- /tools/BlobRewriter/BlobRewriter.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/tools/BlobRewriter/BlobRewriter.csproj -------------------------------------------------------------------------------- /tools/BlobRewriter/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/tools/BlobRewriter/Program.cs -------------------------------------------------------------------------------- /tools/EventsReader/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/tools/EventsReader/App.config -------------------------------------------------------------------------------- /tools/EventsReader/EventsReader.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/tools/EventsReader/EventsReader.csproj -------------------------------------------------------------------------------- /tools/EventsReader/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/tools/EventsReader/Program.cs -------------------------------------------------------------------------------- /tools/EventsReader/SqlConnectionBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/tools/EventsReader/SqlConnectionBuilder.cs -------------------------------------------------------------------------------- /tools/Exporter/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/tools/Exporter/App.config -------------------------------------------------------------------------------- /tools/Exporter/CompressedRawResourceConverterCopy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/tools/Exporter/CompressedRawResourceConverterCopy.cs -------------------------------------------------------------------------------- /tools/Exporter/Exporter.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/tools/Exporter/Exporter.csproj -------------------------------------------------------------------------------- /tools/Exporter/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/tools/Exporter/Program.cs -------------------------------------------------------------------------------- /tools/Exporter/SqlParamaterStringExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/tools/Exporter/SqlParamaterStringExtension.cs -------------------------------------------------------------------------------- /tools/Exporter/SqlService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/tools/Exporter/SqlService.cs -------------------------------------------------------------------------------- /tools/FHIRDataSynth/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/tools/FHIRDataSynth/.editorconfig -------------------------------------------------------------------------------- /tools/FHIRDataSynth/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/tools/FHIRDataSynth/.gitignore -------------------------------------------------------------------------------- /tools/FHIRDataSynth/BlobResourceGroupProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/tools/FHIRDataSynth/BlobResourceGroupProcessor.cs -------------------------------------------------------------------------------- /tools/FHIRDataSynth/BlobResourceProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/tools/FHIRDataSynth/BlobResourceProcessor.cs -------------------------------------------------------------------------------- /tools/FHIRDataSynth/CalculatorTargetRatios.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/tools/FHIRDataSynth/CalculatorTargetRatios.cs -------------------------------------------------------------------------------- /tools/FHIRDataSynth/FHIRDataSynth.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/tools/FHIRDataSynth/FHIRDataSynth.csproj -------------------------------------------------------------------------------- /tools/FHIRDataSynth/FHIRDataSynth.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/tools/FHIRDataSynth/FHIRDataSynth.sln -------------------------------------------------------------------------------- /tools/FHIRDataSynth/FHIRDataSynthException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/tools/FHIRDataSynth/FHIRDataSynthException.cs -------------------------------------------------------------------------------- /tools/FHIRDataSynth/FileResourceGroupProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/tools/FHIRDataSynth/FileResourceGroupProcessor.cs -------------------------------------------------------------------------------- /tools/FHIRDataSynth/FileResourceProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/tools/FHIRDataSynth/FileResourceProcessor.cs -------------------------------------------------------------------------------- /tools/FHIRDataSynth/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/tools/FHIRDataSynth/GlobalSuppressions.cs -------------------------------------------------------------------------------- /tools/FHIRDataSynth/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/tools/FHIRDataSynth/Program.cs -------------------------------------------------------------------------------- /tools/FHIRDataSynth/RDUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/tools/FHIRDataSynth/RDUtility.cs -------------------------------------------------------------------------------- /tools/FHIRDataSynth/ResourceAdapterBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/tools/FHIRDataSynth/ResourceAdapterBase.cs -------------------------------------------------------------------------------- /tools/FHIRDataSynth/ResourceCarePlan/ResourceCarePlanAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/tools/FHIRDataSynth/ResourceCarePlan/ResourceCarePlanAdapter.cs -------------------------------------------------------------------------------- /tools/FHIRDataSynth/ResourceCarePlan/ResourceCarePlanExample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/tools/FHIRDataSynth/ResourceCarePlan/ResourceCarePlanExample.json -------------------------------------------------------------------------------- /tools/FHIRDataSynth/ResourceCareTeam/ResourceCareTeamAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/tools/FHIRDataSynth/ResourceCareTeam/ResourceCareTeamAdapter.cs -------------------------------------------------------------------------------- /tools/FHIRDataSynth/ResourceCareTeam/ResourceCareTeamExample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/tools/FHIRDataSynth/ResourceCareTeam/ResourceCareTeamExample.json -------------------------------------------------------------------------------- /tools/FHIRDataSynth/ResourceClaim/ResourceClaimAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/tools/FHIRDataSynth/ResourceClaim/ResourceClaimAdapter.cs -------------------------------------------------------------------------------- /tools/FHIRDataSynth/ResourceClaim/ResourceClaimExample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/tools/FHIRDataSynth/ResourceClaim/ResourceClaimExample.json -------------------------------------------------------------------------------- /tools/FHIRDataSynth/ResourceClaim/ResourceClaimJson.generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/tools/FHIRDataSynth/ResourceClaim/ResourceClaimJson.generated.cs -------------------------------------------------------------------------------- /tools/FHIRDataSynth/ResourceCondition/ResourceConditionAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/tools/FHIRDataSynth/ResourceCondition/ResourceConditionAdapter.cs -------------------------------------------------------------------------------- /tools/FHIRDataSynth/ResourceDevice/ResourceDeviceAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/tools/FHIRDataSynth/ResourceDevice/ResourceDeviceAdapter.cs -------------------------------------------------------------------------------- /tools/FHIRDataSynth/ResourceDevice/ResourceDeviceExample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/tools/FHIRDataSynth/ResourceDevice/ResourceDeviceExample.json -------------------------------------------------------------------------------- /tools/FHIRDataSynth/ResourceEncounter/ResourceEncounterAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/tools/FHIRDataSynth/ResourceEncounter/ResourceEncounterAdapter.cs -------------------------------------------------------------------------------- /tools/FHIRDataSynth/ResourceGroupProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/tools/FHIRDataSynth/ResourceGroupProcessor.cs -------------------------------------------------------------------------------- /tools/FHIRDataSynth/ResourcePatient/ResourcePatientAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/tools/FHIRDataSynth/ResourcePatient/ResourcePatientAdapter.cs -------------------------------------------------------------------------------- /tools/FHIRDataSynth/ResourcePatient/ResourcePatientExample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/tools/FHIRDataSynth/ResourcePatient/ResourcePatientExample.json -------------------------------------------------------------------------------- /tools/FHIRDataSynth/ResourceProcedure/ResourceProcedureAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/tools/FHIRDataSynth/ResourceProcedure/ResourceProcedureAdapter.cs -------------------------------------------------------------------------------- /tools/FHIRDataSynth/ResourceProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/tools/FHIRDataSynth/ResourceProcessor.cs -------------------------------------------------------------------------------- /tools/FHIRDataSynth/ResourceSiblingsContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/tools/FHIRDataSynth/ResourceSiblingsContainer.cs -------------------------------------------------------------------------------- /tools/FHIRDataSynth/ServerImport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/tools/FHIRDataSynth/ServerImport.cs -------------------------------------------------------------------------------- /tools/FHIRDataSynth/ServerImportParametersExample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/tools/FHIRDataSynth/ServerImportParametersExample.json -------------------------------------------------------------------------------- /tools/FHIRDataSynth/TargetRatios.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/tools/FHIRDataSynth/TargetRatios.cs -------------------------------------------------------------------------------- /tools/FHIRDataSynth/_BlendRatiosExample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/tools/FHIRDataSynth/_BlendRatiosExample.json -------------------------------------------------------------------------------- /tools/FHIRDataSynth/_FHIRSpec.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/tools/FHIRDataSynth/_FHIRSpec.url -------------------------------------------------------------------------------- /tools/FHIRDataSynth/_Relations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/tools/FHIRDataSynth/_Relations.txt -------------------------------------------------------------------------------- /tools/FHIRDataSynth/_TargetRatiosX2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/tools/FHIRDataSynth/_TargetRatiosX2.json -------------------------------------------------------------------------------- /tools/FHIRDataSynth/_TargetRatiosX_01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/tools/FHIRDataSynth/_TargetRatiosX_01.json -------------------------------------------------------------------------------- /tools/FHIRDataSynth/_TargetRatiosX_5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/tools/FHIRDataSynth/_TargetRatiosX_5.json -------------------------------------------------------------------------------- /tools/Importer/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/tools/Importer/App.config -------------------------------------------------------------------------------- /tools/Importer/BearerTokenHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/tools/Importer/BearerTokenHandler.cs -------------------------------------------------------------------------------- /tools/Importer/Importer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/tools/Importer/Importer.cs -------------------------------------------------------------------------------- /tools/Importer/Importer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/tools/Importer/Importer.csproj -------------------------------------------------------------------------------- /tools/Importer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/tools/Importer/Program.cs -------------------------------------------------------------------------------- /tools/Importer/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/tools/Importer/readme.md -------------------------------------------------------------------------------- /tools/IndexRebuilder/IndexRebuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/tools/IndexRebuilder/IndexRebuilder.cs -------------------------------------------------------------------------------- /tools/IndexRebuilder/IndexRebuilder.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/tools/IndexRebuilder/IndexRebuilder.csproj -------------------------------------------------------------------------------- /tools/IndexRebuilder/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/tools/IndexRebuilder/Program.cs -------------------------------------------------------------------------------- /tools/IndexRebuilder/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/tools/IndexRebuilder/app.config -------------------------------------------------------------------------------- /tools/IndexRebuilder/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/tools/IndexRebuilder/readme.md -------------------------------------------------------------------------------- /tools/Microsoft.Health.Fhir.R4.ResourceParser/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/tools/Microsoft.Health.Fhir.R4.ResourceParser/Readme.md -------------------------------------------------------------------------------- /tools/PerfTester/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/tools/PerfTester/App.config -------------------------------------------------------------------------------- /tools/PerfTester/PerfTester.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/tools/PerfTester/PerfTester.csproj -------------------------------------------------------------------------------- /tools/PerfTester/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/tools/PerfTester/Program.cs -------------------------------------------------------------------------------- /tools/PowerShell/.gitignore: -------------------------------------------------------------------------------- 1 | Specification/ 2 | -------------------------------------------------------------------------------- /tools/PowerShell/FhirDataFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/tools/PowerShell/FhirDataFunctions.ps1 -------------------------------------------------------------------------------- /tools/PowerShell/MonitorAsyncJobs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/tools/PowerShell/MonitorAsyncJobs.ps1 -------------------------------------------------------------------------------- /tools/PowerShell/New-CreateSearchIndexerDefaultValueSets.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/tools/PowerShell/New-CreateSearchIndexerDefaultValueSets.ps1 -------------------------------------------------------------------------------- /tools/PowerShell/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/tools/PowerShell/Readme.md -------------------------------------------------------------------------------- /tools/RegisterAndMonitorImport/ImportResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/tools/RegisterAndMonitorImport/ImportResponse.cs -------------------------------------------------------------------------------- /tools/RegisterAndMonitorImport/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/tools/RegisterAndMonitorImport/Program.cs -------------------------------------------------------------------------------- /tools/RegisterAndMonitorImport/RegisterAndMonitorConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/tools/RegisterAndMonitorImport/RegisterAndMonitorConfiguration.cs -------------------------------------------------------------------------------- /tools/RegisterAndMonitorImport/RegisterAndMonitorImport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/tools/RegisterAndMonitorImport/RegisterAndMonitorImport.cs -------------------------------------------------------------------------------- /tools/RegisterAndMonitorImport/RegisterAndMonitorImport.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/tools/RegisterAndMonitorImport/RegisterAndMonitorImport.csproj -------------------------------------------------------------------------------- /tools/RegisterAndMonitorImport/VerbosityLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/tools/RegisterAndMonitorImport/VerbosityLevel.cs -------------------------------------------------------------------------------- /tools/RegisterAndMonitorImport/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/tools/RegisterAndMonitorImport/appsettings.json -------------------------------------------------------------------------------- /tools/RegisterAndMonitorImport/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/tools/RegisterAndMonitorImport/readme.md -------------------------------------------------------------------------------- /tools/ResourceParser/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/tools/ResourceParser/Program.cs -------------------------------------------------------------------------------- /tools/ResourceParser/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/tools/ResourceParser/Properties/launchSettings.json -------------------------------------------------------------------------------- /tools/ResourceParser/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/tools/ResourceParser/Readme.md -------------------------------------------------------------------------------- /tools/ResourceParser/ResourceParser.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/tools/ResourceParser/ResourceParser.csproj -------------------------------------------------------------------------------- /tools/SqlScriptRunner/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/tools/SqlScriptRunner/App.config -------------------------------------------------------------------------------- /tools/SqlScriptRunner/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/tools/SqlScriptRunner/Program.cs -------------------------------------------------------------------------------- /tools/SqlScriptRunner/SqlScriptRunner.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/tools/SqlScriptRunner/SqlScriptRunner.csproj -------------------------------------------------------------------------------- /xunit.runner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fhir-server/HEAD/xunit.runner.json --------------------------------------------------------------------------------