> ## 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/models/included-schemas",
  "feedback": "Description of the issue"
}
```

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

</AgentInstructions>

# included_schemas

> Includes only the listed schemas for use in workbooks.

<Warning>
  This parameter can't be used if [`ignored_schemas`](/modeling/models/ignored-schemas) is in use.
</Warning>

Includes only the listed schemas for use in workbooks.

Schemas that aren't included will still be available for use in SQL queries.

<Note>
  Topics whose `base_view` is in a schema not listed in `included_schemas` are automatically hidden in workbooks and excluded from model validation. No manual topic ignoring is required.
</Note>

## Syntax

```yaml theme={null}
# Values can be provided as an indented list
included_schemas:
  - <schema_one>
  - <schema_two>

# Or as a comma-delimited list
included_schemas: [<schema_one>, <schema_two>]
```

Each value provided to this parameter must be the name of a schema in the database connection.

## Examples

```yaml theme={null}
included_schemas:
  - marketing
  - sales
```
