# ParseSummary

**Kind:** Interface

**Source:** [`atloria-monorepo/apps/parser-orchestrator/src/interfaces/parse-result.interface.ts`](https://github.com/sherkety/atloria/blob/main/atloria-monorepo/apps/parser-orchestrator/src/interfaces/parse-result.interface.ts#L328)

Summary statistics for a project parse

## Properties

| Property | Type |
|---|---|
| `totalFiles` | `number` |
| `successfulFiles` | `number` |
| `failedFiles` | `number` |
| `skippedFiles` | `number` |
| `totalEntities` | `number` |
| `totalRelationships` | `number` |
| `totalDuration` | `number` |
| `entitiesByType` | `Record<string, number>` |
| `relationshipsByType` | `Record<string, number>` |
| `parserStats` | `Record<string, ParserStats>` |
