OSHA Form 301: Injury and Illness Incident Report

The Injury and Illness Incident Report. This form must be completed for each recordable injury or illness entered on the OSHA 300 Log, providing more detailed information about the incident.
Jimmy Law

What is OSHA Form 301?

OSHA Form 301 is the Injury and Illness Incident Report. This form provides detailed information about each recordable work-related injury or illness entered on the OSHA 300 Log.

Who Must Complete Form 301?

Employers required to maintain OSHA Form 300 must complete a Form 301 or equivalent form for each recordable injury or illness. Employers may use workers' compensation forms or insurance forms as substitutes if they contain the same information.

When Must Form 301 Be Completed?

The form must be completed within seven calendar days after receiving information that a recordable work-related injury or illness has occurred.

What Information is Required?

Form 301 captures detailed information including:

Confidentiality Requirements

To protect employee privacy, you must not enter the employee's name on Form 301 for certain privacy concern cases, such as injuries to intimate body parts or sexual assaults.

Official Source: OSHA Form 301

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); }); }