Variable RightsConstraintSchemaConst
RightsConstraintSchema: ZodObject<
{
rights_id: ZodString;
rights_agent: ZodObject<{ url: ZodString; id: ZodString }, $loose>;
valid_from: ZodOptional<ZodNullable<ZodString>>;
valid_until: ZodOptional<ZodNullable<ZodString>>;
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">,
],
>,
>;
countries: ZodOptional<ZodNullable<ZodArray<ZodString>>>;
excluded_countries: ZodOptional<ZodNullable<ZodArray<ZodString>>>;
impression_cap: ZodOptional<ZodNullable<ZodNumber>>;
right_type: ZodOptional<
ZodNullable<
ZodUnion<
readonly [
ZodLiteral<"talent">,
ZodLiteral<"character">,
ZodLiteral<"brand_ip">,
ZodLiteral<"music">,
ZodLiteral<"stock_media">,
],
>,
>,
>;
approval_status: ZodOptional<
ZodNullable<
ZodUnion<
readonly [
ZodLiteral<"pending">,
ZodLiteral<"approved">,
ZodLiteral<"rejected">,
],
>,
>,
>;
verification_url: ZodOptional<ZodNullable<ZodString>>;
ext: ZodOptional<ZodNullable<ZodObject<{}, $loose>>>;
},
$loose,
> = ...