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

    Interface ContentStandards

    A content standards configuration defining brand safety and suitability policies. Standards are scoped by brand, geography, and channel. Multiple standards can be active simultaneously for different scopes.

    interface ContentStandards {
        standards_id: string;
        name?: string;
        countries_all?: string[];
        channels_any?: MediaChannel[];
        languages_any?: [string, ...string[]];
        policy?: string;
        calibration_exemplars?: { pass?: Artifact[]; fail?: Artifact[] };
        ext?: ExtensionObject;
    }
    Index

    Properties

    standards_id: string

    Unique identifier for this standards configuration

    name?: string

    Human-readable name for this standards configuration

    countries_all?: string[]

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

    channels_any?: MediaChannel[]

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

    languages_any?: [string, ...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.

    1

    policy?: string

    Natural language policy describing acceptable and unacceptable content contexts. Used by LLMs and human reviewers to make judgments.

    calibration_exemplars?: { pass?: Artifact[]; fail?: Artifact[] }

    Training/test set to calibrate policy interpretation. Provides concrete examples of pass/fail decisions.

    Type Declaration

    • Optionalpass?: Artifact[]

      Artifacts that pass the content standards

    • Optionalfail?: Artifact[]

      Artifacts that fail the content standards

    ext?: ExtensionObject