Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

x/valibot/src/types/schema.ts>BaseSchema

The modular and type safe schema library for validating structural data 🤖
Extremely Popular
Latest
interface BaseSchema
import { type BaseSchema } from "https://deno.land/x/valibot@1.0.0-beta.0-to-json-schema/src/types/schema.ts";

Base schema type.

Type Parameters

TInput
TOutput
TIssue extends BaseIssue<unknown>

Properties

readonly
kind: "schema"

The object kind.

readonly
type: string

The schema type.

readonly
reference: (...args: any[]) => BaseSchema<unknown, unknown, BaseIssue<unknown>>

The schema reference.

readonly
expects: string

The expected property.

readonly
async: false

Whether it's async.

readonly
~standard: 1

The Standard Schema version number.

readonly
~vendor: "valibot"

The vendor name of the schema.

readonly
optional
~types: { readonly input: TInput; readonly output: TOutput; readonly issue: TIssue; } | undefined

The input, output and issue type.

readonly
~validate: (dataset: UnknownDataset, config?: Config<BaseIssue<unknown>>) => OutputDataset<TOutput, TIssue>

Parses unknown input values.