Interface: ResourcefulIntegerTypeOptions
Configuration options for ResourcefulIntegerType instances. Defines validation rules and constraints for 32-bit integer fields in OpenAPI schemas.
See
Extends
Extended by
Properties
| Property | Type | Description | Inherited from |
|---|---|---|---|
exclusiveMaximum | boolean | Whether the maximum value is exclusive (value must be less than maximum) | - |
exclusiveMinimum | boolean | Whether the minimum value is exclusive (value must be greater than minimum) | - |
maximum | number | Maximum value constraint for the integer | - |
minimum | number | Minimum value constraint for the integer | - |
multipleOf | number | Value must be a multiple of this number | - |
nullable? | boolean | Whether the value can be null | BaseInterface.nullable |
readOnly? | boolean | Whether the property is read-only (not included in create/update operations) | BaseInterface.readOnly |
writeOnly? | boolean | Whether the property is write-only (not included in response serialization) | BaseInterface.writeOnly |