@adcp/sdk API Reference - v14.0.0-beta.6
    Preparing search index...

    Interface LegacyIContentStandardsAdapter

    Abstract interface for content standards adapters. Publishers implement this to provide their evaluation logic.

    interface LegacyIContentStandardsAdapter {
        isSupported(): boolean;
        listStandards(
            request: LegacyListContentStandardsRequest,
        ): Promise<LegacyListContentStandardsResponse>;
        getStandards(
            request: LegacyGetContentStandardsRequest,
        ): Promise<LegacyGetContentStandardsResponse>;
        createStandards(
            request: LegacyCreateContentStandardsRequest,
        ): Promise<LegacyCreateContentStandardsResponse>;
        updateStandards(
            request: LegacyUpdateContentStandardsRequest,
        ): Promise<LegacyUpdateContentStandardsResponse>;
        calibrateContent(
            request: LegacyCalibrateContentRequest,
        ): Promise<LegacyCalibrateContentResponse>;
        validateContentDelivery(
            request: LegacyValidateContentDeliveryRequest,
        ): Promise<LegacyValidateContentDeliveryResponse>;
        evaluateArtifact(
            standardsId: string,
            artifact: LegacyArtifact,
        ): Promise<LegacyContentEvaluationResult>;
    }

    Implemented by

    Index

    Methods