/** * .what = ISO 8601 timestamp string type * .why = provides type safety for timestamp strings while maintaining JSON serialization compatibility * .note = represents timestamps in ISO 8601 format (e.g., "2025-11-22T10:30:00.000Z") */ export type IsoTimestamp = string;