Skip to content

Commit

Permalink
schema fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianswms committed Dec 18, 2024
1 parent 0b93012 commit 47d5617
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 24 deletions.
14 changes: 7 additions & 7 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

28 changes: 13 additions & 15 deletions tap_calltrackingmetrics/schemas/call.json
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@
},
"parent_id": {
"type": [
"null",
"string",
"null"
]
},
Expand Down Expand Up @@ -334,17 +334,10 @@
]
},
"caller_number_split": {
"anyOf": [
{
"type": "null"
},
{
"type": "array",
"type": ["array", "null"],
"items": {
"type": "string"
"type": ["string", "null"]
}
}
]
},
"contact_number": {
"type": [
Expand Down Expand Up @@ -557,7 +550,7 @@
},
"ad_content": {
"type": [
"null",
"string",
"null"
]
},
Expand All @@ -581,7 +574,7 @@
},
"ad_placement": {
"type": [
"null",
"string",
"null"
]
},
Expand Down Expand Up @@ -685,7 +678,7 @@
},
"gclsrc": {
"type": [
"null",
"string",
"null"
]
},
Expand Down Expand Up @@ -1113,7 +1106,7 @@
},
"ad_content": {
"type": [
"null",
"string",
"null"
]
},
Expand Down Expand Up @@ -1167,7 +1160,7 @@
},
"ad_targeting_type": {
"type": [
"null",
"string",
"null"
]
},
Expand Down Expand Up @@ -1275,6 +1268,11 @@
"value": {
"type": [
"string",
"array",
"object",
"integer",
"number",
"boolean",
"null"
]
},
Expand Down
4 changes: 2 additions & 2 deletions tap_calltrackingmetrics/schemas/sale.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,13 +54,13 @@
},
"_sdc_account_id": {
"type": [
"string",
"integer",
"null"
]
},
"_sdc_call_id": {
"type": [
"string",
"integer",
"null"
]
}
Expand Down

0 comments on commit 47d5617

Please sign in to comment.