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