1
0
mirror of synced 2026-01-01 09:02:59 -05:00
Files
airbyte/airbyte-integrations/connectors/source-intercom/source_intercom/schemas/admins.json

64 lines
1.1 KiB
JSON

{
"type": "object",
"properties": {
"admin_ids": {
"anyOf": [
{
"type": "array",
"items": {
"type": "integer"
}
},
{
"type": "null"
}
]
},
"avatar": {
"type": ["null", "object"],
"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"]
}
}
}