@karmaniverous/jeeves
    Preparing search index...

    Variable coreConfigSchemaConst

    coreConfigSchema: ZodObject<
        {
            $schema: ZodOptional<ZodString>;
            owners: ZodDefault<ZodArray<ZodString, "many">>;
            registryCache: ZodDefault<
                ZodObject<
                    { ttlSeconds: ZodDefault<ZodNumber> },
                    "strip",
                    ZodTypeAny,
                    { ttlSeconds: number },
                    { ttlSeconds?: number },
                >,
            >;
            services: ZodDefault<
                ZodRecord<
                    ZodString,
                    ZodObject<
                        { url: ZodString },
                        "strip",
                        ZodTypeAny,
                        { url: string },
                        { url: string },
                    >,
                >,
            >;
        },
        "strip",
        ZodTypeAny,
        {
            $schema?: string;
            owners: string[];
            registryCache: { ttlSeconds: number };
            services: Record<string, { url: string }>;
        },
        {
            $schema?: string;
            owners?: string[];
            registryCache?: { ttlSeconds?: number };
            services?: Record<string, { url: string }>;
        },
    > = ...

    Zod schema for the core config file.