Variable GetPropertyListResponseSchemaConst
GetPropertyListResponseSchema: ZodObject<
{
list: ZodObject<
{
list_id: ZodString;
name: ZodString;
description: ZodOptional<ZodString>;
account: ZodOptional<
ZodUnion<
readonly [
ZodObject<{ account_id: ZodString }, $loose>,
ZodObject<
{
brand: ZodObject<
{
domain: ...;
brand_id: ...;
industries: ...;
data_subject_contestation: ...;
},
$loose,
>;
operator: ZodString;
sandbox: ZodOptional<ZodBoolean>;
},
$loose,
>,
],
>,
>;
base_properties: ZodOptional<
ZodArray<
ZodUnion<
readonly [
ZodObject<
{
selection_type: ZodLiteral<(...)>;
publisher_domain: ZodString;
tags: ZodArray<(...)>;
},
$loose,
>,
ZodObject<
{
selection_type: ZodLiteral<(...)>;
publisher_domain: ZodString;
property_ids: ZodArray<(...)>;
},
$loose,
>,
ZodObject<
{
selection_type: ZodLiteral<(...)>;
identifiers: ZodArray<(...)>;
},
$loose,
>,
],
>,
>,
>;
filters: ZodOptional<
ZodObject<
{
countries_all: ZodOptional<ZodArray<ZodString>>;
channels_any: ZodOptional<
ZodArray<
ZodUnion<
readonly [
(...),
(...),
(...),
(...),
(...),
(...),
(...),
(...),
(...),
(...),
(...),
(...),
(...),
(...),
(...),
(...),
(...),
(...),
(...),
(...),
],
>,
>,
>;
property_types: ZodOptional<
ZodArray<
ZodUnion<
readonly [
(...),
(...),
(...),
(...),
(...),
(...),
(...),
(...),
(...),
(...),
],
>,
>,
>;
feature_requirements: ZodOptional<
ZodArray<
ZodObject<
{
feature_id: ...;
min_value: ...;
max_value: ...;
allowed_values: ...;
if_not_covered: ...;
policy_id: ...;
},
$loose,
>,
>,
>;
exclude_identifiers: ZodOptional<
ZodArray<ZodObject<{ type: ...; value: ... }, $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: ...; cpm: ...; currency: ...; ext: ... },
$loose,
>,
ZodObject<
{
model: ...;
percent: ...;
max_cpm: ...;
currency: ...;
ext: ...;
},
$loose,
>,
ZodObject<
{
model: ...;
amount: ...;
period: ...;
currency: ...;
ext: ...;
},
$loose,
>,
ZodObject<
{
model: ...;
unit: ...;
unit_price: ...;
currency: ...;
ext: ...;
},
$loose,
>,
ZodObject<
{
model: ...;
description: ...;
metadata: ...;
currency: ...;
ext: ...;
},
$loose,
>,
],
>,
>,
>,
>;
},
$loose,
>;
identifiers: ZodOptional<
ZodArray<
ZodObject<
{
type: ZodUnion<
readonly [
ZodLiteral<"domain">,
ZodLiteral<"subdomain">,
ZodLiteral<"network_id">,
ZodLiteral<"ios_bundle">,
ZodLiteral<"android_package">,
ZodLiteral<"apple_app_store_id">,
ZodLiteral<"google_play_id">,
ZodLiteral<"roku_store_id">,
ZodLiteral<"fire_tv_asin">,
ZodLiteral<"samsung_app_id">,
ZodLiteral<"apple_tv_bundle">,
ZodLiteral<"bundle_id">,
ZodLiteral<"venue_id">,
ZodLiteral<"screen_id">,
ZodLiteral<"openooh_venue_type">,
ZodLiteral<"rss_url">,
ZodLiteral<"apple_podcast_id">,
ZodLiteral<"spotify_collection_id">,
ZodLiteral<"podcast_guid">,
ZodLiteral<"station_id">,
ZodLiteral<"facility_id">,
],
>;
value: ZodString;
},
$loose,
>,
>,
>;
pagination: ZodOptional<
ZodObject<
{
has_more: ZodBoolean;
cursor: ZodOptional<ZodString>;
total_count: ZodOptional<ZodNumber>;
},
$loose,
>,
>;
resolved_at: ZodOptional<ZodISODateTime>;
cache_valid_until: ZodOptional<ZodISODateTime>;
coverage_gaps: ZodOptional<
ZodRecord<
ZodString,
ZodArray<
ZodObject<
{
type: ZodUnion<
readonly [
ZodLiteral<"domain">,
ZodLiteral<"subdomain">,
ZodLiteral<"network_id">,
ZodLiteral<"ios_bundle">,
ZodLiteral<"android_package">,
ZodLiteral<"apple_app_store_id">,
ZodLiteral<"google_play_id">,
ZodLiteral<"roku_store_id">,
ZodLiteral<"fire_tv_asin">,
ZodLiteral<"samsung_app_id">,
ZodLiteral<"apple_tv_bundle">,
ZodLiteral<"bundle_id">,
ZodLiteral<"venue_id">,
ZodLiteral<"screen_id">,
ZodLiteral<"openooh_venue_type">,
ZodLiteral<"rss_url">,
ZodLiteral<"apple_podcast_id">,
ZodLiteral<"spotify_collection_id">,
ZodLiteral<"podcast_guid">,
ZodLiteral<"station_id">,
ZodLiteral<"facility_id">,
],
>;
value: ZodString;
},
$loose,
>,
>,
>,
>;
context: ZodOptional<ZodObject<{}, $loose>>;
ext: ZodOptional<ZodObject<{}, $loose>>;
},
$loose,
> = ...