@karmaniverous/get-dotenv
    Preparing search index...

    Interface Seen

    interface Seen {
        count: number;
        cycle?: (string | number)[];
        def?: z.core.JSONSchema.JSONSchema;
        defId?: string;
        isParent?: boolean;
        path?: (string | number)[];
        ref?:
            | z.core.$ZodType<
                unknown,
                unknown,
                $ZodTypeInternals<unknown, unknown>,
            >
            | null;
        schema: z.core.JSONSchema.JSONSchema;
    }
    Index

    Properties

    count: number

    Number of times this schema was encountered during traversal

    cycle?: (string | number)[]

    Cycle path

    A cached version of the schema that doesn't get overwritten during ref resolution

    defId?: string
    isParent?: boolean
    path?: (string | number)[]

    JSON Schema property path for this schema

    ref?:
        | z.core.$ZodType<unknown, unknown, $ZodTypeInternals<unknown, unknown>>
        | null

    Schema to inherit JSON Schema properties from (set by processor for wrappers)

    JSON Schema result for this Zod schema