-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
✨ Source Mailchimp: Add Interests, InterestCategories, Tags streams (#…
- Loading branch information
1 parent
d9fb858
commit 57a3075
Showing
12 changed files
with
314 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 3 additions & 0 deletions
3
airbyte-integrations/connectors/source-mailchimp/integration_tests/expected_records.jsonl
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
21 changes: 21 additions & 0 deletions
21
...ntegrations/connectors/source-mailchimp/source_mailchimp/schemas/interest_categories.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
{ | ||
"$schema": "http://json-schema.org/draft-07/schema#", | ||
"type": "object", | ||
"properties": { | ||
"list_id": { | ||
"type": ["null", "string"] | ||
}, | ||
"id": { | ||
"type": ["null", "string"] | ||
}, | ||
"title": { | ||
"type": ["null", "string"] | ||
}, | ||
"display_order": { | ||
"type": ["null", "integer"] | ||
}, | ||
"type": { | ||
"type": ["null", "string"] | ||
} | ||
} | ||
} |
24 changes: 24 additions & 0 deletions
24
airbyte-integrations/connectors/source-mailchimp/source_mailchimp/schemas/interests.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
{ | ||
"$schema": "http://json-schema.org/draft-07/schema#", | ||
"type": "object", | ||
"properties": { | ||
"category_id": { | ||
"type": ["null", "string"] | ||
}, | ||
"list_id": { | ||
"type": ["null", "string"] | ||
}, | ||
"id": { | ||
"type": ["null", "string"] | ||
}, | ||
"name": { | ||
"type": ["null", "string"] | ||
}, | ||
"subscriber_count": { | ||
"type": ["null", "string"] | ||
}, | ||
"display_order": { | ||
"type": ["null", "integer"] | ||
} | ||
} | ||
} |
15 changes: 15 additions & 0 deletions
15
airbyte-integrations/connectors/source-mailchimp/source_mailchimp/schemas/tags.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{ | ||
"$schema": "http://json-schema.org/draft-07/schema#", | ||
"type": "object", | ||
"properties": { | ||
"id": { | ||
"type": ["null", "integer"] | ||
}, | ||
"name": { | ||
"type": ["null", "string"] | ||
}, | ||
"list_id": { | ||
"type": ["null", "string"] | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.