Skip to main content
Version: 1.2.0

RunIdentifier

class great_expectations.RunIdentifier(run_name: Optional[str] = None, run_time: Optional[Union[datetime.datetime, str]] = None)#

A RunIdentifier identifies a run (collection of validations) by run_name and run_time.

Parameters
  • run_name – a string or None.

  • run_time – a Datetime.datetime instance, a string, or None.

to_json_dict() dict[str, typing.Union[dict[str, typing.Union[dict[str, ForwardRef('JSONValues')], list[ForwardRef('JSONValues')], str, int, float, bool, NoneType]], list[typing.Union[dict[str, ForwardRef('JSONValues')], list[ForwardRef('JSONValues')], str, int, float, bool, NoneType]], str, int, float, bool, NoneType]]#

Returns a JSON-serializable dict representation of this RunIdentifier.

Returns

A JSON-serializable dict representation of this RunIdentifier.