Variable notificationSchemaConst
notificationSchema: ZodObject<
{
archived_at: ZodOptional<ZodString>;
created_at: ZodString;
id: ZodString;
read_at: ZodOptional<ZodString>;
rendered: ZodRecord<ZodString, ZodUnknown>;
status: ZodString;
type: ZodString;
},
"strip",
ZodTypeAny,
{
archived_at?: string;
created_at: string;
id: string;
read_at?: string;
rendered: Record<string, unknown>;
status: string;
type: string;
},
{
archived_at?: string;
created_at: string;
id: string;
read_at?: string;
rendered: Record<string, unknown>;
status: string;
type: string;
},
> = ...
Runtime validator for Notification.