Variable PlacementSchemaConst
PlacementSchema: ZodIntersection<
ZodRecord<ZodString, ZodUnion<readonly [ZodUnknown, ZodUndefined]>>,
ZodObject<
{
placement_id: ZodString;
name: ZodString;
description: ZodOptional<ZodNullable<ZodString>>;
format_ids: ZodOptional<
ZodNullable<
ZodArray<
ZodIntersection<
ZodRecord<
ZodString,
ZodUnion<readonly [ZodUnknown, ZodUndefined]>,
>,
ZodObject<
{
agent_url: ZodString;
id: ZodString;
width: ZodOptional<ZodNullable<(...)>>;
height: ZodOptional<ZodNullable<(...)>>;
duration_ms: ZodOptional<ZodNullable<(...)>>;
},
$strip,
>,
>,
>,
>,
>;
},
$strip,
>,
> = ...