forked from Widen/tap-rest-api-msdk
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathconfig.sample.json
27 lines (27 loc) · 931 Bytes
/
config.sample.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
"pagination_request_style": "jsonpath_paginator",
"pagination_response_style": "hateoas_body",
"api_url": "https://myexample_fhir_api_url/base_folder",
"pagination_page_size": 100,
"next_page_token_path": "$.link[?(@.relation=='next')].url",
"headers": {
"X-API-KEY": "my_secret_hex_string_for_authentication"
},
"streams": [
{
"name": "my_sample_table_name",
"path": "/ExampleService",
"params": {
"services-provided-type": "MY_INITIAL_EXAMPLE_SERVICE"
},
"primary_keys": [
"id"
],
"records_path": "$.entry[*].resource",
"replication_key": "meta_lastUpdated",
"start_date": "2001-01-01T00:00:00.00+12:00",
"source_search_field": "last-updated",
"source_search_query": "gt$last_run_date"
}
]
}