Default value metadata for JSON Schema generation.
Default<Value> is a type tag that specifies a default value for a property
in the generated JSON Schema. This is metadata-only - typia does not
automatically apply default values at runtime.
The default value appears in the default field of the JSON Schema output,
which API documentation tools and code generators can use to show default
values or generate code that applies them.
Only primitive literal types are supported: boolean, bigint, number,
and string. For complex defaults, consider using optional properties with
runtime default assignment.
Default value metadata for JSON Schema generation.
Default<Value>is a type tag that specifies a default value for a property in the generated JSON Schema. This is metadata-only - typia does not automatically apply default values at runtime.The default value appears in the
defaultfield of the JSON Schema output, which API documentation tools and code generators can use to show default values or generate code that applies them.Only primitive literal types are supported:
boolean,bigint,number, andstring. For complex defaults, consider using optional properties with runtime default assignment.