Metadata: ZodObject<
{
doc_type: ZodOptional<ZodString>;
scope: ZodOptional<ZodString>;
status: ZodOptional<ZodString>;
title: ZodOptional<ZodString>;
version: ZodOptional<ZodUnion<readonly [ZodString, ZodInt]>>;
},
$loose,
> & {
is(
value: unknown,
): value is {
doc_type?: string;
scope?: string;
status?: string;
title?: string;
version?: string | number;
[key: string]: unknown;
};
} = ...
Zod schema for document-level metadata (title, scope, status, version).