* 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
182 lines
4.3 KiB
JSON
182 lines
4.3 KiB
JSON
{
|
|
"streams": [
|
|
{
|
|
"name": "admins",
|
|
"json_schema": {
|
|
"properties": {
|
|
"admin_ids": {
|
|
"anyOf": [
|
|
{
|
|
"type": "array",
|
|
"items": {
|
|
"type": "integer"
|
|
}
|
|
},
|
|
{
|
|
"type": "null"
|
|
}
|
|
]
|
|
},
|
|
"avatar": {
|
|
"properties": {
|
|
"image_url": {
|
|
"type": ["null", "string"]
|
|
}
|
|
},
|
|
"type": ["null", "object"],
|
|
"additionalProperties": false
|
|
},
|
|
"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"]
|
|
}
|
|
},
|
|
"type": "object",
|
|
"additionalProperties": false
|
|
}
|
|
},
|
|
{
|
|
"name": "companies",
|
|
"json_schema": {
|
|
"properties": {
|
|
"company_id": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"created_at": {
|
|
"format": "date-time",
|
|
"type": ["null", "string"]
|
|
},
|
|
"custom_attributes": {
|
|
"type": ["null", "object"],
|
|
"additionalProperties": true
|
|
},
|
|
"id": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"industry": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"monthly_spend": {
|
|
"multipleOf": 1e-8,
|
|
"type": ["null", "number"]
|
|
},
|
|
"name": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"plan": {
|
|
"properties": {
|
|
"id": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"name": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"type": {
|
|
"type": ["null", "string"]
|
|
}
|
|
},
|
|
"type": ["null", "object"],
|
|
"additionalProperties": false
|
|
},
|
|
"remote_created_at": {
|
|
"format": "date-time",
|
|
"type": ["null", "string"]
|
|
},
|
|
"segments": {
|
|
"anyOf": [
|
|
{
|
|
"type": "array",
|
|
"items": {
|
|
"type": ["null", "object"],
|
|
"additionalProperties": false,
|
|
"properties": {
|
|
"id": {
|
|
"type": ["null", "string"]
|
|
}
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"type": "null"
|
|
}
|
|
]
|
|
},
|
|
"session_count": {
|
|
"type": ["null", "integer"]
|
|
},
|
|
"size": {
|
|
"type": ["null", "integer"]
|
|
},
|
|
"tags": {
|
|
"anyOf": [
|
|
{
|
|
"type": "array",
|
|
"items": {
|
|
"type": ["null", "object"],
|
|
"additionalProperties": false,
|
|
"properties": {
|
|
"id": {
|
|
"type": ["null", "string"]
|
|
}
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"type": "null"
|
|
}
|
|
]
|
|
},
|
|
"type": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"updated_at": {
|
|
"format": "date-time",
|
|
"type": ["null", "string"]
|
|
},
|
|
"user_count": {
|
|
"type": ["null", "integer"]
|
|
},
|
|
"website": {
|
|
"type": ["null", "string"]
|
|
}
|
|
},
|
|
"type": "object",
|
|
"additionalProperties": false
|
|
}
|
|
}
|
|
]
|
|
}
|