From d85ce0614da9c686b260a46b0361499e76233e15 Mon Sep 17 00:00:00 2001 From: Stephane Burwash Date: Mon, 4 Jul 2022 10:16:56 -0400 Subject: [PATCH] Turned reports to from object to string --- tap_hibob/schemas/Employees.py | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/tap_hibob/schemas/Employees.py b/tap_hibob/schemas/Employees.py index 231763e..6ebdeb3 100644 --- a/tap_hibob/schemas/Employees.py +++ b/tap_hibob/schemas/Employees.py @@ -73,15 +73,7 @@ th.Property("manager", th.StringType), th.Property("reportsToIdInComany", th.IntegerType), th.Property("employeeIdInCompany", th.StringType), - th.Property("reportsTo", - th.ObjectType( - th.Property("id", th.StringType), - th.Property("email", th.StringType), - th.Property("firstName", th.StringType), - th.Property("surname", th.StringType), - th.Property("displayName", th.StringType), - ) - ), + th.Property("reportsTo", th.StringType), th.Property("department", th.StringType), th.Property("siteId", th.StringType), th.Property("isManager", th.StringType),