{
    "type": "object",
    "additionalProperties": false,
    "required": [
        "foo"
    ],
    "properties": {
        "foo": {
            "type": "string"
        },
        "baz": {
            "type": "object",
            "required": [
                "qux"
            ],
            "properties": {
                "qux": {
                    "type": "array"
                }
            }
        }
    }
}
