Skip to content

hsfs.ge_validation_result #

ValidationResult #

Metadata object representing a validation result generated by Great Expectations in the Feature Store.

id property writable #

id: int | None

Id of the validation report, set by backend.

success property writable #

success: bool

Overall success of the validation step.

result property writable #

result: dict[str, Any]

Result of the expectation after validation.

meta property writable #

meta: dict[str, Any]

Meta field of the validation report to store additional informations.

exception_info property writable #

exception_info: dict[str, Any]

Exception info which can be raised when running validation.

expectation_config property writable #

expectation_config: dict[str, Any]

Expectation configuration used when running validation.

to_ge_type #

to_ge_type() -> (
    great_expectations.core.ExpectationValidationResult
)

Convert to Great Expectations ExpectationValidationResult type.

RETURNS DESCRIPTION
great_expectations.core.ExpectationValidationResult

The validation result as a Great Expectations object.