{
    "type": "object",
    "properties": {
        "foo": {
          "$ref": "#/definitions/Enum"
        }
    },
    "required": [ "foo" ],
    "definitions": {
        "Enum": {
            "type": "number",
            "enum": [
                1,
                2
            ]
        }
    },
    "$schema": "http://json-schema.org/draft-04/schema#"
}

