Variable ExportedArticleConst
ExportedArticle: ZodObject<
{
categoryId: $ZodBranded<ZodDefault<ZodUUID>, "Id", "out">;
createdAt: $ZodBranded<ZodDate, "CreatedAt", "out">;
exportedAt: $ZodBranded<ZodDate, "ExportedAt", "out">;
id: $ZodBranded<ZodDefault<ZodUUID>, "Id", "out">;
ogDescription: $ZodBranded<
ZodOptional<ZodNullable<ZodString>>,
"OgDescription",
"out",
>;
ogImageUrl: $ZodBranded<
ZodOptional<ZodNullable<ZodString>>,
"OgImageUrl",
"out",
>;
ogTitle: $ZodBranded<
ZodOptional<ZodNullable<ZodString>>,
"OgTitle",
"out",
>;
quote: $ZodBranded<ZodOptional<ZodNullable<ZodString>>, "Quote", "out">;
status: ZodLiteral<"EXPORTED">;
title: $ZodBranded<ZodString, "ArticleTitle", "out">;
url: $ZodBranded<ZodURL, "Url", "out">;
userId: $ZodBranded<ZodString, "UserId", "out">;
},
$strip,
> = ...
Zod schema for an exported article.