Skip to content

Commit 8651029

Browse files
authored
Update import-data.md
1 parent ee51ab3 commit 8651029

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

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

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,8 +85,10 @@ Content-Type:application/fhir+json
8585
| ----------- | ----------- | ----------- | ----------- |
8686
| `inputFormat`| String that represents the name of the data source format. Only FHIR NDJSON files are supported. | 1..1 | `application/fhir+ndjson` |
8787
| `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. |
88+
| `allowNegativeVersions`| Allows FHIR server assigning negative versions for resource records with explicit lastUpdated value and no version specified when input does not fit in contiguous space of positive versions existing in the store. | 0..1 | To enable this feature pass true. By default it is false. |
8889
| `input`| Details of the input files. | 1..* | A JSON array with the three parts described in the following table. |
8990

91+
9092
| Input part name | Description | Cardinality | Accepted values |
9193
| ----------- | ----------- | ----------- | ----------- |
9294
| `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. This field is optional.|
@@ -103,7 +105,11 @@ Content-Type:application/fhir+json
103105
},
104106
{
105107
"name": "mode",
106-
"valueString": "<Use "InitialLoad" for initial mode import / Use "IncrementalLoad" for incremental mode import>",
108+
"valueString": "<Use "InitialLoad" for initial mode import / Use "IncrementalLoad" for incremental mode import>"
109+
},
110+
{
111+
"name": "allowNegativeVersions",
112+
"valueBoolean": true
107113
},
108114
{
109115
"name": "input",

0 commit comments

Comments
 (0)