jira.js
    Preparing search index...

    Variable UserSchemaConst

    UserSchema: ZodObject<
        {
            account_id: ZodString;
            account_status: ZodCustom<
                "active"
                | "inactive"
                | "closed"
                | string & {},
                "active" | "inactive" | "closed" | string & {},
            >;
            account_type: ZodCustom<
                string & {}
                | "atlassian"
                | "app"
                | "customer",
                string & {} | "atlassian" | "app" | "customer",
            >;
            characteristics: ZodOptional<
                ZodObject<{ not_mentionable: ZodOptional<ZodBoolean> }, $loose>,
            >;
            email: ZodString;
            name: ZodString;
            picture: ZodString;
        },
        $loose,
    > = ...