Module adcp.types.generated_poc.property.property_feature_value

Classes

class PropertyFeatureValue (**data: Any)
Expand source code
class PropertyFeatureValue(AdCPBaseModel):
    model_config = ConfigDict(
        extra='forbid',
    )
    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., 'gCO2e/1000_impressions', 'percentage')"
        ),
    ] = 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 specific value was measured')
    ] = None
    expires_at: Annotated[
        AwareDatetime | None,
        Field(
            description='When this certification/value expires (for time-limited certifications)'
        ),
    ] = None
    methodology_version: Annotated[
        str | None, Field(description='Version of the methodology used to calculate this value')
    ] = None
    details: Annotated[
        dict[str, Any] | None,
        Field(description='Additional vendor-specific details about this measurement'),
    ] = None
    ext: ext_1.ExtensionObject | None = 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 confidence : float | None
var details : dict[str, typing.Any] | None
var expires_at : pydantic.types.AwareDatetime | None
var extExtensionObject | None
var measured_at : pydantic.types.AwareDatetime | None
var methodology_version : str | None
var model_config
var unit : str | None
var value : bool | float | str

Inherited members