{
    "$id": "https://amplication.com/schema/entityfield/properties/wholeNumber.json",
    "$schema": "http://json-schema.org/draft-07/schema#",
    "title": "wholeNumber",
    "type": "object",
    "additionalProperties": false,
    "required": ["minimumValue", "maximumValue"],
    "properties": {
        "databaseFieldType": {
            "type": "string",
            "description": "The database field scalar typee",
            "enum": ["INT", "BIG_INT"],
            "default": "INT"
        },
        "minimumValue": {
            "type": "integer",
            "description": "The minimum value",
            "default": 0
        },
        "maximumValue": {
            "type": "integer",
            "description": "The maximum value",
            "default": 99999999999
        }
    }
}
