forked from airbytehq/airbyte
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
✨Source Zendesk Support: New Stream - Topics (airbytehq#27208)
* Initial commit * Update Docs * Add expected records * fixed tests * fixed formatting * fefactored topics stream * updated abnormal_state.json --------- Co-authored-by: Mal Hancock <mallory@archangelic.space> Co-authored-by: Daryna Ishchenko <darina.ishchenko17@gmail.com>
- Loading branch information
Showing
11 changed files
with
110 additions
and
8 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
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
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
43 changes: 43 additions & 0 deletions
43
...integrations/connectors/source-zendesk-support/source_zendesk_support/schemas/topics.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,43 @@ | ||
{ | ||
"$schema": "http://json-schema.org/draft-07/schema#", | ||
"title": "Topics Schema", | ||
"additionalProperties": true, | ||
"type": ["null", "object"], | ||
"properties": { | ||
"html_url": { | ||
"type": ["null", "string"] | ||
}, | ||
"id": { | ||
"type": ["null", "number"] | ||
}, | ||
"name": { | ||
"type": ["null", "string"] | ||
}, | ||
"url": { | ||
"type": ["null", "string"] | ||
}, | ||
"created_at": { | ||
"type": ["null", "string"], | ||
"format": "date-time" | ||
}, | ||
"updated_at": { | ||
"type": ["null", "string"], | ||
"format": "date-time" | ||
}, | ||
"description": { | ||
"type": ["null", "string"] | ||
}, | ||
"manageable_by": { | ||
"type": ["null", "string"] | ||
}, | ||
"follower_count": { | ||
"type": ["null", "number"] | ||
}, | ||
"position": { | ||
"type": ["null", "number"] | ||
}, | ||
"user_segment_id": { | ||
"type": ["null", "number"] | ||
} | ||
} | ||
} |
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
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