{
  "type":"object",
  "$schema": "http://json-schema.org/draft-04/schema",
  "required": ["string"],
  "properties":{
    "object": {
      "type":"object",
      "required": ["a", "c", "e"],
      "properties":{
        "a": {
          "type":"string"
        },
        "c": {
          "type":"string"
        },
        "e": {
          "type":"string"
        }
      }
    },
    "string": {
      "type":"string"
    }
  }
}