Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Profiles schema #49

Merged
merged 18 commits into from
Feb 15, 2024
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
Loading