1
0
mirror of synced 2026-02-01 04:01:50 -05:00
Files
airbyte/airbyte-integrations/connectors/source-dixa/source_dixa/spec.json
Marcos Marx 546adcb7e0 🐛 Source Dixa: fix tests and conversation stream (#27250)
* 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>
2023-06-12 18:01:13 -03:00

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
}
}
}
}