Skip to content

Commit 71312ff

Browse files
committed
edit pass: import-fhir-data
1 parent 3c0b7d4 commit 71312ff

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

articles/healthcare-apis/fhir/configure-import-data.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ To securely import FHIR data into the FHIR service from an Azure Data Lake Stora
100100

101101
* Enable the FHIR service as a trusted Microsoft service.
102102
* Allow specific IP addresses associated with the FHIR service to access the storage account from other Azure regions.
103-
* Allow specific IP addresses associated with the FHIR Service to access the storage account in the same region as the FHIR service.
103+
* Allow specific IP addresses associated with the FHIR service to access the storage account in the same region as the FHIR service.
104104

105105
### Enable the FHIR service as a trusted Microsoft service
106106

articles/healthcare-apis/fhir/import-data.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ To achieve the best performance with the `import` operation, consider these fact
4848

4949
- **Import FHIR resource files as a single batch**. For optimal performance, import all the FHIR resource files that you want to ingest in the FHIR server in one `import` operation. Importing all the files in one operation reduces the overhead of creating and managing multiple import jobs.
5050

51-
- **Limit the number of parallel import jobs**. You can run multiple `import` jobs at the same time, but running multiple jobs might affect the overall throughput of the import operation. The FHIR server can handle up to five parallel `import` jobs. If you exceed this limit, the FHIR server might throttle or reject your requests.
51+
- **Limit the number of parallel import jobs**. You can run multiple `import` jobs at the same time, but running multiple jobs might affect the overall throughput of the `import` operation. The FHIR server can handle up to five parallel `import` jobs. If you exceed this limit, the FHIR server might throttle or reject your requests.
5252

5353
## Perform the import operation
5454

@@ -85,9 +85,9 @@ Content-Type:application/fhir+json
8585

8686
| Input part name | Description | Cardinality | Accepted values |
8787
| ----------- | ----------- | ----------- | ----------- |
88-
| `type` | Resource type of input file. | 1..1 | A valid [FHIR resource type](https://www.hl7.org/fhir/resourcelist.html) that matches the input file. |
88+
| `type` | Resource type of the input file. | 1..1 | A valid [FHIR resource type](https://www.hl7.org/fhir/resourcelist.html) that matches the input file. |
8989
|`url` | Azure storage URL of the input file. | 1..1 | URL value of the input file. The value can't be modified. |
90-
| `etag` | ETag of the input file in the Azure storage; used to verify that the file content isn't changed after `import` registration. | 0..1 | ETag value of the input file. |
90+
| `etag` | ETag of the input file in the Azure storage. It's used to verify that the file content isn't changed after `import` registration. | 0..1 | ETag value of the input file. |
9191

9292
```json
9393
{
@@ -137,7 +137,7 @@ Content-Type:application/fhir+json
137137

138138
### Check import status
139139

140-
After you start an `import` operation, an empty response body with a `callback` link is returned in the `Content-location` header of the response, together with an `202 Accepted` status code. Store the callback link to check the import status.
140+
After you start an `import` operation, an empty response body with a `callback` link is returned in the `Content-location` header of the response, together with an `202 Accepted` status code. Store the `callback` link to check the import status.
141141

142142
Registration of the `import` operation is implemented as an idempotent call. The same registration payload yields the same registration, which affects the ability to reprocess files with the same name. Refrain from updating files in place. Instead, we suggest that you use a different file name for updated data. Or, if an in-place update with same file name is unavoidable, add ETags in the registration payload.
143143

@@ -156,7 +156,7 @@ The following table describes the important fields in the response body:
156156

157157
| Field | Description |
158158
| ----------- | ----------- |
159-
|`transactionTime`|Start time of the bulk-import operation.|
159+
|`transactionTime`|Start time of the bulk `import` operation.|
160160
|`output.count`|Count of resources that were successfully imported.|
161161
|`error.count`|Count of resources that weren't imported because of an error.|
162162
|`error.url`|URL of the file that contains details of the error. Each `error.url` instance is unique to an input URL.|

0 commit comments

Comments
 (0)