> ## 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.

# 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
```
