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

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

</AgentInstructions>

# included_views

> Defines a list of views from the database schema to include in the model.

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

Defines a list of views from the database schema to include in the model. Views that aren't included can't be referenced when modeling.

<Note>
  Topics whose `base_view` is not in the `included_views` list 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_views:
  - users
  - main.products
  - main__customers

# Or as a comma-delimited list
included_views: [users, products]
```

Each value provided to this parameter must be the name of a view in the database connection:

* Fully-qualified view names (`<schema>.<view>` or `<schema>__<view>`) are supported.
* Use wildcard syntax (`\*`) to match multiple views within a schema

## Examples

```yaml theme={null}
included_views:
  - users
  - main.products
  - main__customers
```
