Skip to content

Instantly share code, notes, and snippets.

Created November 7, 2013 17:59
Show Gist options
  • Save anonymous/7359001 to your computer and use it in GitHub Desktop.
Save anonymous/7359001 to your computer and use it in GitHub Desktop.
{
"description": "\"contains\" hack for v4 JSON Schema. The array must contain at least one \"A\", specified by saying that if all the entries are *not* \"A\", then it fails.",
"type": "array",
"not": {
"items": {
"not": {
"enum": ["A"]
}
}
}
}
@chestozo
Copy link

chestozo commented Sep 9, 2016

👍

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment