failedAt
FailedAt is a timestamp field used in software systems to record the exact time at which an operation or process failed. It functions as a successor to simple boolean failure indicators by providing a precise point in time for auditing, analysis, and troubleshooting. The field is commonly found in logs, database schemas, and status objects that track the lifecycle of tasks, jobs, or requests.
In practice, failedAt appears in various contexts such as background job queues, build and deployment pipelines,
Data type and format typically use a date-time value. It is commonly stored as an ISO 8601
Semantics can differ: in some systems, failedAt is updated with each retry attempt to reflect the most
See also: failedReason, status, retryAt, startedAt, completedAt.