1
0
mirror of synced 2026-01-07 09:05:45 -05:00
Files
airbyte/airbyte-integrations/connectors/source-intercom/source_intercom/schemas/conversation_parts.json

112 lines
2.2 KiB
JSON
Executable File

{
"type": "object",
"properties": {
"assigned_to": {
"oneOf": [
{
"type": "object",
"properties": {
"type": {
"type": ["null", "string"]
},
"id": {
"type": ["null", "string"]
}
}
},
{
"type": "string"
},
{
"type": "null"
}
]
},
"attachments": {
"type": ["null", "array"],
"items": {
"type": ["null", "object"],
"properties": {
"type": {
"type": ["null", "string"]
},
"name": {
"type": ["null", "string"]
},
"url": {
"type": ["null", "string"]
},
"content_type": {
"type": ["null", "string"]
},
"filesize": {
"type": ["null", "integer"]
},
"height": {
"type": ["null", "integer"]
},
"width": {
"type": ["null", "integer"]
}
}
}
},
"author": {
"type": ["null", "object"],
"properties": {
"id": {
"type": ["null", "string"]
},
"type": {
"type": ["null", "string"]
},
"name": {
"type": ["null", "string"]
},
"email": {
"type": ["null", "string"]
}
}
},
"body": {
"type": ["null", "string"]
},
"conversation_id": {
"type": ["null", "string"]
},
"conversation_created_at": {
"type": ["null", "integer"]
},
"conversation_updated_at": {
"type": ["null", "integer"]
},
"conversation_total_parts": {
"type": ["null", "integer"]
},
"created_at": {
"type": ["null", "integer"]
},
"external_id": {
"type": ["null", "string"]
},
"id": {
"type": ["null", "string"]
},
"notified_at": {
"type": ["null", "integer"]
},
"part_type": {
"type": ["null", "string"]
},
"type": {
"type": ["null", "string"]
},
"updated_at": {
"type": ["null", "integer"]
},
"redacted": {
"type": ["null", "boolean"]
}
}
}