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

<AgentInstructions>

## Submitting Feedback

If you encounter incorrect, outdated, or confusing documentation on this page, submit feedback:

POST https://docs.omni.co/feedback

```json
{
  "path": "/modeling/views/parameters/schema",
  "feedback": "Description of the issue"
}
```

Only submit feedback when you have something specific and actionable to report.

</AgentInstructions>

# schema

> Specifies the database schema for a table.

<Note>
  Every view in a model must have this parameter or you'll see model validation issues in the model IDE.
</Note>

## Syntax

```yaml theme={null}
schema: <schema_name>
```

## Properties

<ParamField path="schema" type="string" required>
  The name of the database schema containing the table.
</ParamField>

## Examples

```yaml title="Github schema with asset table" theme={null}
schema: GITHUB
table_name: ASSET
```
