{
    "$schema": "http://json-schema.org/draft-04/schema#",
    "description": "Describes an Integer Parameter Constraint",
    "properties": {
        "enum": {
            "items": {
                "type": "integer"
            },
            "minItems": 1,
            "type": "array"
        },
        "maximum": {
            "type": "integer"
        },
        "minimum": {
            "type": "integer"
        }
    },
    "title": "Integer Parameter Constraint",
    "type": "object"
}
