interface-forge - v2.5.0
    Preparing search index...
    interface $ZodStringFormatDef<
        Format extends $ZodStringFormats = $ZodStringFormats,
    > {
        abort?: boolean;
        check: "string_format";
        checks?: $ZodCheck<string>[];
        coerce?: boolean;
        error?: $ZodErrorMap<never>;
        format: Format;
        pattern?: RegExp;
        type: "string";
    }

    Type Parameters

    Hierarchy (View Summary)

    Index

    Properties

    abort?: boolean

    If true, no later checks will be executed if this check fails. Default false.

    check: "string_format"
    checks?: $ZodCheck<string>[]
    coerce?: boolean
    error?: $ZodErrorMap<never>
    format: Format
    pattern?: RegExp
    type: "string"