model_fields

CorrectBaselineValue.model_fields: ClassVar[dict[str, FieldInfo]] = {'action': FieldInfo(annotation=Literal['baseline-value'], required=False, default='baseline-value'), 'value': FieldInfo(annotation=float, 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.