Skip to content

Commit 3dc1396

Browse files
authored
Update import-data.md
Added new errorContainerName import parameter
1 parent ddb8cf7 commit 3dc1396

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,7 @@ The following tables describe the body parameters and inputs.
8888
| `inputFormat`| String that represents the name of the data source format. Only FHIR NDJSON files are supported. | 1..1 | `application/fhir+ndjson` |
8989
| `mode`| Import mode value. | 1..1 | For an initial-mode import, use the `InitialLoad` mode value. For incremental-mode import, use the `IncrementalLoad` mode value. If you don't provide a mode value, the `IncrementalLoad` mode value is used by default. |
9090
| `allowNegativeVersions`| Allows FHIR server assigning negative versions for resource records with explicit lastUpdated value and no version specified when input doesn't fit in contiguous space of positive versions existing in the store. | 0..1 | To enable this feature, pass true. By default it's false. |
91+
|`errorContainerName`| String that represents the name of the container where errors encountered during the import process will be logged. | 0..1 | Custom container name for error logs. The name should be between 3-63 characters and only contain lowercase letters, numbers, and hyphens. If not specified, the default container will be used. |
9192
| `input`| Details of the input files. | 1..* | A JSON array with the three parts described in the following table. |
9293

9394

@@ -113,6 +114,10 @@ The following tables describe the body parameters and inputs.
113114
"name": "allowNegativeVersions",
114115
"valueBoolean": true
115116
},
117+
{
118+
"name": "errorContainerName",
119+
"valueString": "import-error-logs"
120+
},
116121
{
117122
"name": "input",
118123
"part": [

0 commit comments

Comments
 (0)