@adcp/client API Reference - v3.11.2
    Preparing search index...

    Interface IContentStandardsAdapter

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

    interface IContentStandardsAdapter {
        isSupported(): boolean;
        listStandards(
            request: ListContentStandardsRequest,
        ): Promise<ListContentStandardsResponse>;
        getStandards(
            request: GetContentStandardsRequest,
        ): Promise<GetContentStandardsResponse>;
        createStandards(
            request: CreateContentStandardsRequest,
        ): Promise<CreateContentStandardsResponse>;
        updateStandards(
            request: UpdateContentStandardsRequest,
        ): Promise<UpdateContentStandardsResponse>;
        calibrateContent(
            request: CalibrateContentRequest,
        ): Promise<CalibrateContentResponse>;
        validateContentDelivery(
            request: ValidateContentDeliveryRequest,
        ): Promise<ValidateContentDeliveryResponse>;
        evaluateArtifact(
            standardsId: string,
            artifact: Artifact,
        ): Promise<ContentEvaluationResult>;
    }

    Implemented by

    Index

    Methods