Variable PropertyListSchemaConst
PropertyListSchema: ZodObject<
{
list_id: ZodString;
name: ZodString;
description: ZodOptional<ZodString>;
account: ZodOptional<
ZodUnion<
readonly [
ZodObject<{ account_id: ZodString }, $loose>,
ZodObject<
{
brand: ZodObject<
{
domain: ZodString;
brand_id: ZodOptional<ZodString>;
industries: ZodOptional<ZodArray<(...)>>;
data_subject_contestation: ZodOptional<ZodRecord<(...), (...)>>;
},
$loose,
>;
operator: ZodString;
sandbox: ZodOptional<ZodBoolean>;
},
$loose,
>,
],
>,
>;
base_properties: ZodOptional<
ZodArray<
ZodUnion<
readonly [
ZodObject<
{
selection_type: ZodLiteral<"publisher_tags">;
publisher_domain: ZodString;
tags: ZodArray<ZodString>;
},
$loose,
>,
ZodObject<
{
selection_type: ZodLiteral<"publisher_ids">;
publisher_domain: ZodString;
property_ids: ZodArray<ZodString>;
},
$loose,
>,
ZodObject<
{
selection_type: ZodLiteral<"identifiers">;
identifiers: ZodArray<ZodObject<{ type: ...; value: ... }, $loose>>;
},
$loose,
>,
],
>,
>,
>;
filters: ZodOptional<
ZodObject<
{
countries_all: ZodOptional<ZodArray<ZodString>>;
channels_any: ZodOptional<
ZodArray<
ZodUnion<
readonly [
ZodLiteral<"display">,
ZodLiteral<"olv">,
ZodLiteral<"social">,
ZodLiteral<"search">,
ZodLiteral<"ctv">,
ZodLiteral<"linear_tv">,
ZodLiteral<"radio">,
ZodLiteral<"streaming_audio">,
ZodLiteral<"podcast">,
ZodLiteral<"dooh">,
ZodLiteral<"ooh">,
ZodLiteral<"print">,
ZodLiteral<"cinema">,
ZodLiteral<"email">,
ZodLiteral<"gaming">,
ZodLiteral<"retail_media">,
ZodLiteral<"influencer">,
ZodLiteral<"affiliate">,
ZodLiteral<"product_placement">,
ZodLiteral<"sponsored_intelligence">,
],
>,
>,
>;
property_types: ZodOptional<
ZodArray<
ZodUnion<
readonly [
ZodLiteral<"website">,
ZodLiteral<"mobile_app">,
ZodLiteral<"ctv_app">,
ZodLiteral<"desktop_app">,
ZodLiteral<"dooh">,
ZodLiteral<"podcast">,
ZodLiteral<"radio">,
ZodLiteral<"linear_tv">,
ZodLiteral<"streaming_audio">,
ZodLiteral<"ai_assistant">,
],
>,
>,
>;
feature_requirements: ZodOptional<
ZodArray<
ZodObject<
{
feature_id: ZodString;
min_value: ZodOptional<ZodNumber>;
max_value: ZodOptional<ZodNumber>;
allowed_values: ZodOptional<ZodArray<(...)>>;
if_not_covered: ZodOptional<ZodUnion<(...)>>;
policy_id: ZodOptional<ZodString>;
},
$loose,
>,
>,
>;
exclude_identifiers: ZodOptional<
ZodArray<
ZodObject<
{
type: ZodUnion<
readonly [
(...),
(...),
(...),
(...),
(...),
(...),
(...),
(...),
(...),
(...),
(...),
(...),
(...),
(...),
(...),
(...),
(...),
(...),
(...),
(...),
(...),
],
>;
value: ZodString;
},
$loose,
>,
>,
>;
},
$loose,
>,
>;
brand: ZodOptional<
ZodObject<
{
domain: ZodString;
brand_id: ZodOptional<ZodString>;
industries: ZodOptional<ZodArray<ZodString>>;
data_subject_contestation: ZodOptional<
ZodRecord<ZodString, ZodUnknown>,
>;
},
$loose,
>,
>;
webhook_url: ZodOptional<ZodString>;
cache_duration_hours: ZodOptional<ZodNumber>;
created_at: ZodOptional<ZodISODateTime>;
updated_at: ZodOptional<ZodISODateTime>;
property_count: ZodOptional<ZodNumber>;
pricing_options: ZodOptional<
ZodArray<
ZodIntersection<
ZodObject<{ pricing_option_id: ZodString }, $loose>,
ZodUnion<
readonly [
ZodObject<
{
model: ZodLiteral<"cpm">;
cpm: ZodNumber;
currency: ZodString;
ext: ZodOptional<ZodObject<(...), (...)>>;
},
$loose,
>,
ZodObject<
{
model: ZodLiteral<"percent_of_media">;
percent: ZodNumber;
max_cpm: ZodOptional<ZodNumber>;
currency: ZodString;
ext: ZodOptional<ZodObject<(...), (...)>>;
},
$loose,
>,
ZodObject<
{
model: ZodLiteral<"flat_fee">;
amount: ZodNumber;
period: ZodUnion<readonly [(...), (...), (...), (...)]>;
currency: ZodString;
ext: ZodOptional<ZodObject<(...), (...)>>;
},
$loose,
>,
ZodObject<
{
model: ZodLiteral<"per_unit">;
unit: ZodString;
unit_price: ZodNumber;
currency: ZodString;
ext: ZodOptional<ZodObject<(...), (...)>>;
},
$loose,
>,
ZodObject<
{
model: ZodLiteral<"custom">;
description: ZodString;
metadata: ZodObject<{ summary_for_operator: ... }, $loose>;
currency: ZodOptional<ZodString>;
ext: ZodOptional<ZodObject<(...), (...)>>;
},
$loose,
>,
],
>,
>,
>,
>;
},
$loose,
> = ...