Skip to content

Commit

Permalink
Updated schema in ParkChildrenStream
Browse files Browse the repository at this point in the history
DanielPDWalker committed Oct 10, 2023
1 parent c5a836c commit 98aeb27
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions tap_theme_parks/streams.py
Original file line number Diff line number Diff line change
@@ -92,12 +92,14 @@ class ParkChildrenStream(ThemeParksStream):
th.Property("timezone", th.StringType),
th.Property(
"children",
th.ObjectType(
th.Property("id", th.StringType),
th.Property("name", th.StringType),
th.Property("entityType", th.StringType),
th.Property("slug", th.StringType),
th.Property("externalId", th.StringType),
th.ArrayType(
th.ObjectType(
th.Property("id", th.StringType),
th.Property("name", th.StringType),
th.Property("entityType", th.StringType),
th.Property("slug", th.StringType),
th.Property("externalId", th.StringType),
)
),
),
).to_dict()

0 comments on commit 98aeb27

Please sign in to comment.