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.
- Loading branch information
1 parent
02b6335
commit 14fee92
Showing
5 changed files
with
472 additions
and
0 deletions.
There are no files selected for viewing
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"] | ||
} | ||
} | ||
} |
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.