1
0
mirror of synced 2026-01-06 15:03:36 -05:00
Files
airbyte/airbyte-integrations/connectors/source-sendgrid/source_sendgrid/schemas/suppression_groups.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
343 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"id": {
"type": "integer"
},
"name": {
"type": "string"
},
"description": {
"type": "string"
},
"is_default": {
"type": "boolean"
},
"unsubscribes": {
"type": "integer"
}
}
}