Operation: ZodObject<
{
description: ZodOptional<
ZodUnion<readonly [ZodString, ZodArray<ZodString>]> & {
is(value: unknown): value is string | string[];
},
>;
target: ZodOptional<ZodString>;
type: ZodEnum<
{ add: "add"; link: "link"; remove: "remove"; update: "update" },
>;
},
$loose,
> & {
is(
value: unknown,
): value is {
description?: string | string[];
target?: string;
type: "link" | "add" | "update" | "remove";
[key: string]: unknown;
};
} = ...
Zod schema for an atomic operation within a change (add, update, remove, or link).