NumberField
Defined in: packages/core/src/fields/number/types.ts:79
Resolved configuration for a number() field, after all defaults are applied.
- NumberFieldInput for the user-facing input type
- number for the config function that produces this type
Extends
Section titled “Extends”BaseField<TFieldMeta>
Type Parameters
Section titled “Type Parameters”TFieldMeta
Section titled “TFieldMeta”TFieldMeta extends object = { }
Properties
Section titled “Properties”admin:
FieldAdminConfig
Defined in: packages/core/src/fields/number/types.ts:86
Resolved admin UI configuration with all defaults applied.
Overrides
Section titled “Overrides”defaultValue
Section titled “defaultValue”defaultValue:
number
Defined in: packages/core/src/fields/number/types.ts:88
Pre-filled numeric value shown in the admin form when creating a new document.
Overrides
Section titled “Overrides”description?
Section titled “description?”
optionaldescription?:string
Defined in: packages/core/src/fields/baseTypes.ts:252
Semantic description of the field. Used in three places:
- Helper text rendered below the field input in the admin form UI.
- As the Zod
.meta({ description })value for form validation. - As the JSDoc comment on the generated document interface property.
To write a separate JSDoc comment, use interfaceDescription in addition.
Inherited from
Section titled “Inherited from”index?
Section titled “index?”
optionalindex?:string
Defined in: packages/core/src/fields/baseTypes.ts:256
Convex index name for this field.
Inherited from
Section titled “Inherited from”interfaceDescription?
Section titled “interfaceDescription?”
optionalinterfaceDescription?:string
Defined in: packages/core/src/fields/baseTypes.ts:254
The JSDoc comment on the generated document interface property
Inherited from
Section titled “Inherited from”BaseField.interfaceDescription
interfaceType
Section titled “interfaceType”interfaceType:
string
Defined in: packages/core/src/fields/baseTypes.ts:258
TypeScript type string written to generated document interfaces (e.g. "string", "number", "string[]").
Inherited from
Section titled “Inherited from”label:
string
Defined in: packages/core/src/fields/number/types.ts:82
Display label shown in the admin form. Always set — inferred from the field key if not provided.
Overrides
Section titled “Overrides”
optionalmax?:object
Defined in: packages/core/src/fields/number/types.ts:97
Maximum allowed numeric value config.
error?
Section titled “error?”
optionalerror?:string
Error message shown when the value exceeds the maximum.
value:
number
Maximum allowed numeric value.
meta:
TFieldMeta
Defined in: packages/core/src/fields/baseTypes.ts:259
Inherited from
Section titled “Inherited from”
optionalmin?:object
Defined in: packages/core/src/fields/number/types.ts:90
Minimum allowed numeric value config.
error?
Section titled “error?”
optionalerror?:string
Error message shown when the value is below the minimum.
value:
number
Minimum allowed numeric value.
required
Section titled “required”required:
boolean
Defined in: packages/core/src/fields/number/types.ts:84
Whether this field is required in the database schema.
Overrides
Section titled “Overrides”
readonlytype:"number"
Defined in: packages/core/src/fields/number/types.ts:80