Skip to content

Commit 4da0d42

Browse files
typos in import data
1 parent c7f1063 commit 4da0d42

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

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

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ The `import` operation supports two modes: initial and incremental. Each mode ha
2929

3030
- Allows you to load `lastUpdated` and `versionId` values from resource metadata if they're present in the resource JSON.
3131

32-
- Allows you to load resources in a non-sequential order of versions.
32+
- Allows you to load resources in a nonsequential order of versions.
3333

3434
- If import files don't have the `version` and `lastUpdated` field values specified, there's no guarantee of importing resources in the FHIR service.
3535

@@ -42,15 +42,15 @@ The `import` operation supports two modes: initial and incremental. Each mode ha
4242
>
4343
> Also, if multiple resources share the same resource ID, only one of those resources is imported at random. An error is logged for the resources that share the same resource ID.
4444
45-
This table shows the difference between import modes
45+
This table shows the difference between import modes.
4646

4747
|Areas|Initial mode |Incremental mode |
4848
|:------------- |:-------------|:-----|
4949
|Capability|Initial load of data into FHIR service|Continuous ingestion of data into FHIR service (Incremental or Near Real Time).|
5050
|Concurrent API calls|Blocks concurrent write operations|Data can be ingested concurrently while executing API CRUD operations on the FHIR server.|
5151
|Ingestion of versioned resources|Not supported|Enables ingestion of multiple versions of FHIR resources in single batch while maintaining resource history.|
5252
|Retain lastUpdated field value|Not supported|Retain the lastUpdated field value in FHIR resources during the ingestion process.|
53-
|Billing| Does not incur any charge|Incurs charges based on successfully ingested resources. Charges are incurred per API pricing.|
53+
|Billing| Doesn't incur any charge|Incurs charges based on successfully ingested resources. Charges are incurred per API pricing.|
5454

5555
## Performance considerations
5656

@@ -96,7 +96,7 @@ Content-Type:application/fhir+json
9696
| ----------- | ----------- | ----------- | ----------- |
9797
| `type`| Resource type of the input file. | 0..1 | A valid [FHIR resource type](https://www.hl7.org/fhir/resourcelist.html) that matches the input file. |
9898
|`url`| Azure storage URL of the input file. | 1..1 | URL value of the input file. The value can't be modified. |
99-
| `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.|
99+
| `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.|
100100

101101
```json
102102
{
@@ -201,7 +201,7 @@ The following table describes the important fields in the response body:
201201

202202
Incremental-mode import supports ingestion of soft-deleted resources. You need to use the extension to ingest soft-deleted resources in the FHIR service.
203203

204-
Add the extension to the resource to inform the FHIR service that the resource was soft deleted:
204+
Add the extension to the resource to inform the FHIR service that the resource was soft-deleted:
205205

206206
```ndjson
207207
{"resourceType": "Patient", "id": "example10", "meta": { "lastUpdated": "2023-10-27T04:00:00.000Z", "versionId": 4, "extension": [ { "url": "http://azurehealthcareapis.com/data-extensions/deleted-state", "valueString": "soft-deleted" } ] } }
@@ -264,7 +264,7 @@ Here are the error messages that occur if the `import` operation fails, along wi
264264
}
265265
```
266266

267-
**Solution:** Verify that the link to the Azure storage is correct. Check the network and firewall settings to make sure that the FHIR server can access the storage. If your service is in a virtual network, ensure that the storage is in the same virtual network or in a virtual network that's peered with the FHIR service's virtual network.
267+
**Solution:** Verify that the link to the Azure storage is correct. Check the network and firewall settings to make sure that the FHIR server can access the storage. If your service is in a virtual network, ensure that the storage is in the same virtual network or in a virtual network peered with the FHIR service's virtual network.
268268

269269
#### 403 Forbidden
270270

@@ -312,7 +312,7 @@ Here are the error messages that occur if the `import` operation fails, along wi
312312

313313
## Limitations
314314
- The maximum number of files allowed for each `import` operation is 10,000.
315-
- The number of files ingested in the FHIR server with same lastUpdated field value upto milliseconds, cannot exceed beyond 10,000.
315+
- The number of files ingested in the FHIR server with same lastUpdated field value upto milliseconds can't exceed beyond 10,000.
316316

317317
## Next steps
318318

0 commit comments

Comments
 (0)