flexmeasures.api.common.schemas.sensors
Classes
- class flexmeasures.api.common.schemas.sensors.SensorField(entity_type: str = 'sensor', fm_scheme: str = 'fm1', *args, **kwargs)
Field that de-serializes to a Sensor, and serializes a Sensor into an entity address (string).
- class flexmeasures.api.common.schemas.sensors.SensorIdField(*, strict: bool = False, **kwargs)
Field that represents a sensor ID. It de-serializes from the sensor id to a sensor instance.
- _deserialize(sensor_id: int, attr, obj, **kwargs) Sensor
Deserialize value. Concrete
Fieldclasses should implement this method.- Parameters:
value – The value to be deserialized.
attr – The attribute/key in data to be deserialized.
data – The raw input data passed to the Schema.load.
kwargs – Field-specific keyword arguments.
- Raises:
ValidationError – In case of formatting or validation failure.
- Returns:
The deserialized value.
Changed in version 2.0.0: Added
attranddataparameters.Changed in version 3.0.0: Added
**kwargsto signature.
- class flexmeasures.api.common.schemas.sensors.UnitField(*, load_default: typing.Any = <marshmallow.missing>, missing: typing.Any = <marshmallow.missing>, dump_default: typing.Any = <marshmallow.missing>, default: typing.Any = <marshmallow.missing>, data_key: str | None = None, attribute: str | None = None, validate: None | typing.Callable[[typing.Any], typing.Any] | typing.Iterable[typing.Callable[[typing.Any], typing.Any]] = None, required: bool = False, allow_none: bool | None = None, load_only: bool = False, dump_only: bool = False, error_messages: dict[str, str] | None = None, metadata: typing.Mapping[str, typing.Any] | None = None, **additional_metadata)
Field that represents a unit.
- _deserialize(value, attr, data, **kwargs) str
Deserialize value. Concrete
Fieldclasses should implement this method.- Parameters:
value – The value to be deserialized.
attr – The attribute/key in data to be deserialized.
data – The raw input data passed to the Schema.load.
kwargs – Field-specific keyword arguments.
- Raises:
ValidationError – In case of formatting or validation failure.
- Returns:
The deserialized value.
Changed in version 2.0.0: Added
attranddataparameters.Changed in version 3.0.0: Added
**kwargsto signature.
Exceptions