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

    Interface UpdateContentStandardsRequest

    Standardized advertising media channels describing how buyers allocate budget. Channels are planning abstractions, not technical substrates. See the Media Channel Taxonomy specification for detailed definitions.

    interface UpdateContentStandardsRequest {
        standards_id: string;
        scope?: {
            countries_all?: string[];
            channels_any?: MediaChannel[];
            languages_any?: string[];
            description?: string;
        };
        policy?: string;
        calibration_exemplars?: {
            pass?: (Artifact | { type: "url"; value: string; language?: string })[];
            fail?: (Artifact1 | { type: "url"; value: string; language?: string })[];
        };
        context?: ContextObject;
        ext?: ExtensionObject;
    }
    Index

    Properties

    standards_id: string

    ID of the standards configuration to update

    scope?: {
        countries_all?: string[];
        channels_any?: MediaChannel[];
        languages_any?: string[];
        description?: string;
    }

    Updated scope for where this standards configuration applies

    Type Declaration

    • Optionalcountries_all?: string[]

      ISO 3166-1 alpha-2 country codes. Standards apply in ALL listed countries (AND logic).

    • Optionalchannels_any?: MediaChannel[]

      Advertising channels. Standards apply to ANY of the listed channels (OR logic).

    • Optionallanguages_any?: string[]

      BCP 47 language tags (e.g., 'en', 'de', 'fr'). Standards apply to content in ANY of these languages (OR logic). Content in unlisted languages is not covered by these standards.

    • Optionaldescription?: string

      Human-readable description of this scope

    policy?: string

    Updated natural language policy describing acceptable and unacceptable content contexts.

    calibration_exemplars?: {
        pass?: (Artifact | { type: "url"; value: string; language?: string })[];
        fail?: (Artifact1 | { type: "url"; value: string; language?: string })[];
    }

    Updated training/test set to calibrate policy interpretation. Use URL references for pages to be fetched and analyzed, or full artifacts for pre-extracted content.

    Type Declaration

    • Optionalpass?: (Artifact | { type: "url"; value: string; language?: string })[]

      Content that passes the standards

    • Optionalfail?: (Artifact1 | { type: "url"; value: string; language?: string })[]

      Content that fails the standards

    context?: ContextObject
    ext?: ExtensionObject