Skip to content

Instantly share code, notes, and snippets.

@vector-man
Forked from anonymous/contains-v4-schema.json
Last active August 29, 2015 14:17
Show Gist options
  • Save vector-man/fdc05aa704188013b0e4 to your computer and use it in GitHub Desktop.
Save vector-man/fdc05aa704188013b0e4 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"]
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment