EducationHistoryDto Schema
The EducationHistoryDto contains information about an applicant’s education history for verification purposes.Supported Fields
| Field | Required | Type | Rules and behavior |
|---|---|---|---|
institutionName | Yes | string | Name of the educational institution. Example: "University of California". |
qualification | Yes | string | Educational qualification or credential earned. Example: "Bachelor of Science in Computer Science". |
fieldOfStudy | Yes | string | Field of study or major subject area. Example: "Computer Science". |
graduationDate | Yes | string | Date of graduation or completion in YYYY-MM-DD format. |
institutionContactEmail | No | string | Institution contact email for verification. Must be valid when provided. |
institutionContactPhone | No | string | Institution contact phone number for verification. |
Complete Example
Accreditation Checking
For post-secondary institutions (colleges and universities), the system automatically checks accreditation status:- Automatic: No additional configuration required
- Reference Date: Uses graduation date (preferred), then end date, then start date to check accreditation status at the time the credential was earned
- Data Sources: Combines DAPIP-derived accreditation data (archived CSVs live in GCS bucket
verifications-api-dataset-2026, not underapps/verification-api/data/in git) with the live College Scorecard API for comprehensive coverage - Exempt Institutions: Primary/secondary schools (K-12) and international institutions are automatically excluded
- Webhook Delivery: Accreditation metadata is included in
verification.completedandverification.action_requiredwebhooks
Qualification Examples
Common qualification types include:- Bachelor of Science in Computer Science (accreditation checked)
- Master of Business Administration (accreditation checked)
- Associate of Arts (accreditation checked)
- High School Diploma (accreditation exempt)
- GED (accreditation exempt)
- Certificate in Web Development (accreditation checked if post-secondary)
Validation Rules
- Date Format:
graduationDatemust be in YYYY-MM-DD format - Email Format:
institutionContactEmailmust be a valid email address if provided
Related Schemas
- HistoryDto - Parent history schema
- VerificationRequestDto - Main verification request schema