Skip to content

Instantly share code, notes, and snippets.

@benauthor
Last active October 20, 2016 15:30
Show Gist options
  • Save benauthor/8efeac64f3cf28a9ce32b8e1b37624ee to your computer and use it in GitHub Desktop.
Save benauthor/8efeac64f3cf28a9ce32b8e1b37624ee to your computer and use it in GitHub Desktop.
{
"$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