Variable VideoAssetSchemaConst
VideoAssetSchema: ZodIntersection<
ZodObject<{ width: ZodNumber; height: ZodNumber }, $strip>,
ZodObject<
{
url: ZodString;
duration_ms: ZodOptional<ZodNullable<ZodNumber>>;
format: ZodOptional<ZodNullable<ZodString>>;
bitrate_kbps: ZodOptional<ZodNullable<ZodNumber>>;
},
$strip,
>,
> = ...