Skip to content

Commit

Permalink
fix: Profiles schema (#49)
Browse files Browse the repository at this point in the history
This PR fixes this issue reported in
#19 but it also needs
to be used with meltano/sdk#2243.
  • Loading branch information
joaopamaral committed Feb 15, 2024
1 parent 8c77357 commit 8314d37
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion tap_klaviyo/schemas/profiles.json
Original file line number Diff line number Diff line change
Expand Up @@ -135,13 +135,15 @@
"description": "Latitude coordinate. We recommend providing a precision of four decimal places.",
"type": [
"string",
"number",
"null"
]
},
"longitude": {
"description": "Longitude coordinate. We recommend providing a precision of four decimal places.",
"type": [
"string",
"number",
"null"
]
},
Expand Down Expand Up @@ -178,14 +180,19 @@
"^.*$": {
"anyOf": [
{"type": "object"},
{"type": "array"},
{"type": "string"},
{"type": "number"},
{"type": "boolean"},
{"type": "null"}
]
}
},
"additionalProperties": false
"additionalProperties": false,
"type": [
"object",
"null"
]
},
"subscriptions": {
"properties": {
Expand Down

0 comments on commit 8314d37

Please sign in to comment.