From ca5245c739168702bfc9f56a0ac995f1464a2088 Mon Sep 17 00:00:00 2001 From: Pat Nadolny Date: Wed, 8 Jan 2025 12:30:40 -0500 Subject: [PATCH] fix user parsing --- tap_clerk/streams.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tap_clerk/streams.py b/tap_clerk/streams.py index 78d9df2..1907c37 100644 --- a/tap_clerk/streams.py +++ b/tap_clerk/streams.py @@ -107,6 +107,7 @@ class UsersStream(ClerkStream): path = "/users" primary_keys: t.ClassVar[list[str]] = ["id"] replication_key = None + records_jsonpath = "$[*]" schema = th.PropertiesList( th.Property("id", th.StringType, description="The unique identifier for a user"), th.Property("object", th.StringType),