1
0
mirror of synced 2026-01-26 04:01:39 -05:00
Files
airbyte/airbyte-integrations/connectors/source-iterable/source_iterable/spec.json
Yevhenii f8286e4da3 🎉 New Source: Iterable (#2895)
* Source Iterable: support full_refresh/incremental sync (#2412)

Co-authored-by: ykurochkin <y.kurochkin@zazmic.com>
Co-authored-by: Sherif Nada <snadalive@gmail.com>
2021-04-20 16:21:17 +03:00

24 lines
952 B
JSON

{
"documentationUrl": "https://docs.airbyte.io/integrations/sources/iterable",
"connectionSpecification": {
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Iterable Spec",
"type": "object",
"required": ["start_date", "api_key"],
"additionalProperties": false,
"properties": {
"start_date": {
"type": "string",
"description": "The date from which you'd like to replicate data for Iterable, in the format YYYY-MM-DDT00:00:00Z. All data generated after this date will be replicated.",
"examples": ["2021-04-01T00:00:00Z"],
"pattern": "^[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}:[0-9]{2}:[0-9]{2}Z$"
},
"api_key": {
"type": "string",
"description": "Iterable API Key. See the <a href=\"https://docs.airbyte.io/integrations/sources/iterable\">docs</a> for more information on how to obtain this key.",
"airbyte_secret": true
}
}
}
}