> ## 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/topics/parameters/base-view",
  "feedback": "Description of the issue"
}
```

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

</AgentInstructions>

# base_view

> Defines the base view for the topic.

<Warning>
  This parameter is required in topic files.
</Warning>

Defines the base view for the topic. Values should be unquoted. Quotes will be removed/ignored upon saving.

<Note>
  If a topic's `base_view` is ignored or excluded by model-level directives ([`ignored_views`](/modeling/models/ignored-views), [`ignored_schemas`](/modeling/models/ignored-schemas), [`included_views`](/modeling/models/included-views), [`included_schemas`](/modeling/models/included-schemas)) or by the view's [`ignored`](/modeling/views/parameters/ignored) parameter, it will be suppressed. This means that the topic will not appear in the topic picker and or be included in model validation.
</Note>

## Syntax

```yaml theme={null}
base_view: <view_name>

# Use <schema>__<view> to specify a schema
base_view: <schema>__<view_name>
```

## Properties

<ParamField path="base_view" type="string" required>
  The base view for the topic. Use `<schema>__<view>` format to specify a schema. Values should be unquoted.
</ParamField>

## Examples

```yaml title="View only" theme={null}
base_view: users
```

```yaml title="Schema and view" theme={null}
base_view: main__users
```
