@karmaniverous/jeeves
    Preparing search index...

    Variable coreConfigSchemaConst

    coreConfigSchema: ZodObject<
        {
            $schema: ZodOptional<ZodString>;
            bindAddress: ZodDefault<ZodString>;
            owners: ZodDefault<ZodArray<ZodString>>;
            registryCache: ZodPrefault<
                ZodObject<{ ttlSeconds: ZodDefault<ZodNumber> }, $strip>,
            >;
            services: ZodDefault<
                ZodRecord<ZodString, ZodObject<{ url: ZodURL }, $strip>>,
            >;
        },
        $strip,
    > = ...

    Zod schema for the core config file.