# OpenAPISpec

**Kind:** Interface

**Source:** [`atloria-monorepo/packages/ui-core/src/components/api-explorer/APIExplorer.ts`](https://github.com/sherkety/atloria/blob/main/atloria-monorepo/packages/ui-core/src/components/api-explorer/APIExplorer.ts#L72)

## Properties

| Property | Type |
|---|---|
| `openapi` | `string` |
| `info` | `{
    title: string;
    version: string;
    description?: string;
  }` |
| `paths` | `Record<string, any>` |
| `servers` | `Array<{ url: string; description?: string }>` |
| `components` | `{
    securitySchemes?: Record<string, SecurityScheme>;
    /** Resolved DTO schemas — EndpointDetail reads these to expand $ref in its tables. */
    schemas?: Record<string, any>;
  }` |
| `security` | `Array<Record<string, string[]>>` |
