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

    Variable ProvidePerformanceFeedbackRequestSchemaConst

    ProvidePerformanceFeedbackRequestSchema: ZodObject<
        {
            adcp_major_version: ZodOptional<ZodNumber>;
            media_buy_id: ZodString;
            idempotency_key: ZodString;
            measurement_period: ZodObject<
                { start: ZodISODateTime; end: ZodISODateTime },
                $loose,
            >;
            performance_index: ZodNumber;
            package_id: ZodOptional<ZodString>;
            creative_id: ZodOptional<ZodString>;
            metric_type: ZodOptional<
                ZodUnion<
                    readonly [
                        ZodLiteral<"overall_performance">,
                        ZodLiteral<"conversion_rate">,
                        ZodLiteral<"brand_lift">,
                        ZodLiteral<"click_through_rate">,
                        ZodLiteral<"completion_rate">,
                        ZodLiteral<"viewability">,
                        ZodLiteral<"brand_safety">,
                        ZodLiteral<"cost_efficiency">,
                    ],
                >,
            >;
            feedback_source: ZodOptional<
                ZodUnion<
                    readonly [
                        ZodLiteral<"buyer_attribution">,
                        ZodLiteral<"third_party_measurement">,
                        ZodLiteral<"platform_analytics">,
                        ZodLiteral<"verification_partner">,
                    ],
                >,
            >;
            context: ZodOptional<ZodObject<{}, $loose>>;
            ext: ZodOptional<ZodObject<{}, $loose>>;
        },
        $loose,
    > = ...