From 23b054935c16ae615e246b00e16d297c452075fa Mon Sep 17 00:00:00 2001 From: Danilo Campana Fuchs Date: Fri, 23 Jan 2026 15:23:17 -0300 Subject: [PATCH] fix: 'conversation_parts.assigned_to' property is an object Updated the 'assigned_to' property to accept an object type in the JSON schema. The current implementation converts a Python dict to text --- tap_intercom/schemas/conversation_parts.json | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/tap_intercom/schemas/conversation_parts.json b/tap_intercom/schemas/conversation_parts.json index b296049..855e7ff 100644 --- a/tap_intercom/schemas/conversation_parts.json +++ b/tap_intercom/schemas/conversation_parts.json @@ -5,8 +5,19 @@ "assigned_to": { "type": [ "null", - "string" - ] + "object" + ], + "properties": { + "type": { + "type": "string" + }, + "id": { + "type": [ + "null", + "string" + ] + } + } }, "attachments": { "anyOf": [