1
0
mirror of synced 2026-01-17 03:06:35 -05:00
Files
airbyte/airbyte-integrations/connectors/source-sendgrid/source_sendgrid/spec.json
Michael Siega 388810cf90 Mark the sendgrid api key secret in the spec (#18182)
* 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>
2022-10-20 00:08:22 +02:00

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