* mark the sendgrid api key secret in the connector spec * bump veresion on sendgrid source connector * update changelog with sendgrid release notes * auto-bump connector version Co-authored-by: Octavia Squidington III <octavia-squidington-iii@users.noreply.github.com>
32 lines
982 B
JSON
32 lines
982 B
JSON
{
|
|
"documentationUrl": "https://docs.airbyte.com/integrations/sources/sendgrid",
|
|
"connectionSpecification": {
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"title": "Sendgrid Spec",
|
|
"type": "object",
|
|
"required": ["apikey"],
|
|
"additionalProperties": true,
|
|
"properties": {
|
|
"apikey": {
|
|
"title": "Sendgrid API key",
|
|
"airbyte_secret": true,
|
|
"type": "string",
|
|
"description": "API Key, use <a href=\"https://app.sendgrid.com/settings/api_keys/\">admin</a> to generate this key.",
|
|
"order": 0
|
|
},
|
|
"start_time": {
|
|
"title": "Start time",
|
|
"type": ["integer", "string"],
|
|
"description": "Start time in ISO8601 format. Any data before this time point will not be replicated.",
|
|
"examples": [
|
|
"2021-12-12",
|
|
"2021-02-01 13:30:00",
|
|
"2020-07-18T13:30:00.000Z",
|
|
"2020-07-18 13:30:00+02:00"
|
|
],
|
|
"order": 1
|
|
}
|
|
}
|
|
}
|
|
}
|