Variable URLAssetRequirementsSchemaConst
URLAssetRequirementsSchema: ZodObject<
{
role: ZodOptional<
ZodUnion<
readonly [
ZodLiteral<"clickthrough">,
ZodLiteral<"landing_page">,
ZodLiteral<"impression_tracker">,
ZodLiteral<"click_tracker">,
ZodLiteral<"viewability_tracker">,
ZodLiteral<"third_party_tracker">,
],
>,
>;
protocols: ZodOptional<
ZodArray<ZodUnion<readonly [ZodLiteral<"https">, ZodLiteral<"http">]>>,
>;
allowed_domains: ZodOptional<ZodArray<ZodString>>;
max_length: ZodOptional<ZodNumber>;
macro_support: ZodOptional<ZodBoolean>;
},
$loose,
> = ...