{
    "id": "/arrayMixedRefArrays",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "description": "",
    "type": "object",
    "properties": {
        "blocks": {
            "type": "array",
            "items": {
                "anyOf": [
                    {
                        "$ref": "/parExample"
                    },
                    {
                        "fooBar": {
                            "$ref": "/parFooBar"
                        }
                    }
                ]
            }
        }
    },
    "additionalProperties": false
}