Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

x/valibot/mod.ts>UndefinedableSchema

The modular and type safe schema library for validating structural data 🤖
Extremely Popular
Latest
interface UndefinedableSchema
Re-export
import { type UndefinedableSchema } from "https://deno.land/x/valibot@v1.0.0-beta.2-to-json-schema/mod.ts";

Undefinedable schema type.

Type Parameters

TWrapped extends BaseSchema<unknown, unknown, BaseIssue<unknown>>
TDefault extends Default<TWrapped, undefined>

Properties

readonly
type: "undefinedable"

The schema type.

readonly
reference: undefinedable

The schema reference.

readonly
expects: `(${TWrapped["expects"]} | undefined)`

The expected property.

readonly
wrapped: TWrapped

The wrapped schema.

readonly
default: TDefault

The default value.