# types/schema.types.ts

> 5 lines of code and 2 definitions.

Tree: Site tree
Language: typescript
Layer: infrastructure
Canonical: https://banes-lab.com/anatomy/tree#file-types-schema-types-ts
Source text: https://banes-lab.com/assets/sources/source.b4b2a66a9f1b7b7e12ae552b4001da22d806ef87ac18e760fb4e059bf1b26c7a.generated.txt

## Definitions

- `SchemaEntity` (type_alias_declaration, line 1, exported)
- `SchemaGraph` (interface_declaration, line 3, exported)

## Source

```typescript
export type SchemaEntity = Readonly<Record<string, unknown>>;

export interface SchemaGraph {
    readonly "@context": string;
    readonly "@graph": readonly SchemaEntity[];
}
```
