Module adcp.types.generated_poc.governance.policy_ref

Classes

class PolicyReference (**data: Any)
Expand source code
class PolicyReference(AdCPBaseModel):
    model_config = ConfigDict(
        extra='forbid',
    )
    config: Annotated[
        dict[str, Any] | None,
        Field(
            description="Brand-specific parameter overrides for configurable policies. The accepted shape depends on the policy's config_schema."
        ),
    ] = None
    policy_id: Annotated[
        str,
        Field(
            description='The unique identifier of the policy in the registry (e.g., "uk_hfss", "us_coppa").'
        ),
    ]
    version: Annotated[
        str | None,
        Field(
            description='Pin a specific policy version (semver). If omitted, the current version is used.'
        ),
    ] = 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 config : dict[str, typing.Any] | None
var model_config
var policy_id : str
var version : str | None

Inherited members