* 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>
35 lines
676 B
JSON
35 lines
676 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"type": "object",
|
|
"properties": {
|
|
"id": {
|
|
"type": "string"
|
|
},
|
|
"name": {
|
|
"type": "string"
|
|
},
|
|
"contact_count": {
|
|
"type": "integer"
|
|
},
|
|
"sample_updated_at": {
|
|
"type": ["string", "null"],
|
|
"format": "date-time"
|
|
},
|
|
"next_sample_update": {
|
|
"type": ["string", "null"],
|
|
"format": "date-time"
|
|
},
|
|
"created_at": {
|
|
"type": ["string", "null"],
|
|
"format": "date-time"
|
|
},
|
|
"updated_at": {
|
|
"type": ["string", "null"],
|
|
"format": "date-time"
|
|
},
|
|
"parent_list_id": {
|
|
"type": ["string", "null"]
|
|
}
|
|
}
|
|
}
|