Variable ContentRatingSchemaConst
ContentRatingSchema: ZodObject<
{
system: ZodUnion<
readonly [
ZodLiteral<"tv_parental">,
ZodLiteral<"mpaa">,
ZodLiteral<"podcast">,
ZodLiteral<"esrb">,
ZodLiteral<"bbfc">,
ZodLiteral<"fsk">,
ZodLiteral<"acb">,
ZodLiteral<"custom">,
],
>;
rating: ZodString;
},
$loose,
> = ...