calculate_working_days_eu
Calculate the number of working days between two dates for a European country, excluding weekends and national holidays. Supports PT, ES, FR, DE, IT, NL, BE, UK.
Instructions
Counts the number of working days between two dates (inclusive) for a given European country, excluding weekends and that country's national public holidays. Returns { country, start_date, end_date, working_days, holidays_excluded }. Supports PT, ES, FR, DE, IT, NL, BE, UK. Use when calculating cross-border SLA periods, invoice payment deadlines, or project timelines that must account for different national holiday calendars.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| country_code | Yes | Two-letter ISO country code. Example: 'DE', 'IT', 'UK' | |
| start_date | Yes | Start date in YYYY-MM-DD format, inclusive. Example: '2026-01-01' | |
| end_date | Yes | End date in YYYY-MM-DD format, inclusive. Example: '2026-01-31' |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| country | No | ||
| start_date | No | ||
| end_date | No | ||
| working_days | No | ||
| holidays_excluded | No | ||
| error | No |