# ParseResult

**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#L208)

Result of parsing a single file

## Properties

| Property | Type |
|---|---|
| `parserName` | `string` |
| `filePath` | `string` |
| `timestamp` | `Date` |
| `status` | `ParseStatus` |
| `entities` | `Entity[]` |
| `relationships` | `Relationship[]` |
| `errors` | `ParseError[]` |
| `warnings` | `ParseWarning[]` |
| `metadata` | `ParseMetadata` |
