Module adcp.types.generated_poc.governance.audience_constraints

Classes

class AudienceConstraints (**data: Any)
Expand source code
class AudienceConstraints(AdCPBaseModel):
    model_config = ConfigDict(
        extra='forbid',
    )
    exclude: Annotated[
        list[audience_selector.AudienceSelector] | None,
        Field(
            description="Excluded audience criteria. The seller's targeting must not overlap with these. Exclusions take precedence over inclusions. Used for protected groups, vulnerable communities, regulatory restrictions, or brand safety.",
            min_length=1,
        ),
    ] = None
    include: Annotated[
        list[audience_selector.AudienceSelector] | None,
        Field(
            description="Desired audience criteria. The seller's targeting should align with these. Each criterion is evaluated independently — the combined targeting should satisfy at least one inclusion criterion.",
            min_length=1,
        ),
    ] = None

Base model for AdCP types with spec-compliant serialization.

Defaults to extra='ignore' so that unknown fields from newer spec versions are silently dropped rather than causing validation errors. Generated types whose schemas set additionalProperties: true override this with extra='allow' in their own model_config. Consumers who want strict validation can override with extra='forbid'.

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors

Class variables

var exclude : list[AudienceSelector] | None
var include : list[AudienceSelector] | None
var model_config

Inherited members