Variable TalentSchemaConst
TalentSchema: ZodObject<
{
role: ZodUnion<
readonly [
ZodLiteral<"host">,
ZodLiteral<"guest">,
ZodLiteral<"creator">,
ZodLiteral<"cast">,
ZodLiteral<"narrator">,
ZodLiteral<"producer">,
ZodLiteral<"correspondent">,
ZodLiteral<"commentator">,
ZodLiteral<"analyst">,
],
>;
name: ZodString;
brand_url: ZodOptional<ZodNullable<ZodString>>;
},
$loose,
> = ...