Interface: ResourcefulNumberType
Instance type for ResourcefulNumberType with validated properties. Represents floating-point numbers as defined in the OpenAPI 3.0 specification.
See
Extends
Properties
| Property | Type | Description | Inherited from |
|---|---|---|---|
exclusiveMaximum | boolean | Whether the maximum value is exclusive (value must be less than maximum) | ResourcefulNumberTypeOptions.exclusiveMaximum |
exclusiveMinimum | boolean | Whether the minimum value is exclusive (value must be greater than minimum) | ResourcefulNumberTypeOptions.exclusiveMinimum |
format | "float" | "double" | Number format specification for precision (float or double) | ResourcefulNumberTypeOptions.format |
maximum | number | Maximum value constraint for the number | ResourcefulNumberTypeOptions.maximum |
minimum | number | Minimum value constraint for the number | ResourcefulNumberTypeOptions.minimum |
multipleOf | number | Value must be a multiple of this number | ResourcefulNumberTypeOptions.multipleOf |
nullable? | boolean | Whether the value can be null | ResourcefulNumberTypeOptions.nullable |
readOnly? | boolean | Whether the property is read-only (not included in create/update operations) | ResourcefulNumberTypeOptions.readOnly |
type | "number" | - | - |
writeOnly? | boolean | Whether the property is write-only (not included in response serialization) | ResourcefulNumberTypeOptions.writeOnly |