1
0
mirror of synced 2025-12-31 15:03:11 -05:00
Files
airbyte/airbyte-integrations/connectors/source-sendgrid/source_sendgrid/spec.json
Artem Inzhyyants e3bb377a6a Source Sendgrid: fix contacts missing records; Remove Messages stream (#21939)
* Source Sendgrid: remove Messages stream

* Source Sendgrid: fix contacts schema

* Source Sendgrid: remove extra configured catalog

* Source Sendgrid: fix contacts stream; add tests

* Source Sendgrid: update docs

* Source Sendgrid: fix test; disable backward compatibility test

* Source Sendgrid: revert tokenAuthenticator

* Source Sendgrid: update schema

* Source Sendgrid: update primary key

* Source Sendgrid: update expected records

* Source Sendgrid: fix unit test

* Source Sendgrid: update spec for ISO8601 datetime format

* Source Sendgrid: update schemas #19969

* Source Sendgrid: update docs

* Source Sendgrid: update docs

* auto-bump connector version

---------

Co-authored-by: Octavia Squidington III <octavia-squidington-iii@users.noreply.github.com>
2023-01-31 11:25:23 +01:00

32 lines
1016 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": "string",
"format": "date-time",
"pattern": "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}(.\\d+)?Z$",
"description": "Start time in ISO8601 format. Any data before this time point will not be replicated.",
"examples": [
"2020-01-01T01:01:01Z",
"2020-01-01T01:01:01.000001Z"
],
"order": 1
}
}
}
}