Variable ListCreativeFormatsResponseSchemaConst
ListCreativeFormatsResponseSchema: ZodObject<
{
formats: ZodArray<
ZodObject<
{
format_id: ZodObject<
{
agent_url: ZodString;
id: ZodString;
width: ZodOptional<ZodNullable<ZodNumber>>;
height: ZodOptional<ZodNullable<ZodNumber>>;
duration_ms: ZodOptional<ZodNullable<ZodNumber>>;
},
$strip,
>;
name: ZodString;
description: ZodOptional<ZodNullable<ZodString>>;
preview_image: ZodOptional<ZodNullable<ZodString>>;
example_url: ZodOptional<ZodNullable<ZodString>>;
type: ZodUnion<
readonly [
ZodLiteral<"audio">,
ZodLiteral<"video">,
ZodLiteral<"display">,
ZodLiteral<"native">,
ZodLiteral<"dooh">,
ZodLiteral<"rich_media">,
ZodLiteral<"universal">,
],
>;
accepts_parameters: ZodOptional<
ZodNullable<
ZodArray<
ZodUnion<readonly [ZodLiteral<(...)>, ZodLiteral<(...)>]>,
>,
>,
>;
renders: ZodOptional<
ZodNullable<
ZodTuple<
[ZodUnion<readonly [(...), (...)]>],
ZodUnion<
readonly [ZodRecord<(...), (...)>, ZodObject<(...), (...)>],
>,
>,
>,
>;
assets_required: ZodOptional<
ZodNullable<
ZodArray<
ZodUnion<
readonly [ZodObject<(...), (...)>, ZodObject<(...), (...)>],
>,
>,
>,
>;
delivery: ZodOptional<ZodNullable<ZodRecord<ZodString, ZodUnknown>>>;
supported_macros: ZodOptional<ZodNullable<ZodArray<ZodString>>>;
output_format_ids: ZodOptional<
ZodNullable<
ZodArray<
ZodObject<
{
agent_url: ZodString;
id: ZodString;
width: ZodOptional<(...)>;
height: ZodOptional<(...)>;
duration_ms: ZodOptional<(...)>;
},
$strip,
>,
>,
>,
>;
format_card: ZodOptional<
ZodNullable<
ZodObject<
{
format_id: ZodObject<
{
agent_url: ...;
id: ...;
width: ...;
height: ...;
duration_ms: ...;
},
$strip,
>;
manifest: ZodRecord<ZodString, ZodUnknown>;
},
$strip,
>,
>,
>;
format_card_detailed: ZodOptional<
ZodNullable<
ZodObject<
{
format_id: ZodObject<
{
agent_url: ...;
id: ...;
width: ...;
height: ...;
duration_ms: ...;
},
$strip,
>;
manifest: ZodRecord<ZodString, ZodUnknown>;
},
$strip,
>,
>,
>;
},
$strip,
>,
>;
creative_agents: ZodOptional<
ZodNullable<
ZodArray<
ZodObject<
{
agent_url: ZodString;
agent_name: ZodOptional<ZodNullable<ZodString>>;
capabilities: ZodOptional<ZodNullable<ZodArray<ZodUnion<(...)>>>>;
},
$strip,
>,
>,
>,
>;
errors: ZodOptional<
ZodNullable<
ZodArray<
ZodObject<
{
code: ZodString;
message: ZodString;
field: ZodOptional<ZodNullable<ZodString>>;
suggestion: ZodOptional<ZodNullable<ZodString>>;
retry_after: ZodOptional<ZodNullable<ZodNumber>>;
details: ZodOptional<ZodNullable<ZodRecord<ZodString, ZodUnknown>>>;
},
$strip,
>,
>,
>,
>;
context: ZodOptional<ZodNullable<ZodRecord<ZodString, ZodUnknown>>>;
ext: ZodOptional<ZodNullable<ZodRecord<ZodString, ZodUnknown>>>;
},
$strip,
> = ...