{
"title": "functions.expression.IntegerInputSchema",
"description": "Schema for an integer input.",
"type": "object",
"properties": {
"description": {
"description": "Human-readable description of the integer.",
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"omitempty": true
},
"maximum": {
"description": "Maximum allowed value (inclusive).",
"anyOf": [
{
"type": "integer",
"minimum": -9223372036854775808,
"maximum": 9223372036854775807
},
{
"type": "null"
}
],
"omitempty": true
},
"minimum": {
"description": "Minimum allowed value (inclusive).",
"anyOf": [
{
"type": "integer",
"minimum": -9223372036854775808,
"maximum": 9223372036854775807
},
{
"type": "null"
}
],
"omitempty": true
},
"type": {
"$ref": "functions.expression.IntegerInputSchemaType"
}
}
}