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

    Interface CreateContentStandardsRequest

    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 CreateContentStandardsRequest {
        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?: ({ type: "url"; value: string; language?: string } | Artifact1)[];
        };
        context?: ContextObject;
        ext?: ExtensionObject;
    }
    Index

    Properties

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

    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).

    • languages_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

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

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

    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?: ({ type: "url"; value: string; language?: string } | Artifact1)[]

      Content that fails the standards

    context?: ContextObject
    ext?: ExtensionObject