From e194811cb3ed731fe08f8efb2542e812a560ffb2 Mon Sep 17 00:00:00 2001 From: Kyle Allan Date: Mon, 10 Dec 2018 09:54:53 -0500 Subject: [PATCH] use anyOf for line item id (#21) --- 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": {