fhir-server-for-azure

Inserting multiple observation values in single resource - FHIR

懵懂的女人 提交于 2021-01-29 09:27:08
问题 I have hourly information for the patients heart rate like this PID Hour HR 1 1 97 1 2 89 1 3 90 1 4 100 ..... ..... 1 100 93 for each hour data i created json like this # For Hour 1 { "resourceType": "Observation", "id": "heart-rate", "meta": { "profile": [ "http://hl7.org/fhir/StructureDefinition/vitalsigns" ] }, "status": "final", "category": [ { "coding": [ { "system": "http://terminology.hl7.org/CodeSystem/observation-category", "code": "vital-signs", "display": "Vital Signs" } ], "text"

Sending bulk data to Azure FHIR Server

自闭症网瘾萝莉.ら 提交于 2020-07-09 16:08:42
问题 I am trying to process a csv files which contains more than 20000 patient information. There are totally 50 columns and each patient will have multiple rows as its the hourly data . Most of the columns belong to Observation resource type. Like Heart Rate, Temperature, Blood Pressure. I have successfully transformed the data into FHIR format. however, when i try to push the data inside FHIR server, the server throws an error saying maximum of 500 entries are only allowed for the data. Even if

403 - Authorization Error - OAuth2.0 - Access Token - Azure Api For Fhir

此生再无相见时 提交于 2020-04-30 06:37:47
问题 I have deployed and configured Azure API for FHIR using this link - https://docs.microsoft.com/en-gb/azure/healthcare-apis/tutorial-web-app-fhir-server Using postman i am able to successfully insert a patient information into fhir-server. To automate it I am using python and client service flow. def get_access_token(self): token_url = 'https://login.microsoftonline.com/{}/oauth2/v2.0/token'.format(azure_app_tenant_id) token_data = { 'grant_type': 'client_credentials', 'client_id': azure_app