PerformedAt
PerformedAt is a field name commonly used in data models, logs, and APIs to record the exact time an action was executed. It represents the moment at which an operation actually occurred, as opposed to when the request was created or queued. In practice, performedAt is typically implemented as a timestamp.
In most systems, performedAt is stored as a datetime value with a time zone, usually in UTC
Semantics matters: performedAt should reflect the true execution time of the action. It may be null or
Common considerations include consistency in naming, appropriate indexing for query performance, and consistent timezone handling. Validation
{
"performedAt": "2024-12-01T15:30:00Z"
}