OptionaldefaultDefault value when not provided.
The integer value to use when the LLM omits this parameter.
OptionaldeprecatedWhether this type is deprecated.
When true, indicates the type should no longer be used and may be removed
in future versions. Set via the @deprecated JSDoc tag.
OptionaldescriptionDetailed description of the schema.
Full documentation for the type, explaining its purpose, constraints, and usage. Extracted from JSDoc comment body. Supports markdown formatting in many JSON Schema consumers.
OptionalenumAllowed integer values.
Restricts the value to specific integer literals. Useful for representing enum-like integer codes or limited value sets.
OptionalexampleSingle example value for the schema.
A representative value that conforms to the schema, useful for
documentation and testing. Set via the @example JSDoc tag.
OptionalexamplesNamed example values for the schema.
Multiple examples as key-value pairs, where keys are example names and values are conforming data. Useful for showing different valid states or edge cases.
OptionalexclusiveExclusive maximum value.
The value must be strictly less than this number.
OptionalexclusiveExclusive minimum value.
The value must be strictly greater than this number.
OptionalmaximumMaximum value (inclusive).
The value must be less than or equal to this number.
OptionalminimumMinimum value (inclusive).
The value must be greater than or equal to this number.
OptionalmultipleValue must be divisible by this number.
Used for constraints like "must be even" (multipleOf: 2) or "must be a multiple of 100" (multipleOf: 100).
OptionalreadWhether the property is read-only.
When true, the property should not be modified by clients and is
typically set by the server. Useful for generated IDs, timestamps, etc.
OptionaltitleShort title for the schema.
A brief, human-readable name for the type. Typically extracted from the
first line of a JSDoc comment or the @title tag.
OptionalwriteWhether the property is write-only.
When true, the property is accepted on input but never returned in
responses. Common for sensitive data like passwords.
Integer type schema.
Represents a JSON Schema integer type with numeric constraints. Maps to TypeScript
numberwith integer validation. Supports range constraints, enum restrictions, and divisibility checks.