Last active
October 20, 2016 15:30
-
-
Save benauthor/8efeac64f3cf28a9ce32b8e1b37624ee to your computer and use it in GitHub Desktop.
This file contains hidden or 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#", | |
"type": "object", | |
"properties": { | |
"cool": { | |
"enum": [ | |
"a", | |
"b" | |
] | |
}, | |
"other": { | |
"type": "number" | |
} | |
} | |
} | |
not | |
{ | |
"$schema": "http://json-schema.org/draft-04/schema#", | |
"type": "object", | |
"properties": { | |
"cool": { | |
"type": { | |
"enum": [ | |
"a", | |
"b" | |
] | |
} | |
}, | |
"other": { | |
"type": "number" | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment