{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "description": "Schema that matches anything",

  "oneOf": [
    {
      "type": "array"
    },
    {
      "type": "boolean"
    },
    {
      "type": "integer"
    },
    {
      "type": "null"
    },
    {
      "type": "number"
    },
    {
      "type": "object"
    },
    {
      "type": "string"
    }
  ]
}
