Created
May 5, 2018 18:14
-
-
Save billibala/bf5221898fbf0ab9123ce64022ef3204 to your computer and use it in GitHub Desktop.
Improved schema
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$schema": "http://json-schema.org/draft-04/schema#", | |
"description": "", | |
"type": "object", | |
"patternProperties": { | |
"^(price|barcode|sku)$": { | |
"anyOf":[ | |
{ | |
"type": "string" | |
}, | |
{ | |
"type":"integer" | |
} | |
] | |
} | |
}, | |
"additionalProperties": false, | |
"properties": { | |
"name": { | |
"type": "string" | |
} | |
}, | |
"required":[ | |
"sku" | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment