* add start_time config and correct primary_key * correct integration tests * correct type * config txt and primary_key
22 lines
707 B
JSON
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]
|
|
}
|
|
}
|
|
}
|
|
}
|