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

    Variable ValidationResultSchemaConst

    ValidationResultSchema: ZodObject<
        {
            identifier: ZodObject<
                {
                    type: ZodUnion<
                        readonly [
                            ZodLiteral<"domain">,
                            ZodLiteral<"subdomain">,
                            ZodLiteral<"network_id">,
                            ZodLiteral<"ios_bundle">,
                            ZodLiteral<"android_package">,
                            ZodLiteral<"apple_app_store_id">,
                            ZodLiteral<"google_play_id">,
                            ZodLiteral<"roku_store_id">,
                            ZodLiteral<"fire_tv_asin">,
                            ZodLiteral<"samsung_app_id">,
                            ZodLiteral<"apple_tv_bundle">,
                            ZodLiteral<"bundle_id">,
                            ZodLiteral<"venue_id">,
                            ZodLiteral<"screen_id">,
                            ZodLiteral<"openooh_venue_type">,
                            ZodLiteral<"rss_url">,
                            ZodLiteral<"apple_podcast_id">,
                            ZodLiteral<"spotify_collection_id">,
                            ZodLiteral<"podcast_guid">,
                            ZodLiteral<"station_id">,
                            ZodLiteral<"facility_id">,
                        ],
                    >;
                    value: ZodString;
                },
                $loose,
            >;
            record_id: ZodOptional<ZodString>;
            status: ZodUnion<
                readonly [
                    ZodLiteral<"compliant">,
                    ZodLiteral<"non_compliant">,
                    ZodLiteral<"not_covered">,
                    ZodLiteral<"unidentified">,
                ],
            >;
            impressions: ZodNumber;
            features: ZodOptional<
                ZodArray<
                    ZodObject<
                        {
                            feature_id: ZodString;
                            status: ZodUnion<
                                readonly [
                                    ZodLiteral<"passed">,
                                    ZodLiteral<"failed">,
                                    ZodLiteral<"warning">,
                                    ZodLiteral<"unevaluated">,
                                ],
                            >;
                            policy_id: ZodOptional<ZodString>;
                            explanation: ZodOptional<ZodString>;
                            requirement: ZodOptional<
                                ZodObject<
                                    {
                                        min_value: ZodOptional<ZodNumber>;
                                        max_value: ZodOptional<ZodNumber>;
                                        allowed_values: ZodOptional<ZodArray<(...)>>;
                                    },
                                    $loose,
                                >,
                            >;
                            confidence: ZodOptional<ZodNumber>;
                        },
                        $loose,
                    >,
                >,
            >;
            authorization: ZodOptional<
                ZodObject<
                    {
                        status: ZodUnion<
                            readonly [
                                ZodLiteral<"authorized">,
                                ZodLiteral<"unauthorized">,
                                ZodLiteral<"unknown">,
                            ],
                        >;
                        publisher_domain: ZodOptional<ZodString>;
                        sales_agent_url: ZodOptional<ZodString>;
                        violation: ZodOptional<
                            ZodObject<{ code: ZodString; message: ZodString }, $loose>,
                        >;
                    },
                    $loose,
                >,
            >;
            ext: ZodOptional<ZodObject<{}, $loose>>;
        },
        $loose,
    > = ...