Variable GetRightsSuccessSchemaConst
GetRightsSuccessSchema: ZodObject<
{
rights: ZodArray<
ZodObject<
{
rights_id: ZodString;
brand_id: ZodString;
name: ZodString;
description: ZodOptional<ZodString>;
right_type: ZodOptional<
ZodUnion<
readonly [
ZodLiteral<"talent">,
ZodLiteral<"character">,
ZodLiteral<"brand_ip">,
ZodLiteral<"music">,
ZodLiteral<"stock_media">,
],
>,
>;
match_score: ZodOptional<ZodNumber>;
match_reasons: ZodOptional<ZodArray<ZodString>>;
available_uses: ZodArray<
ZodUnion<
readonly [
ZodLiteral<"likeness">,
ZodLiteral<"voice">,
ZodLiteral<"name">,
ZodLiteral<"endorsement">,
ZodLiteral<"motion_capture">,
ZodLiteral<"signature">,
ZodLiteral<"catchphrase">,
ZodLiteral<"sync">,
ZodLiteral<"background_music">,
ZodLiteral<"editorial">,
ZodLiteral<"commercial">,
ZodLiteral<"ai_generated_image">,
],
>,
>;
countries: ZodOptional<ZodArray<ZodString>>;
excluded_countries: ZodOptional<ZodArray<ZodString>>;
exclusivity_status: ZodOptional<
ZodObject<
{
available: ZodOptional<ZodBoolean>;
existing_exclusives: ZodOptional<ZodArray<ZodString>>;
},
$loose,
>,
>;
pricing_options: ZodArray<
ZodObject<
{
pricing_option_id: ZodString;
model: ZodUnion<
readonly [
ZodLiteral<(...)>,
ZodLiteral<(...)>,
ZodLiteral<(...)>,
ZodLiteral<(...)>,
ZodLiteral<(...)>,
ZodLiteral<(...)>,
ZodLiteral<(...)>,
ZodLiteral<(...)>,
ZodLiteral<(...)>,
],
>;
price: ZodNumber;
currency: ZodString;
uses: ZodArray<
ZodUnion<
readonly [
(...),
(...),
(...),
(...),
(...),
(...),
(...),
(...),
(...),
(...),
(...),
(...),
],
>,
>;
period: ZodOptional<
ZodUnion<readonly [(...), (...), (...), (...), (...), (...)]>,
>;
impression_cap: ZodOptional<ZodNumber>;
overage_cpm: ZodOptional<ZodNumber>;
description: ZodOptional<ZodString>;
ext: ZodOptional<ZodObject<{}, $loose>>;
},
$loose,
>,
>;
content_restrictions: ZodOptional<ZodArray<ZodString>>;
preview_assets: ZodOptional<
ZodArray<
ZodObject<
{ url: ZodString; usage: ZodOptional<ZodString> },
$loose,
>,
>,
>;
},
$loose,
>,
>;
excluded: ZodOptional<
ZodArray<
ZodObject<
{
brand_id: ZodString;
name: ZodOptional<ZodString>;
reason: ZodString;
suggestions: ZodOptional<ZodArray<ZodString>>;
},
$loose,
>,
>,
>;
context: ZodOptional<ZodObject<{}, $loose>>;
ext: ZodOptional<ZodObject<{}, $loose>>;
},
$loose,
> = ...