COPPA and FERPA: EdTech Compliance Essentials
Compliance February 14, 2026

COPPA and FERPA: EdTech Compliance Essentials

Building education technology means navigating COPPA for young children and FERPA for students of all ages. Here's what EdTech founders must understand before launching.

J

Jason Overmier

Innovative Prospects Team

Education technology sits at the intersection of innovation and regulation. You’re building tools to help students learn, but you’re also handling data about children and young adults. The regulatory framework reflects that sensitivity.

Two laws dominate EdTech compliance: COPPA for young children and FERPA for students of all ages. They’re often confused, but they serve different purposes and apply differently.

Here’s what EdTech founders need to understand before collecting their first student data point.

Quick Answer

LawWho It ProtectsWhen It AppliesKey Requirement
COPPAChildren under 13Any website/app collecting data from childrenParental consent before collection
FERPAStudents (any age)Educational institutions receiving federal fundingProtect education records, limit disclosure

Key insight: COPPA applies to you directly as an EdTech provider. FERPA applies primarily to schools, but you’ll feel its requirements through contracts and data processing agreements.

COPPA: Children’s Online Privacy Protection Act

COPPA applies to any online service that:

  1. Targets children under 13, or
  2. Has actual knowledge it’s collecting data from children under 13

What COPPA Requires

RequirementWhat It Means for You
Parental noticeClear privacy policy explaining data practices
Parental consentVerifiable consent before collecting data from children
Parental accessParents can review, delete, and refuse further collection
Data minimizationOnly collect what’s reasonably necessary
SecurityReasonable security practices
Retention limitsDelete when no longer needed

This is the biggest operational challenge. Acceptable methods:

MethodPractical Notes
Signed consent formTraditional, works for school-wide deployments
Credit card transactionNot practical for most EdTech
Phone/video verificationRequires staff time
Email + additional verificationCommon for lower-risk services
School-based consentFor school-directed services, school can consent

For school-focused EdTech: Schools can often provide consent on behalf of parents for educational purposes, but this requires specific conditions and documentation.

COPPA-Safe Harbor Programs

The FTC has approved safe harbor programs that provide certification:

ProgramWhat It Provides
PRIVOCertification and consent management
kidSAFESeal program with guidelines
CARUSelf-regulatory guidelines

Certification doesn’t guarantee compliance, but it demonstrates good faith.

COPPA Penalties

ViolationMaximum Penalty
Per violation$50,120 (2024 figure, adjusted annually)

Note: Each child affected can count as a separate violation. A single app with thousands of child users could face millions in penalties.

FERPA: Family Educational Rights and Privacy Act

FERPA applies to educational institutions that receive federal funding. It doesn’t directly regulate EdTech companies, but it shapes every contract you’ll sign with schools.

What FERPA Protects

FERPA protects “education records”: records directly related to a student and maintained by the educational institution.

ProtectedNot Protected
Grades and transcriptsDirectory information (with opt-out)
Disciplinary recordsPersonal notes of educators
Special education recordsLaw enforcement records
Health records held by schoolEmployment records (if not students)

Student/Parent Rights Under FERPA

RightDescription
AccessReview education records within 45 days of request
AmendmentRequest correction of inaccurate records
ConsentControl disclosure of personally identifiable information
ComplaintFile complaints with the Department of Education

How FERPA Affects EdTech Companies

Schools can’t share FERPA-protected data with you without meeting specific requirements:

RequirementPractical Meaning
Legitimate educational interestData used only for school’s educational purposes
Written agreementContract specifying data use, destruction requirements
Annual notificationSchool must notify parents of data sharing practices
Data securityYou must protect data to FERPA standards

Your contracts will include: Data processing terms, security requirements, data destruction obligations, audit rights, and breach notification requirements.

Compliance Framework for EdTech

COPPA Compliance Checklist

Privacy Policy Requirements:

  • List all operators collecting data
  • Describe what information is collected
  • Explain how information is used
  • Disclose whether data is shared with third parties
  • State that consent is required for children under 13
  • Explain how parents can review and delete data

Operational Requirements:

  • Age-gate or age-collection mechanism
  • Parental consent workflow for users under 13
  • Parental access portal for data review/deletion
  • Data minimization practices
  • Secure data storage and transmission
  • Data retention and deletion policies
  • Staff training on COPPA requirements

Third-Party Integration:

  • Review all SDKs and APIs for data collection
  • Ensure analytics tools are COPPA-compliant
  • Contract with data processors for compliance

FERPA Compliance Checklist

Contract Preparation:

  • Template data processing agreement ready
  • Security documentation available for schools
  • Data destruction procedures documented
  • Breach notification procedures documented
  • Audit trail for data access

Technical Requirements:

  • Role-based access controls
  • Encryption at rest and in transit
  • Audit logging for data access
  • Data segregation by school/district
  • Secure data destruction capabilities

Operational Requirements:

  • Staff training on FERPA obligations
  • Background checks for staff accessing data
  • Incident response procedures
  • Regular security assessments

Common Mistakes

MistakeConsequenceFix
Assuming COPPA doesn’t applyYou have users under 13 whether you know it or notImplement age collection or conservative approach
Using standard analyticsMost analytics tools aren’t COPPA-compliantUse privacy-focused analytics or no tracking
Not having deletion workflowsCan’t respond to parental requestsBuild deletion into your data layer
Ignoring FERPA in contractsSchools can’t sign with youHave compliant contract templates ready
Storing data indefinitelyViolates both COPPA and FERPADefine and enforce retention limits
Not vetting third partiesLiable for their violationsAudit all data-touching integrations

Design Patterns for Compliance

Age Collection

// Age gate pattern
const AGE_GATE_PROMPT = "Before we continue, please enter your birth year";
const COPPA_AGE = 13;

function requiresParentalConsent(birthYear: number): boolean {
  const currentYear = new Date().getFullYear();
  return currentYear - birthYear < COPPA_AGE;
}

// Route to parental consent flow if under 13

Data Minimization

// Collect only what's needed for the educational purpose
interface StudentProfile {
  // Required for service
  id: string;
  gradeLevel: number;

  // Optional, only if needed for functionality
  displayName?: string;
  avatar?: string;

  // NEVER collect without explicit need and consent
  // emailAddress?: string;  // Only if communications require it
  // location?: string;      // Almost never needed
}

Parental Access

// Parental access workflow
async function handleParentRequest(parentId: string, childId: string) {
  // 1. Verify parent relationship
  const relationship = await verifyParentChild(parentId, childId);
  if (!relationship.valid) throw new Error("Unauthorized");

  // 2. Retrieve child's data
  const childData = await exportChildData(childId);

  // 3. Provide in accessible format
  return {
    data: childData,
    exportDate: new Date(),
    deletionInstructions: "To delete, click here..."
  };
}

Working with Schools

Contract Expectations

Schools and districts will expect:

DocumentPurpose
Data processing agreementDefines your FERPA obligations
Security questionnaireDocuments your security practices
Insurance certificateProof of cyber liability coverage
SOC 2 report (eventually)Independent security verification
Privacy policyCOPPA/FERPA-compliant disclosure

Sales Cycle Implications

EdTech sales cycles are longer partly due to compliance review:

StageCompliance Component
Initial contactPrivacy questions surface early
EvaluationSecurity/privacy review by IT
ProcurementContract negotiation, DPA signing
ImplementationData integration with school consent
OngoingAnnual reviews and audits

Budget extra time for these reviews.

State Laws to Watch

Federal law sets the floor. Some states add requirements:

StateAdditional Requirements
CaliforniaSOPIPA (no marketing to students), CCPA
New YorkEducation Law §2-d, strict security requirements
ColoradoAdditional student data protections
Student data privacy laws40+ states have enacted some form

Best practice: Build for the strictest state. Federal compliance becomes easier when you exceed requirements.


EdTech compliance isn’t optional, but it shouldn’t prevent you from building valuable tools for students and educators. If you’re planning an EdTech product and want guidance on building compliance into your architecture from day one, book a consultation. We’ve navigated COPPA and FERPA for education products and can help you avoid common pitfalls.

Ready to Start Your Project?

Let's discuss how we can help bring your vision to life.

Book a Consultation