Expectation Evaluations

An ExpectationEvaluation records one open or closed window for an Expectation.

Data Source Schema

Required

PropertyDescription
id
Int64
ExpectationEvaluation ID

Read Only

PropertyDescription
workspace_id
Int64
Workspace ID. 0 means the default workspace.
expectation_id
Int64
Expectation ID.
status
String
Evaluation status.
Possible values: open, success, late, missing, invalid
opened_via
String
How the evaluation window was opened.
Possible values: schedule, manual, upload
opened_at
String
When the evaluation row was opened.
window_start_at
String
Logical start of the candidate window.
window_end_at
String
Actual candidate cutoff boundary for the window.
deadline_at
String
Logical due boundary for schedule-driven windows.
late_acceptance_cutoff_at
String
Logical cutoff for late acceptance, when present.
hard_close_at
String
Hard stop after which the window may not remain open.
closed_at
String
When the evaluation row was finalized.
matched_files
Dynamic
Captured evidence for files that matched the window.
missing_files
Dynamic
Captured evidence for required files that were missing.
criteria_errors
List
Captured criteria failures for the window, including file-scoped FTS errors and returned validation details.
summary
Dynamic
Compact evaluator summary payload.
created_at
String
Creation time.
updated_at
String
Last update time.

Example Data Source

data "files_expectation_evaluation" "example_expectation_evaluation" {
  id = 1
}