IntegerSchema
data class IntegerSchema(val title: String? = null, val description: String? = null, val minimum: Int? = null, val maximum: Int? = null, val default: Int? = null) : NumberSchemaDefinition(source)
Defines an integer-typed property in an elicitation schema.