> ## 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/query-views/parameters/schema",
  "feedback": "Description of the issue"
}
```

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

</AgentInstructions>

# schema

> References the query's underlying schema name from the associated database connection.

## Syntax

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

## Properties

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

## Examples

```yaml title="Translates to ecommerce.users.[field]" theme={null}
schema: ecommerce
query:
  fields:
    users.age: age
    users.created_at[year]: created_at_year
  base_view: users
```
