# Overview

The top-level namespace within Feast is a [project](#project). Users define one or more [feature views](/v0.22-branch/getting-started/concepts/feature-view.md) within a project. Each feature view contains one or more [features](/v0.22-branch/getting-started/concepts/feature-view.md#feature). These features typically relate to one or more [entities](/v0.22-branch/getting-started/concepts/entity.md). A feature view must always have a [data source](/v0.22-branch/getting-started/concepts/data-source.md), which in turn is used during the generation of training [datasets](/v0.22-branch/getting-started/concepts/feature-retrieval.md#dataset) and when materializing feature values into the online store.

![](/files/NQaJ814DCzB3Za3jPHzK)

## Project

Projects provide complete isolation of feature stores at the infrastructure level. This is accomplished through resource namespacing, e.g., prefixing table names with the associated project. Each project should be considered a completely separate universe of entities and features. It is not possible to retrieve features from multiple projects in a single request. We recommend having a single feature store and a single project per environment (`dev`, `staging`, `prod`).

{% hint style="info" %}
Projects are currently being supported for backward compatibility reasons. Projects may change in the future as we simplify the Feast API.
{% endhint %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.feast.dev/v0.22-branch/getting-started/concepts/overview.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
