Integration App SDK - v1.14.0
    Preparing search index...

    Interface ParseContext

    interface ParseContext {
        common: {
            issues: ZodIssue[];
            contextualErrorMap?: ZodErrorMap;
            async: boolean;
        };
        path: ParsePath;
        schemaErrorMap?: ZodErrorMap;
        parent: null
        | ParseContext;
        data: any;
        parsedType:
            | "string"
            | "number"
            | "bigint"
            | "boolean"
            | "symbol"
            | "undefined"
            | "object"
            | "function"
            | "set"
            | "map"
            | "array"
            | "null"
            | "integer"
            | "date"
            | "unknown"
            | "nan"
            | "float"
            | "promise"
            | "void"
            | "never";
    }
    Index

    Properties

    common: { issues: ZodIssue[]; contextualErrorMap?: ZodErrorMap; async: boolean }
    path: ParsePath
    schemaErrorMap?: ZodErrorMap
    parent: null | ParseContext
    data: any
    parsedType:
        | "string"
        | "number"
        | "bigint"
        | "boolean"
        | "symbol"
        | "undefined"
        | "object"
        | "function"
        | "set"
        | "map"
        | "array"
        | "null"
        | "integer"
        | "date"
        | "unknown"
        | "nan"
        | "float"
        | "promise"
        | "void"
        | "never"