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

Source woocommerce: publishing connector #10791

Merged
merged 13 commits into from
Mar 3, 2022
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@
"type": ["null", "integer"]
},
"quantity": {
"type": ["null", "string"]
"type": ["null", "number"]
},
"tax_class": {
"type": ["null", "string"]
Expand All @@ -163,7 +163,7 @@
"type": ["null", "string"]
},
"price": {
"type": ["null", "string"]
"type": ["null", "number"]
}
}
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,17 +1,36 @@
{
"type": ["null", "array"],
"items": {
"type": ["null", "object"],
"properties": {
"id": {
"type": ["null", "integer"]
},
"key": {
"type": ["null", "string"]
},
"value": {
"type": ["null", "string"]
"type": ["null", "array", "object"],
"oneOf" : [
{
"type": ["null", "object"],
"properties": {
"id": {
"type": ["null", "integer"]
},
"key": {
"type": ["null", "string"]
},
"value": {
"type": ["null", "object", "string"]
}
}
},
{
"type" : "array",
"items": {
"type": ["null", "object"],
"properties": {
"id": {
"type": ["null", "integer"]
},
"key": {
"type": ["null", "string"]
},
"value": {
"type": ["null", "object", "string"]
}
}
}
}
}
]
}
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"description": "A conversion window is the period of time after an ad interaction (such as an ad click or video view) during which a conversion, such as a purchase, is recorded in Google Ads.",
"minimum": 0,
"maximum": 1095,
"default": 14,
"default": 0,
"examples": [14],
"order": 5
}
Expand Down