- Calendar Day
- Any day on the standard calendar including weekends and holidays. Calendar days are the simplest unit for measuring a date gap and form the basis for all other time-unit conversions.
- Inclusive Date Range
- A range where both the start and end dates are counted as part of the total. For example, January 1 to January 3 inclusive is 3 days, whereas exclusive counting gives 2 days.
- ISO 8601
- An international standard for representing dates and times in the format YYYY-MM-DD. Its unambiguous ordering eliminates the US vs European day/month confusion that causes date parsing errors.
- Epoch Time
- A count of seconds (or milliseconds) since January 1, 1970 00:00:00 UTC. Many programming environments internally convert calendar dates to epoch values before subtracting them to find a duration.
- Business Day
- A weekday (Monday through Friday) that is not a public holiday. Business-day counts are commonly required in legal notice periods, financial settlement windows, and project scheduling.
- Duration
- The length of time between two points. In ISO 8601 notation, a duration is expressed as P followed by years (Y), months (M), weeks (W), and days (D) — for example P1Y3M22D for one year, three months, and 22 days.