SerializedCollectionSummary¶
- class lsst.daf.butler.registry.SerializedCollectionSummary(*, dataset_types: list[lsst.daf.butler._dataset_type.SerializedDatasetType], governors: dict[str, set[str]])¶
Bases:
BaseModel
Serialized version of CollectionSummary.
Attributes Summary
Configuration for the model, should be a dictionary conforming to [
ConfigDict
][pydantic.config.ConfigDict].Metadata about the fields defined on the model, mapping of field names to [
FieldInfo
][pydantic.fields.FieldInfo].Attributes Documentation
- model_config: ClassVar[ConfigDict] = {}¶
Configuration for the model, should be a dictionary conforming to [
ConfigDict
][pydantic.config.ConfigDict].
- model_fields: ClassVar[dict[str, FieldInfo]] = {'dataset_types': FieldInfo(annotation=list[SerializedDatasetType], required=True), 'governors': FieldInfo(annotation=dict[str, set[str]], required=True)}¶
Metadata about the fields defined on the model, mapping of field names to [
FieldInfo
][pydantic.fields.FieldInfo].This replaces
Model.__fields__
from Pydantic V1.