SchemaUtils usage guide
Schema reuse and conversion tools
quick start
4 methods to reuse Schema:
omit - exclude fields
pick - reserved fields
partial - becomes optional
extend - extend field
chain call
Express example
API
omit(schema, fields)
exclude fields
pick(schema, fields)
reserved fields
partial(schema, fields?)
become optional
extend(schema, extensions)
extension fields
Corresponding sample file
Example entry: schema-utils-chaining.ts
Description: Covers the chain combination of omit(), extend(), pick(), partial(), and the success/failure validation path of the derived schema.