Skip to content

Instantly share code, notes, and snippets.

@lloyd
Created December 21, 2009 02:59
Show Gist options
  • Save lloyd/260733 to your computer and use it in GitHub Desktop.
Save lloyd/260733 to your computer and use it in GitHub Desktop.
Two equivalent ways to define a schema that is an "open" array:
{
"type": "array",
"items": [ ],
"additionalProperties": true
}
or
{
"type": "array",
"items": {
"type": "any"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment