* fix tests and conversation stream * fix eof conversation export stream * fix unit test * fix: semantic versioning correction for new stream --------- Co-authored-by: sajarin <sajarindider@gmail.com>
31 lines
902 B
JSON
31 lines
902 B
JSON
{
|
|
"documentationUrl": "https://docs.airbyte.com/integrations/sources/dixa",
|
|
"connectionSpecification": {
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"title": "Dixa Spec",
|
|
"type": "object",
|
|
"required": ["api_token", "start_date"],
|
|
"additionalProperties": true,
|
|
"properties": {
|
|
"api_token": {
|
|
"type": "string",
|
|
"description": "Dixa API token",
|
|
"airbyte_secret": true
|
|
},
|
|
"start_date": {
|
|
"type": "string",
|
|
"description": "The connector pulls records updated from this date onwards.",
|
|
"pattern": "^[0-9]{4}-[0-9]{2}-[0-9]{2}$",
|
|
"examples": ["YYYY-MM-DD"]
|
|
},
|
|
"batch_size": {
|
|
"type": "integer",
|
|
"description": "Number of days to batch into one request. Max 31.",
|
|
"pattern": "^[0-9]{1,2}$",
|
|
"examples": [1, 31],
|
|
"default": 31
|
|
}
|
|
}
|
|
}
|
|
}
|