1
0
mirror of synced 2026-01-19 18:07:00 -05:00
Files
airbyte/airbyte-integrations/connectors/source-intercom/source_intercom/schemas/admins.json
Serhii Lazebnyi 9b2388cd31 🎉 Source intercom: migration to CDK (#4676)
* Added Intercom implementation

* Updated segments docs

* Updated _send_request method to new airbyte-cdk version

* Updated cursor field to datetime string

* Added filtering by state for incremental sync

* Updated cursor paths for test incremental sync

* Added dict type validation to get_data method

* Updated catalog

* Updated typing for start_date

* Updated singer seed to cdk seed

* Updated connector docs

* Updated sample config file

* Sorted streams alphabetically

* Removed placeholder comments

* Renamed rate_limit to queries_per_hour

* Updated common sleep time to backoff_time method
2021-07-19 14:14:51 +03:00

66 lines
1.1 KiB
JSON

{
"type": "object",
"additionalProperties": false,
"properties": {
"admin_ids": {
"anyOf": [
{
"type": "array",
"items": {
"type": "integer"
}
},
{
"type": "null"
}
]
},
"avatar": {
"type": ["null", "object"],
"additionalProperties": false,
"properties": {
"image_url": {
"type": ["null", "string"]
}
}
},
"away_mode_enabled": {
"type": ["null", "boolean"]
},
"away_mode_reassign": {
"type": ["null", "boolean"]
},
"email": {
"type": ["null", "string"]
},
"has_inbox_seat": {
"type": ["null", "boolean"]
},
"id": {
"type": ["null", "string"]
},
"job_title": {
"type": ["null", "string"]
},
"name": {
"type": ["null", "string"]
},
"team_ids": {
"anyOf": [
{
"type": "array",
"items": {
"type": "integer"
}
},
{
"type": "null"
}
]
},
"type": {
"type": ["null", "string"]
}
}
}