Skip to content

Commit

Permalink
use anyOf for line item id (#21)
Browse files Browse the repository at this point in the history
  • Loading branch information
KAllan357 authored Dec 10, 2018
1 parent e39ec7e commit e194811
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions tap_shopify/schemas/definitions.json
Original file line number Diff line number Diff line change
Expand Up @@ -632,9 +632,13 @@
]
},
"id": {
"type": [
"null",
"number"
"anyOf": [
{
"type": ["null", "number"]
},
{
"type": ["null", "string"]
}
]
},
"taxable": {
Expand Down

0 comments on commit e194811

Please sign in to comment.