@adcp/sdk API Reference - v7.9.0
    Preparing search index...

    Variable RightsConstraintSchemaConst

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