> ## Documentation Index
> Fetch the complete documentation index at: https://documentation.theary.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# History

> Employment and education records included on a verification order.

# History

Employment and education records to verify on the order.

## Fields

| Field        | Required | Type       | Description                                                                                                                                         |
| ------------ | -------- | ---------- | --------------------------------------------------------------------------------------------------------------------------------------------------- |
| `employment` | No       | `object[]` | Employment records to verify (employer, position, dates, optional contacts). See [Employment history](/api-reference/schemas/employment-history).   |
| `education`  | No       | `object[]` | Education records to verify (institution, credential, dates, optional contacts). See [Education history](/api-reference/schemas/education-history). |

## Example

```json theme={null}
{
  "employment": [
    {
      "employerName": "Tech Corp",
      "position": "Software Engineer",
      "employerEmail": "hr@techcorp.com",
      "employerPhone": "+1-555-123-4567",
      "startDate": "2020-01-15",
      "endDate": "2023-06-30"
    }
  ],
  "education": [
    {
      "institutionName": "University of California",
      "qualification": "Bachelor of Science in Computer Science",
      "fieldOfStudy": "Computer Science",
      "graduationDate": "2018-05-15",
      "institutionContactEmail": "registrar@berkeley.edu",
      "institutionContactPhone": "+1-510-642-6000"
    }
  ]
}
```

## Related schemas

* [Verification request](/api-reference/schemas/verification-request) — Main verification request schema
* [Employment history](/api-reference/schemas/employment-history) — Employment history structure
* [Education history](/api-reference/schemas/education-history) — Education history structure
