jira.js
    Preparing search index...

    Variable DomainModelSchemaConst

    DomainModelSchema: ZodObject<
        {
            attributes: ZodObject<
                {
                    claim: ZodOptional<
                        ZodObject<
                            {
                                status: ZodOptional<
                                    ZodCustom<
                                        | "deleted"
                                        | (...) & (...)
                                        | "verified"
                                        | "unverified"
                                        | "superseded"
                                        | "missing_token",

                                            | "deleted"
                                            | (...) & (...)
                                            | "verified"
                                            | "unverified"
                                            | "superseded"
                                            | "missing_token",
                                    >,
                                >;
                                type: ZodOptional<
                                    ZodCustom<
                                        (...) & (...)
                                        | "http"
                                        | "dns",
                                        (...) & (...) | "http" | "dns",
                                    >,
                                >;
                            },
                            $loose,
                        >,
                    >;
                    name: ZodOptional<ZodString>;
                },
                $loose,
            >;
            id: ZodString;
            links: ZodObject<{ self: ZodNullable<ZodString> }, $loose>;
            type: ZodCustom<string & {} | "domains", string & {} | "domains">;
        },
        $loose,
    > = ...