Predictive Scheduling Laws 2025: Fair Workweek Requirements by State

Laws requiring employers to provide work schedules a certain number of days in advance and pay penalties for last-minute changes. Growing trend in retail and food service industries to provide workers schedule stability.
Jimmy Law

What is Predictive Scheduling?

Predictive scheduling refers to employment laws that require employers to provide work schedules to employees a minimum number of days in advance. Also known as "Fair Workweek" or "Secure Scheduling" laws, these regulations aim to give workers more stability and predictability in their work schedules, allowing them to better plan their lives, arrange childcare, pursue education, and manage additional jobs.

These laws typically apply to employers in specific industries, but most commonly retail, hospitality, food service, and warehousing. They ofte require advance notice of schedules, compensation for any last-minute changes, and the right for employees to request schedule preferences.

Why Predictive Scheduling Laws Exist

Predictive scheduling laws emerged in response to the challenges faced by hourly workers who often receive their schedules with little advance notice or experience frequent last-minute changes. These unpredictable schedules can make it difficult for workers to:

By requiring employers to post schedules further in advance and compensating employees for sudden changes, these laws create more stability for the workforce while still allowing businesses operational flexibility.

Key Components of Predictive Scheduling Laws

While specific requirements vary by jurisdiction, most predictive scheduling laws include several common elements:

Predictive Scheduling Laws by Location (2025)

Oregon

Oregon was the first state to pass a statewide predictive scheduling law, previously limited to certain cities. The Oregon Predictive Scheduling Law, which took effect on July 1, 2020, applies to retail, hospitality, and food service employers with 500 or more employees worldwide.

Key requirements include:

Seattle, Washington

Seattle's Secure Scheduling Ordinance applies to retail and food service establishments with 500 or more employees worldwide. The law has been in effect since July 1, 2017.

Key requirements include:

San Francisco, California

San Francisco's Formula Retail Employees Rights Ordinances include predictive scheduling requirements that took effect in 2015. These apply to "formula retail" establishments (chains with 40 or more locations worldwide that maintain a standardized appearance).

Key requirements include:

New York City, New York

New York City's Fair Workweek Law applies to fast food and retail employers. The fast food provisions took effect in 2017, while retail provisions began in 2021. Fast food employers must have 30+ locations nationwide, while retail employers must have 20+ employees.

Key requirements include:

Philadelphia, Pennsylvania

Philadelphia's Fair Workweek Employment Standards went into effect on January 1, 2020. The law applies to retail, hospitality, and food service establishments with 250 or more employees worldwide and at least 30 locations worldwide.

Key requirements include:

Chicago, Illinois

Chicago's Fair Workweek Ordinance took effect on July 1, 2020. It applies to covered employers in building services, healthcare, hotels, manufacturing, restaurants, retail, and warehouse services industries with 100 or more employees (250+ for non-profits) and at least 50 covered employees.

Key requirements include:

Who is Covered by Predictive Scheduling Laws?

Coverage varies significantly by jurisdiction, but generally includes:

Industry sectors: Retail, food service, hospitality, building services, healthcare, warehousing, and manufacturing

Employer size thresholds: Most laws apply only to larger employers (typically 20-500+ employees, depending on the jurisdiction)

Employee classifications: Usually applies to hourly, non-exempt employees; exempt employees and certain management positions are typically excluded

Compliance Best Practices

To comply with predictive scheduling laws, employers should:

  1. Implement robust scheduling systems: Use scheduling software that can track advance notice requirements and flag potential violations
  2. Train managers thoroughly: Ensure all managers understand the requirements and consequences of non-compliance
  3. Document everything: Keep detailed records of when schedules are posted, when changes are made, and reasons for changes
  4. Create clear policies: Develop written policies that outline your scheduling practices and ensure they meet or exceed legal requirements
  5. Communicate with employees: Establish clear channels for employees to request scheduling preferences and provide feedback
  6. Plan ahead: Build schedules as far in advance as possible to minimize the need for last-minute changes
  7. Budget for predictability pay: Factor in the cost of schedule change premiums when making operational decisions

How Technology Helps with Schedule Compliance

Managing predictive scheduling compliance can be complex, especially for businesses operating in multiple jurisdictions with different requirements. Look for scheduling features that help employers:

Tools like Breakroom enable businesses to streamline their scheduling process while maintaining compliance with Fair Workweek laws across all their locations.

The Future of Predictive Scheduling

Predictive scheduling laws continue to evolve and expand. As of 2025, more cities and states are considering similar legislation as workers increasingly advocate for schedule stability. Employers should stay informed about pending legislation in their jurisdictions and be prepared to adapt their practices accordingly.

The trend toward predictive scheduling reflects a broader shift in how we think about worker rights and work-life balance, particularly for hourly and shift workers who have historically had less control over their schedules than salaried employees.

Note: Predictive scheduling laws are complex and subject to change. This article provides general information but should not be considered legal advice. Employers should consult with legal counsel familiar with local employment laws to ensure full compliance with all applicable regulations.

Fast to set up. Easy to use.
Get your team up and running with Breakroom in 60 seconds. Or schedule a free, personalized demo today.
// Function to update active link function updateActiveLink(activeSectionId) { // Remove active class from all links navigationLinks.forEach(function(link) { link.classList.remove('is-active'); }); // Add active class to the corresponding link var activeLink = document.querySelector('a[href="#' + activeSectionId + '"]'); if (activeLink) { activeLink.classList.add('is-active'); } } // Set up intersection observer for scroll-based active states if (navigationLinks.length > 0) { var observerOptions = { root: null, rootMargin: '-20% 0px -80% 0px', // Trigger when section is 20% from top threshold: 0 }; var observer = new IntersectionObserver(function(entries) { entries.forEach(function(entry) { if (entry.isIntersecting) { updateActiveLink(entry.target.id); } }); }, observerOptions); // Observe all H2 sections headers.forEach(function(header) { observer.observe(header); }); }