Module adcp.types.generated_poc.creative.creative_feature_result
Classes
class CreativeFeatureResult (**data: Any)-
Expand source code
class CreativeFeatureResult(AdCPBaseModel): model_config = ConfigDict( extra='forbid', ) feature_id: Annotated[ str, Field( description="The feature that was evaluated (e.g., 'auto_redirect', 'brand_consistency'). Features prefixed with 'registry:' reference standardized policies from the shared policy registry (e.g., 'registry:eu_ai_act_article_50'). Unprefixed feature IDs are agent-defined." ), ] value: Annotated[ bool | float | str, Field( description='The feature value. Type depends on feature definition: boolean for binary, number for quantitative, string for categorical.' ), ] unit: Annotated[ str | None, Field( description="Unit of measurement for quantitative values (e.g., 'percentage', 'score')" ), ] = None confidence: Annotated[ float | None, Field(description='Confidence score for this value (0-1)', ge=0.0, le=1.0) ] = None measured_at: Annotated[ AwareDatetime | None, Field(description='When this feature was evaluated') ] = None expires_at: Annotated[ AwareDatetime | None, Field(description='When this evaluation expires and should be refreshed'), ] = None methodology_version: Annotated[ str | None, Field(description='Version of the methodology used to evaluate this feature') ] = None details: Annotated[ dict[str, Any] | None, Field(description='Additional vendor-specific details about this evaluation'), ] = None ext: ext_1.ExtensionObject | None = NoneBase 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 setadditionalProperties: trueoverride this withextra='allow'in their ownmodel_config. Consumers who want strict validation can override withextra='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.selfis explicitly positional-only to allowselfas a field name.Ancestors
- AdCPBaseModel
- pydantic.main.BaseModel
Class variables
var confidence : float | Nonevar details : dict[str, typing.Any] | Nonevar expires_at : pydantic.types.AwareDatetime | Nonevar ext : ExtensionObject | Nonevar feature_id : strvar measured_at : pydantic.types.AwareDatetime | Nonevar methodology_version : str | Nonevar model_configvar unit : str | Nonevar value : bool | float | str
Inherited members