Skip to content

hsfs.validation_report #

ValidationReport #

Metadata object representing a validation report 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.

results property writable #

List of expectation results obtained after validation.

meta property writable #

meta: dict[str, Any] | None

Meta field of the validation report to store additional informations.

statistics property writable #

statistics: dict[str, Any] | None

Statistics field of the validation report which store overall statistics about the validation result, e.g number of failing/successful expectations.

evaluation_parameters property writable #

evaluation_parameters: dict[str, Any] | None

Evaluation parameters field of the validation report which store kwargs of the validation.

ingestion_result property writable #

ingestion_result: str

Overall success of the validation run together with the ingestion validation policy, indicating if dataframe was ingested or rejected.

to_ge_type #

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

Convert to Great Expectations ExpectationSuiteValidationResult type.

RETURNS DESCRIPTION
great_expectations.core.ExpectationSuiteValidationResult

The validation report in great_expectations format.