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.
Merge pull request #138 from rudderlabs/feat-zendeskNewResources
feat: adds 4 streams Triggers, Views, Automations, Ticket Events
- Loading branch information
Showing
7 changed files
with
658 additions
and
83 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
93 changes: 93 additions & 0 deletions
93
...rations/connectors/source-zendesk-support/source_zendesk_support/schemas/automations.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,93 @@ | ||
{ | ||
"$schema": "http://json-schema.org/draft-07/schema#", | ||
"title": "Automations Schema", | ||
"type": ["null", "object"], | ||
"additionalProperties": true, | ||
"properties": { | ||
"url": { | ||
"type": ["null", "string"] | ||
}, | ||
"id": { | ||
"type": ["null", "number"] | ||
}, | ||
"title": { | ||
"type": ["null", "string"] | ||
}, | ||
"active": { | ||
"type": ["null", "boolean"] | ||
}, | ||
"updated_at": { | ||
"type": ["null", "string"], | ||
"format": "date-time" | ||
}, | ||
"created_at": { | ||
"type": ["null", "string"], | ||
"format": "date-time" | ||
}, | ||
"default": { | ||
"type": ["null", "boolean"] | ||
}, | ||
"actions": { | ||
"items": { | ||
"properties": { | ||
"field": { | ||
"type": ["null", "string"] | ||
}, | ||
"value": { | ||
"type": ["null", "string", "array"], | ||
"items": { | ||
"type": ["null", "string"] | ||
} | ||
} | ||
}, | ||
"type": ["null", "object"], | ||
"additionalProperties": true | ||
}, | ||
"type": ["null", "array"] | ||
}, | ||
"conditions": { | ||
"properties": { | ||
"all": { | ||
"items": { | ||
"properties": { | ||
"field": { | ||
"type": ["null", "string"] | ||
}, | ||
"operator": { | ||
"type": ["null", "string"] | ||
}, | ||
"value": { | ||
"type": ["null", "string"] | ||
} | ||
} | ||
}, | ||
"type": ["null", "array"] | ||
}, | ||
"any": { | ||
"items": { | ||
"properties": { | ||
"field": { | ||
"type": ["null", "string"] | ||
}, | ||
"operator": { | ||
"type": ["null", "string"] | ||
}, | ||
"value": { | ||
"type": ["null", "string"] | ||
} | ||
} | ||
}, | ||
"type": ["null", "array"] | ||
} | ||
}, | ||
"type": ["null", "object"], | ||
"additionalProperties": true | ||
}, | ||
"position": { | ||
"type": ["null", "number"] | ||
}, | ||
"raw_title": { | ||
"type": ["null", "string"] | ||
} | ||
} | ||
} |
34 changes: 34 additions & 0 deletions
34
...tions/connectors/source-zendesk-support/source_zendesk_support/schemas/ticket_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,34 @@ | ||
{ | ||
"properties": { | ||
"created_at": { | ||
"type": ["null", "string"], | ||
"format": "date-time" | ||
}, | ||
"timestamp": { | ||
"type": ["null", "integer"] | ||
}, | ||
"id": { | ||
"type": ["null", "integer"] | ||
}, | ||
"ticket_id": { | ||
"type": ["null", "integer"] | ||
}, | ||
"event_type": { | ||
"type": ["null", "string"] | ||
}, | ||
"via_reference_id": { | ||
"type": ["null", "integer"] | ||
}, | ||
"via": { | ||
"type": ["null", "string"] | ||
}, | ||
"comment_present": { | ||
"type": ["null", "boolean"] | ||
}, | ||
"comment_public": { | ||
"type": ["null", "boolean"] | ||
} | ||
}, | ||
"type": ["null", "object"] | ||
} | ||
|
99 changes: 99 additions & 0 deletions
99
...tegrations/connectors/source-zendesk-support/source_zendesk_support/schemas/triggers.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,99 @@ | ||
{ | ||
"$schema": "http://json-schema.org/draft-07/schema#", | ||
"title": "Triggers Schema", | ||
"type": ["null", "object"], | ||
"additionalProperties": true, | ||
"properties": { | ||
"url": { | ||
"type": ["null", "string"] | ||
}, | ||
"id": { | ||
"type": ["null", "number"] | ||
}, | ||
"title": { | ||
"type": ["null", "string"] | ||
}, | ||
"active": { | ||
"type": ["null", "boolean"] | ||
}, | ||
"updated_at": { | ||
"type": ["null", "string"], | ||
"format": "date-time" | ||
}, | ||
"created_at": { | ||
"type": ["null", "string"], | ||
"format": "date-time" | ||
}, | ||
"default": { | ||
"type": ["null", "boolean"] | ||
}, | ||
"actions": { | ||
"items": { | ||
"properties": { | ||
"field": { | ||
"type": ["null", "string"] | ||
}, | ||
"value": { | ||
"type": ["null", "string", "array"], | ||
"items": { | ||
"type": ["null", "string"] | ||
} | ||
} | ||
}, | ||
"type": ["null", "object"], | ||
"additionalProperties": true | ||
}, | ||
"type": ["null", "array"] | ||
}, | ||
"conditions": { | ||
"properties": { | ||
"all": { | ||
"items": { | ||
"properties": { | ||
"field": { | ||
"type": ["null", "string"] | ||
}, | ||
"operator": { | ||
"type": ["null", "string"] | ||
}, | ||
"value": { | ||
"type": ["null", "string"] | ||
} | ||
} | ||
}, | ||
"type": ["null", "array"] | ||
}, | ||
"any": { | ||
"items": { | ||
"properties": { | ||
"field": { | ||
"type": ["null", "string"] | ||
}, | ||
"operator": { | ||
"type": ["null", "string"] | ||
}, | ||
"value": { | ||
"type": ["null", "string"] | ||
} | ||
} | ||
}, | ||
"type": ["null", "array"] | ||
} | ||
}, | ||
"type": ["null", "object"], | ||
"additionalProperties": true | ||
}, | ||
"description": { | ||
"type": ["null", "string"] | ||
}, | ||
"position": { | ||
"type": ["null", "number"] | ||
}, | ||
"raw_title": { | ||
"type": ["null", "string"] | ||
}, | ||
"category_id": { | ||
"type": ["null", "number"] | ||
} | ||
} | ||
} |
Oops, something went wrong.