1
0
mirror of synced 2026-01-20 12:07:14 -05:00
Files
airbyte/airbyte-integrations/connectors/source-sendgrid/source_sendgrid/spec.json
Marcos Marx 766ddab895 🐛 Source Sendgrid: add start_time config and correct primary_key (#4682)
* add start_time config and correct primary_key

* correct integration tests

* correct type

* config txt and primary_key
2021-07-10 17:34:01 -03:00

22 lines
707 B
JSON

{
"documentationUrl": "https://docs.airbyte.io/integrations/sources/sendgrid",
"connectionSpecification": {
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Sendgrid Spec",
"type": "object",
"required": ["apikey"],
"additionalProperties": false,
"properties": {
"apikey": {
"type": "string",
"description": "API Key, use <a href=\"https://app.sendgrid.com/settings/api_keys/\">admin</a> to generate this key."
},
"start_time": {
"type": "integer",
"description": "Start time in timestamp integer format. Any data before this timestamp will not be replicated.",
"examples": [1558359837]
}
}
}
}