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

# ProjectGalleryItem

```ts theme={"theme":"github-dark-high-contrast"}
export interface ProjectGalleryItem {
  url: string;
  featured: boolean;
  title?: string | null;
  description?: string | null;
  created: string;
  ordering: number;
}
```

## Properties

<ResponseField name="url" type="string" required />

<ResponseField name="featured" type="boolean" required />

<ResponseField name="title" type="string | null" />

<ResponseField name="description" type="string | null" />

<ResponseField name="created" type="string" required />

<ResponseField name="ordering" type="number" required />
