From 3f550e5650391f8889f5be867fe4c043b8026a47 Mon Sep 17 00:00:00 2001 From: Kyle Allan Date: Mon, 10 Dec 2018 14:35:26 +0000 Subject: [PATCH] use anyOf for line item id --- tap_shopify/schemas/definitions.json | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/tap_shopify/schemas/definitions.json b/tap_shopify/schemas/definitions.json index 69ccea5a..249c655b 100644 --- a/tap_shopify/schemas/definitions.json +++ b/tap_shopify/schemas/definitions.json @@ -632,9 +632,13 @@ ] }, "id": { - "type": [ - "null", - "number" + "anyOf": [ + { + "type": ["null", "number"] + }, + { + "type": ["null", "string"] + } ] }, "taxable": {