forked from airbytehq/airbyte
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feat.zendesk chat conversion department evets (#19)
* feat: new spurces for zendesk chat connector * feat: new sources for zendesk chat connector
- Loading branch information
1 parent
e57b568
commit 9e6aa15
Showing
4 changed files
with
85 additions
and
1 deletion.
There are no files selected for viewing
38 changes: 38 additions & 0 deletions
38
...-integrations/connectors/source-zendesk-chat/source_zendesk_chat/schemas/conversions.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,38 @@ | ||
{ | ||
"$schema": "http://json-schema.org/draft-07/schema#", | ||
"type": "object", | ||
"properties": { | ||
"id": { | ||
"type": ["string"] | ||
}, | ||
"timestamp": { | ||
"format": "date-time", | ||
"type": ["null", "string"] | ||
}, | ||
"goal_id": { | ||
"type": ["null", "integer"] | ||
}, | ||
"goal_name": { | ||
"type": ["null", "string"] | ||
}, | ||
"attribution": { | ||
"properties": { | ||
"agent_id": { | ||
"type": ["null", "integer"] | ||
}, | ||
"department_id": { | ||
"type": ["null", "integer"] | ||
}, | ||
"chat_id": { | ||
"type": ["null", "string"] | ||
}, | ||
"chat_timestamp": { | ||
"format": "date-time", | ||
"type": ["null", "string"] | ||
} | ||
}, | ||
"type": ["null", "object"], | ||
"additionalProperties": false | ||
} | ||
} | ||
} |
27 changes: 27 additions & 0 deletions
27
...rations/connectors/source-zendesk-chat/source_zendesk_chat/schemas/department_events.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,27 @@ | ||
{ | ||
"$schema": "http://json-schema.org/draft-07/schema#", | ||
"type": "object", | ||
"properties": { | ||
"department_id": { | ||
"type": ["null", "integer"] | ||
}, | ||
"timestamp": { | ||
"format": "date-time", | ||
"type": ["null", "string"] | ||
}, | ||
"id": { | ||
"type": ["string"] | ||
}, | ||
"field_name": { | ||
"type": ["null", "string"] | ||
}, | ||
"value": { | ||
"type": ["null", "object"], | ||
"additionalProperties": true | ||
}, | ||
"previous_value": { | ||
"type": ["null", "object"], | ||
"additionalProperties": true | ||
} | ||
} | ||
} |
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