bupkis
    Preparing search index...

    Interface ZodJSONSchemaInternals

    interface ZodJSONSchemaInternals {
        output: JSONType;
        input: JSONType;
        def: $ZodUnionDef<
            [
                z.ZodString,
                z.ZodNumber,
                z.ZodBoolean,
                z.ZodNull,
                z.ZodArray<ZodJSONSchema>,
                z.ZodRecord<z.ZodString, ZodJSONSchema>,
            ],
        >;
        version: { major: 4; minor: 1; patch: number };
        toJSONSchema?: () => unknown;
    }

    Hierarchy

    Index

    Properties

    output: JSONType
    input: JSONType
    def: $ZodUnionDef<
        [
            z.ZodString,
            z.ZodNumber,
            z.ZodBoolean,
            z.ZodNull,
            z.ZodArray<ZodJSONSchema>,
            z.ZodRecord<z.ZodString, ZodJSONSchema>,
        ],
    >

    Schema definition.

    version: { major: 4; minor: 1; patch: number }

    The @zod/core version of this schema

    toJSONSchema?: () => unknown

    An optional method used to override toJSONSchema logic.